From ff7a1cd85c12c98abe482f7c29aadd8de7da4a8c Mon Sep 17 00:00:00 2001 From: "Elias W. BA" Date: Mon, 31 Aug 2026 02:57:55 +0000 Subject: [PATCH 1/3] Let step names keep their diacritics and their script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Apollo stripped every non-ASCII character out of a step name, so Café became Cafe and 患者確認 became nothing at all. The rule now lives in one place, services/name_rules.py, and everything that states or enforces it reads from there: the sanitizer, the fuzzy lookup, the prompt shown to the model, and the judges. Two modes, chosen by APOLLO_UNICODE_STEP_NAMES. Off, the default, folds accents to ASCII and matches what Lightning validates today. On, anything but a control character survives as typed, ready for Lightning#4577. Both reject the same control set, normalise to NFC and cap at 100 graphemes. The tables are generated from the Elixir that Lightning runs, so tools/unicode_parity probes both sides and fails CI if the two Unicode versions drift apart. --- .env.example | 25 + .github/workflows/unit-tests.yaml | 37 + README.md | 66 + pyproject.toml | 4 + services/global_chat/PAYLOAD_SPEC.md | 4 +- .../tests/test_workflow_chat_pass_fail.py | 6 +- .../tests/unit/test_error_logging.py | 42 +- .../global_chat/tests/unit/test_name_rules.py | 792 + .../tests/unit/test_yaml_assertions.py | 276 + .../global_chat/tests/unit/test_yaml_utils.py | 127 + services/job_chat/prompt_online.py | 457 - services/langfuse_util.py | 2 +- services/name_rules.py | 745 + services/testing/judges.py | 36 +- services/testing/judges/general.md | 2 +- .../testing/judges/openfn_workflow_expert.md | 2 +- services/testing/yaml_assertions.py | 122 +- services/workflow_chat/gen_project_prompt.py | 48 +- .../workflow_chat/gen_project_prompts.yaml | 2 +- .../workflow_chat/tests/test_pass_fail.py | 6 +- .../tests/unit/client/test_sanitize.py | 1588 +- .../tests/unit/gen_project/conftest.py | 25 + .../unit/gen_project/test_prompt_build.py | 46 + services/workflow_chat/workflow_chat.py | 971 +- services/yaml_utils.py | 103 +- tools/unicode_parity/.gitignore | 1 + tools/unicode_parity/check.py | 316 + tools/unicode_parity/edges.py | 80 + .../unicode_parity/known_nfc_divergences.txt | 17500 ++++++++++++++++ tools/unicode_parity/probe.exs | 284 + 30 files changed, 23012 insertions(+), 703 deletions(-) create mode 100644 services/global_chat/tests/unit/test_name_rules.py create mode 100644 services/global_chat/tests/unit/test_yaml_assertions.py delete mode 100644 services/job_chat/prompt_online.py create mode 100644 services/name_rules.py create mode 100644 services/workflow_chat/tests/unit/gen_project/conftest.py create mode 100644 tools/unicode_parity/.gitignore create mode 100644 tools/unicode_parity/check.py create mode 100644 tools/unicode_parity/edges.py create mode 100644 tools/unicode_parity/known_nfc_divergences.txt create mode 100644 tools/unicode_parity/probe.exs diff --git a/.env.example b/.env.example index 67f1bd48..6036514c 100644 --- a/.env.example +++ b/.env.example @@ -20,6 +20,31 @@ # each process mints its own token, which only works single-process-per-host. # APOLLO_INTERNAL_TOKEN= +# Which characters a workflow step name may contain. Apollo sanitises step names +# on the way out and Lightning validates them on the way in, so the two rules +# have to agree. +# +# false (the default) ASCII only: letters, digits, spaces, hyphens and +# underscores. Accents are folded (Café -> Cafe) and +# anything else is dropped. Matches the rule Lightning +# enforces today. +# true Anything except control characters: letters and marks +# from any script, all punctuation and symbols, emoji, +# / : > & and quotes. Vérifier l'état and 患者確認 +# survive exactly as typed. +# +# Leave this off until Lightning ships its Unicode step names (Lightning#4577), +# then turn it on. Turning it on first means Apollo emits names Lightning +# rejects; leaving it off afterwards means Apollo renames steps people typed +# deliberately. +# +# Both modes reject the same control set and nothing else: C0 (U+0000-U+001F, +# NUL included), DEL (U+007F), C1 (U+0080-U+009F), U+FFFE / U+FFFF, the +# surrogates U+D800-U+DFFF, and the separators U+2028 / U+2029. Names +# are NFC-normalised and capped at 100 graphemes in both modes. +# See services/name_rules.py. +APOLLO_UNICODE_STEP_NAMES=false + ANTHROPIC_API_KEY=sk-YOUR-API-KEY-HERE OPENAI_API_KEY=sk-YOUR-API-KEY-HERE diff --git a/.github/workflows/unit-tests.yaml b/.github/workflows/unit-tests.yaml index 5fa2788f..53d5456c 100644 --- a/.github/workflows/unit-tests.yaml +++ b/.github/workflows/unit-tests.yaml @@ -28,6 +28,43 @@ jobs: - name: Run unit tests run: poetry run pytest services/*/tests/unit + unicode-parity: + name: Unicode parity with Elixir + runs-on: ubuntu-latest + timeout-minutes: 15 + + # `services/name_rules.py` carries tables generated from the Elixir that + # Lightning runs: grapheme break classes, Extended_Pictographic, combining + # classes, the trim set and OTP's NFC. If Elixir's or Python's Unicode + # version moves and nobody re-runs the harness, the tables silently stop + # matching and Apollo starts emitting step names Lightning rejects. This + # job is the only thing that would notice. + steps: + - uses: actions/checkout@v7 + + - name: Set up Elixir + uses: erlef/setup-beam@v1 + with: + elixir-version: "1.18.3" + otp-version: "27" + + - name: Set up Python 3.11 + uses: actions/setup-python@v7 + with: + python-version: "3.11" + + - name: Generate range edges from the tables + working-directory: tools/unicode_parity + run: python3 edges.py + + - name: Probe Elixir + working-directory: tools/unicode_parity + run: elixir probe.exs + + - name: Compare against name_rules + working-directory: tools/unicode_parity + run: python3 check.py + bun: name: Bun unit tests runs-on: ubuntu-latest diff --git a/README.md b/README.md index 2e4d7c3c..13206098 100644 --- a/README.md +++ b/README.md @@ -147,6 +147,72 @@ full list of keys and env vars Apollo reads. Also note that `tmp` dirs are untracked, so if you do want to store credentials in your json, keep it inside a tmp dir and it'll remain safe and secret. +### `APOLLO_UNICODE_STEP_NAMES` + +Controls which characters a workflow step name may contain. Apollo sanitises +step names on the way out and Lightning validates them on the way in, so the two +rules have to agree. The default is `false`. + +| Value | Rule | +| --- | --- | +| `false` (default) | ASCII only. Letters, digits, spaces, hyphens, underscores. Accents are folded (`Café` becomes `Cafe`) and anything else is dropped. This is the rule Lightning enforces today. | +| `true` | Anything except control characters. Letters and marks from any script, all punctuation and symbols, emoji, `/`, `:`, `>`, `&`, quotes and apostrophes. `Vérifier l'état` and `患者確認` survive exactly as typed. | + +Leave it off until Lightning ships Unicode step names (Lightning#4577), then +turn it on. Turning it on first means Apollo emits names Lightning rejects. +Leaving it off afterwards means Apollo renames steps people typed deliberately, +across the whole workflow, on every turn that returns YAML. + +The permissive rule is deliberately maximal. Apollo being stricter than +Lightning is the worse of the two failures: Lightning rejecting a name is loud +and recoverable, whereas Apollo quietly renaming a valid name is the silent +vandalism this flag exists to prevent. + +The rejected control set is the same in both modes: C0 (`U+0000`-`U+001F`, +NUL included), DEL (`U+007F`), C1 (`U+0080`-`U+009F`), the noncharacters +`U+FFFE` and `U+FFFF`, the surrogates `U+D800`-`U+DFFF`, and the line and +paragraph separators `U+2028` and `U+2029`. A NUL byte in a name crashes the Postgres insert on +Lightning's side. Names are NFC-normalised in both modes so that Apollo and +Lightning agree on how to spell an accent, which is what step lookup matches +on, and capped at 100 graphemes because that is what Ecto's `validate_length` +counts. + +The rule lives in `services/name_rules.py`, and everything that states or +enforces it is derived from there: the sanitiser, the workflow-generation +prompt (`describe_rule_for_prompt`), the acceptance-test judges +(`describe_rule_for_judge`, substituted into the rubric markdown by +`judges.load_judge`), and the `assert_no_special_chars` test assertion. Change +the rule in that one file and all four follow. + +The 100-character cap is counted in graphemes, because that is what Ecto's +`validate_length` counts on Lightning's side. The clustering is hand-written in +`name_rules`, with no third-party dependency, and it targets Elixir's +`String.length/1` rather than UAX #29 — Elixir deviates from the spec in two +places (it does not implement the Unicode 15.1 Indic conjunct rule, and it ends +an emoji ZWJ run at the joiner unless a pictograph follows) and the whole point +is to agree with Elixir, not with the spec. + +`tools/unicode_parity` is the harness that checks it. Run `python3 edges.py`, +then `elixir probe.exs`, then `python3 check.py` with the Elixir version Lightning runs; `--tables` +prints the literals to paste back into `name_rules`. It checks seven things: +every codepoint's break class, every codepoint's canonical combining class, the +`Extended_Pictographic` set, the trim set, what a GB11 emoji run may be +separated from its joiner by, cluster boundaries over a generated corpus, and +NFC over the same corpus. + +`Extended_Pictographic` needs its own check because it is *not* a break class, +so a per-codepoint sweep cannot see it — an over-broad set there silently +changes clustering either side of a ZWJ and nothing else notices. That is +exactly how a hand-written table with 531 wrong codepoints survived two rounds +of review. + +Re-run the harness whenever Python's or Elixir's Unicode version moves. +`name_rules.PARITY_SOURCE` records what the committed tables were generated +from, and a unit test pins it, so a silent regeneration fails loudly. Python +moving ahead only makes Apollo overcount, which truncates early; Elixir moving +ahead is the direction that reintroduces undercounting, and an undercount ships +a name Lightning rejects. + ## Debugging The server defaults to port 3000. You can test any service directly with curl to diff --git a/pyproject.toml b/pyproject.toml index f67ccac0..203f7ebc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,6 +45,7 @@ pythonpath = ["services"] # Discovery roots. pytest walks these for test_*.py files. testpaths = [ + "services/echo/tests", "services/global_chat/tests", "services/workflow_chat/tests", "services/job_chat/tests", @@ -59,6 +60,9 @@ python_functions = ["test_*"] markers = [ "unit: fast, isolated, no I/O. Runs on every PR push.", + # Declared but currently unused: nothing carries it, so `-m \"unit or service\"` + # is really `-m unit`. Kept because the tiers are referenced in the testing + # README; apply it when the first mocked-client suite lands. "service: mocks HTTP/LLM clients; exercises service handlers. Runs on merge.", "integration: hits real external services (LLM, Pinecone, Postgres). Manual/nightly.", "acceptance: end-to-end acceptance criteria. Manual/nightly.", diff --git a/services/global_chat/PAYLOAD_SPEC.md b/services/global_chat/PAYLOAD_SPEC.md index f8cde2e0..4116fffc 100644 --- a/services/global_chat/PAYLOAD_SPEC.md +++ b/services/global_chat/PAYLOAD_SPEC.md @@ -172,7 +172,9 @@ The `page` field is a simplified path/breadcrumb representing where the user is workflows// ``` -The step name should match a job key in the workflow YAML (exact match or normalized — lowercase, non-alphanumeric chars replaced with hyphens). The backend parses the URL by splitting on `/` and reading the 3rd segment as the step name. +The step name should match a job key in the workflow YAML, either exactly or after normalization — NFC-normalized, lowercased, with every character that is not a letter, mark or digit replaced by a hyphen. Normalization is Unicode-aware, so `患者確認` normalizes to itself rather than to the empty string; a name that normalizes to nothing is never fuzzy-matched. + +The backend parses the URL by splitting on `/` and taking everything after the workflow segment as the step name, so a step name containing a `/` survives. A workflow name containing a `/` still makes the split ambiguous, so the parsed step name is validated against the workflow YAML rather than trusted. | Page URL | Router signal | What happens | |---|---|---| diff --git a/services/global_chat/tests/test_workflow_chat_pass_fail.py b/services/global_chat/tests/test_workflow_chat_pass_fail.py index b5545bd1..f61bff65 100644 --- a/services/global_chat/tests/test_workflow_chat_pass_fail.py +++ b/services/global_chat/tests/test_workflow_chat_pass_fail.py @@ -222,9 +222,9 @@ def test_rename_two_jobs_commcare(): def test_special_characters(): print("==================TEST==================") - print("Description: Ask for a workflow that uses platforms with special characters in their names. " - "Verify that diacritics and punctuation removed/normalised correctly (e.g. é->e) in job names " - "in the generated YAML.") + print("Description: Ask for a workflow that uses platforms with accents and punctuation in their " + "names. Verify the job names in the generated YAML obey whichever step-name rule is active " + "(see name_rules): folded to ASCII by default, kept as typed with APOLLO_UNICODE_STEP_NAMES on.") existing_yaml = """""" history = [ {"role": "user", "content": "Create a workflow that retrieves data from mwater, google sheets, netsuite, ferntech.io and processed it and sends it to frappé"}, diff --git a/services/global_chat/tests/unit/test_error_logging.py b/services/global_chat/tests/unit/test_error_logging.py index ebc1d113..07d1a7a2 100644 --- a/services/global_chat/tests/unit/test_error_logging.py +++ b/services/global_chat/tests/unit/test_error_logging.py @@ -369,18 +369,42 @@ def _leak_patterns(names: set[str]) -> list: # Job and edge names before and after sanitising, the adaptor a job # declares, and the `__ID_JOB_x__` placeholders this service invented # itself. Names and ids, never a body. + # The naming work replaced per-key logging with one line naming the whole + # renamed set, so the individual key expressions the leak branch vets are + # gone from this module here. "workflow_chat/workflow_chat.py": frozenset({ "adaptor", "job_key", - "edge_key", - "sanitized_edge_key", - "original_name", - "sanitized_name", - "original_source", - "original_target", - "edge_data['source_job']", - "edge_data['target_job']", "current_id", + # Job names and edge endpoints, resolved or unresolved. `unclaimed` + # reads as bodies but holds the `__CODE_BLOCK___` tokens, so it is + # keys too. Same category as the names above, and the reason a name is + # loggable where a body is not: the user typed it into a form as a + # label, and a log line is unreadable without it. + "', '.join(sorted(matches))", + "', '.join(duplicated)", + "', '.join(unclaimed)", + "', '.join(renamed)", + "by_name", + "owner", + "', '.join(sorted(dangling))", + # Literals chosen at the call site, a parameter the callers pass a + # literal to, and a count. `msg` is built but only from `len()`. + "how", + "label", + "msg", + # More names: the reference as written, and what it sanitises to. + "reference", + "str(reference)", + "resolved", + }), + + # Job names again, on the shared walkers. + "yaml_utils.py": frozenset({ + "', '.join(sorted((str(match) for match in matches)))", + "job_key", + "how", + "step_name", }), } @@ -978,7 +1002,7 @@ def test_a_vetted_expression_is_scoped_to_its_module() -> None: #: Every expression cleared by hand in `VETTED_INTERPOLATIONS`. Pinned for the #: same reason as `EXPECTED_MARKERS`: an opt-out nobody counts is an opt-out #: that spreads. -EXPECTED_VETTED_INTERPOLATIONS = 51 +EXPECTED_VETTED_INTERPOLATIONS = 60 def test_the_vetted_interpolations_are_inventoried() -> None: diff --git a/services/global_chat/tests/unit/test_name_rules.py b/services/global_chat/tests/unit/test_name_rules.py new file mode 100644 index 00000000..7d6d9c30 --- /dev/null +++ b/services/global_chat/tests/unit/test_name_rules.py @@ -0,0 +1,792 @@ +"""Unit tests for the shared step-name rule (`services/name_rules.py`). + +`yaml_utils` lives next to it and is tested from here too, so the shared +modules keep their tests in one place. +""" + +import ast +import inspect +import unicodedata + +import name_rules +import pytest +import yaml +from name_rules import ( + _TRIM_CHARS, + MAX_NAME_LENGTH, + PARITY_SOURCE, + UNICODE_FLAG_ENV, + _is_ext_pict, + describe_rule, + describe_rule_for_prompt, + first_invalid_char, + grapheme_clusters, + grapheme_length, + is_valid_name, + normalize_for_lookup, + normalize_nfc, + sanitize_name, + unicode_names_enabled, +) + + +@pytest.fixture +def ascii_mode(monkeypatch: pytest.MonkeyPatch) -> None: + monkeypatch.setenv(UNICODE_FLAG_ENV, "false") + + +@pytest.fixture +def unicode_mode(monkeypatch: pytest.MonkeyPatch) -> None: + monkeypatch.setenv(UNICODE_FLAG_ENV, "true") + + +# --- the flag --------------------------------------------------------------- + + +def test_unicode_is_off_when_the_flag_is_unset(monkeypatch: pytest.MonkeyPatch) -> None: + monkeypatch.delenv(UNICODE_FLAG_ENV, raising=False) + assert unicode_names_enabled() is False + + +@pytest.mark.parametrize("value", ["true", "TRUE", "1", "yes", "on", " True "]) +def test_flag_accepts_the_usual_truthy_spellings(monkeypatch: pytest.MonkeyPatch, value: str) -> None: + monkeypatch.setenv(UNICODE_FLAG_ENV, value) + assert unicode_names_enabled() is True + + +@pytest.mark.parametrize("value", ["false", "0", "no", "off", "", "maybe"]) +def test_flag_treats_anything_else_as_off(monkeypatch: pytest.MonkeyPatch, value: str) -> None: + monkeypatch.setenv(UNICODE_FLAG_ENV, value) + assert unicode_names_enabled() is False + + +# --- the ASCII rule --------------------------------------------------------- + + +@pytest.mark.usefixtures("ascii_mode") +@pytest.mark.parametrize( + ("raw", "expected"), + [ + ("Vérifier l'état", "Verifier letat"), + ("O'Brien's Step", "OBriens Step"), + ("Café München", "Cafe Munchen"), + ("Fetch Data", "Fetch Data"), + ("Valid Job-Name_123", "Valid Job-Name_123"), + ("患者確認", ""), + ("Проверка данных", ""), + ], +) +def test_ascii_rule(raw: str, expected: str) -> None: + assert sanitize_name(raw) == expected + + +@pytest.mark.usefixtures("ascii_mode") +def test_ascii_rule_no_longer_leaves_a_name_of_only_spaces() -> None: + """`Проверка данных` used to sanitize to a single space, which is not a name.""" + assert sanitize_name("Проверка данных") == "" + assert sanitize_name("ß straße") == "ss strasse" + + +# --- the Unicode rule ------------------------------------------------------- + + +@pytest.mark.usefixtures("unicode_mode") +@pytest.mark.parametrize( + "raw", + [ + "Vérifier l'état", + "O'Brien's Step", + "患者確認", + "Проверка данных", + "ß straße", + "رعاية المرضى", + "Étape 1 (données)", + "Étape 1: charger", + ], +) +def test_unicode_rule_keeps_names_as_typed(raw: str) -> None: + assert sanitize_name(raw) == raw + + +@pytest.mark.usefixtures("unicode_mode") +@pytest.mark.parametrize( + "raw", + [ + "a->b", # nothing splits an edge key on "->"; it is a label + "Import A/B", # the page breadcrumb takes everything after the workflow + "a|b", + "ac", + "a#b", + "Done ✅", + "Ship it 🚢🇫🇷", + "Étape « une »", + 'He said "go"', + "50% & rising", + "@mention", + ], +) +def test_unicode_rule_allows_everything_that_is_not_a_control(raw: str) -> None: + """The permissive rule is deliberately maximal. + + Apollo being stricter than Lightning is the silent-vandalism failure that + issue #446 exists to prevent, so nothing but control characters is stripped. + """ + assert first_invalid_char(raw) is None + assert sanitize_name(raw) == raw + assert is_valid_name(raw) is True + + +@pytest.mark.usefixtures("unicode_mode") +def test_unicode_rule_keeps_zero_width_joiner_sequences() -> None: + """ZWJ is a format character — category C, but Lightning accepts it, so we must.""" + family = "Team \U0001f469\u200d\U0001f4bb" + assert sanitize_name(family) == family + + +# --- control characters, both modes ----------------------------------------- + + +@pytest.mark.parametrize("mode", ["false", "true"]) +@pytest.mark.parametrize("control", ["\x00", "\x01", "\x1b", "\x7f", "\x85", "\x9b"]) +def test_control_characters_never_survive(monkeypatch: pytest.MonkeyPatch, mode: str, control: str) -> None: + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + assert control not in sanitize_name(f"Fetch{control}Data") + + +@pytest.mark.parametrize("mode", ["false", "true"]) +def test_nul_is_rejected_even_alone(monkeypatch: pytest.MonkeyPatch, mode: str) -> None: + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + assert sanitize_name("\x00") == "" + + +# --- NFC --------------------------------------------------------------------- + + +@pytest.mark.usefixtures("unicode_mode") +def test_decomposed_and_composed_forms_agree() -> None: + """The same name typed two ways must come out identical, or lookups miss.""" + composed = "Vérifier" # U+00E9 + decomposed = "Vérifier" # e + combining acute + + assert composed != decomposed + assert sanitize_name(composed) == sanitize_name(decomposed) == composed + assert normalize_for_lookup(composed) == normalize_for_lookup(decomposed) + + +# --- validity helpers -------------------------------------------------------- + + +@pytest.mark.usefixtures("ascii_mode") +def test_is_valid_name_tracks_the_active_rule(monkeypatch: pytest.MonkeyPatch) -> None: + assert is_valid_name("Fetch Data") is True + assert is_valid_name("Vérifier l'état") is False + + monkeypatch.setenv(UNICODE_FLAG_ENV, "true") + assert is_valid_name("Vérifier l'état") is True + + +@pytest.mark.usefixtures("ascii_mode") +def test_first_invalid_char_names_the_offender() -> None: + assert first_invalid_char("Fetch Data") is None + assert first_invalid_char("Fetch@Data") == "@" + + +# --- the prompt text --------------------------------------------------------- + + +def test_the_prompt_text_changes_with_the_mode() -> None: + """The prompt and the sanitizer are built from the same rule, so it must move.""" + ascii_text = describe_rule(unicode_mode=False) + unicode_text = describe_rule(unicode_mode=True) + + assert ascii_text != unicode_text + assert "only unaccented English letters" in ascii_text + assert "any script" in unicode_text + assert "100" in describe_rule_for_prompt(unicode_mode=False) + assert "unique" in describe_rule_for_prompt(unicode_mode=True) + + +# --- lookup normalization ---------------------------------------------------- + + +def test_normalize_for_lookup_is_unicode_aware() -> None: + """Non-Latin names used to fold to the empty string, which cross-matched everything.""" + assert normalize_for_lookup("患者確認") == "患者確認" + assert normalize_for_lookup("Проверка данных") == "проверка-данных" + assert normalize_for_lookup("患者確認") != normalize_for_lookup("データ送信") + + +def test_normalize_for_lookup_keeps_the_old_latin_behaviour() -> None: + assert normalize_for_lookup("Fetch Patients") == "fetch-patients" + assert normalize_for_lookup("--Fetch/Patients--") == "fetch-patients" + assert normalize_for_lookup("") == "" + + +def test_normalize_for_lookup_keeps_combining_marks() -> None: + """Devanagari matras are Unicode marks, not letters — they must not become hyphens.""" + assert normalize_for_lookup("रोगी की जाँच") == "रोगी-की-जाँच" + + +# --- length cap --------------------------------------------------------------- + + +@pytest.mark.parametrize("mode", ["false", "true"]) +def test_cap_counts_graphemes(monkeypatch: pytest.MonkeyPatch, mode: str) -> None: + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + assert grapheme_length(sanitize_name("a" * 200)) == MAX_NAME_LENGTH + + +@pytest.mark.usefixtures("unicode_mode") +def test_grapheme_length_counts_user_perceived_characters() -> None: + assert grapheme_length("abc") == len("abc") + assert grapheme_length("e\u0301") == 1 # e + combining acute + assert grapheme_length("\U0001f469\u200d\U0001f4bb") == 1 # ZWJ sequence + assert grapheme_length("\U0001f1eb\U0001f1f7") == 1 # flag, two regional indicators + assert grapheme_length("\U0001f44d\U0001f3fd") == 1 # emoji + skin tone + # Devanagari conjuncts are covered by the Elixir parity table instead — + # they sit on the GB9c divergence, so a hand-written expectation here would + # just duplicate KNOWN_DIVERGENCES and drift from it. + + +#: A grapheme NFC cannot collapse into a single codepoint. `e` + combining +#: acute is no use for testing truncation: NFC composes it to `é` before the +#: cut ever happens, so it never exercises a multi-codepoint cluster. +SCOTLAND_FLAG = "\U0001F3F4\U000E0067\U000E0062\U000E0073\U000E0063\U000E0074\U000E007F" +WOMAN_TECHNOLOGIST = "\U0001F469\u200d\U0001F4BB" + + +@pytest.mark.usefixtures("unicode_mode") +@pytest.mark.parametrize("cluster", [SCOTLAND_FLAG, WOMAN_TECHNOLOGIST, "\U0001F44D\U0001F3FD"]) +def test_cap_does_not_split_a_grapheme(cluster: str) -> None: + """Cutting inside a cluster corrupts it — an orphaned tag or a bare joiner. + + Each of these stays multi-codepoint through NFC, so the cut is real. + """ + assert len(cluster) > 1, "NFC collapsed the fixture; it no longer tests anything" + + capped = sanitize_name(cluster * 200) + + assert grapheme_length(capped) == MAX_NAME_LENGTH + assert capped == cluster * MAX_NAME_LENGTH + # Nothing left dangling at the cut. + assert grapheme_clusters(capped)[-1] == cluster + + +@pytest.mark.usefixtures("unicode_mode") +def test_nfc_composition_before_the_cap() -> None: + """The old fixture, kept to pin down why it was the wrong test.""" + assert sanitize_name("e\u0301" * 200) == "\u00e9" * MAX_NAME_LENGTH + + +@pytest.mark.usefixtures("unicode_mode") +def test_cap_counts_emoji_as_one_each() -> None: + capped = sanitize_name("\U0001f469\u200d\U0001f4bb" * 200) + assert grapheme_length(capped) == MAX_NAME_LENGTH + + +# --- parity with Elixir's String.length/1 ------------------------------------- +# +# Ecto's `validate_length` counts graphemes with `String.length/1`, so that is +# the authority — not UAX #29, which Elixir deviates from in two places we +# deliberately copy. Every number below was generated by running Elixir 1.18.3 +# over the same codepoint sequences. +# +# The standing check is `tools/unicode_parity`, not a figure quoted here: it +# puts every codepoint in 0x0..0x10FFFF in the same break class as Elixir and +# compares cluster boundaries over the corpus `probe.exs` generates. There is +# no known clustering divergence; if one appears, add the shape here rather +# than widening the assertion. + +ELIXIR_PARITY = [ + ("ascii", [0x0061, 0x0062, 0x0063], 3), + ("e+combining acute", [0x0065, 0x0301], 1), + ("ExtPict ZWJ ExtPict", [0x1F469, 0x200D, 0x1F4BB], 1), + ("a ZWJ b (GB11 must NOT join)", [0x0061, 0x200D, 0x0062], 2), + ("a ZWJ combining mark (plain lead: mark attaches)", [0x0061, 0x200D, 0x0301], 1), + ("ExtPict ZWJ combining mark (emoji run ends at the joiner)", [0x00A9, 0x200D, 0x0301], 2), + ("ExtPict ZWJ combining mark x200", [0x00A9, 0x200D, 0x0301] * 200, 400), + ("woman ZWJ combining mark", [0x1F469, 0x200D, 0x0301], 2), + ("ExtPict Extend ZWJ combining mark", [0x00A9, 0x0301, 0x200D, 0x0301], 2), + ("ExtPict ZWJ VS16", [0x00A9, 0x200D, 0xFE0F], 2), + ("ExtPict ZWJ skintone", [0x00A9, 0x200D, 0x1F3FD], 2), + ("ExtPict ZWJ ZWJ", [0x00A9, 0x200D, 0x200D], 2), + ("scotland flag tag seq", [0x1F3F4, 0xE0067, 0xE0062, 0xE0073, 0xE0063, 0xE0074, 0xE007F], 1), + ("15x scotland flag", [0x1F3F4, 0xE0067, 0xE0062, 0xE0073, 0xE0063, 0xE0074, 0xE007F] * 15, 15), + ("FR flag (2 RI)", [0x1F1EB, 0x1F1F7], 1), + ("3 RI", [0x1F1EB, 0x1F1F7, 0x1F1EB], 2), + ("4 RI", [0x1F1EB, 0x1F1F7, 0x1F1EB, 0x1F1F7], 2), + ("thumbsup + skintone", [0x1F44D, 0x1F3FD], 1), + ("devanagari namaste", [0x0928, 0x092E, 0x0938, 0x094D, 0x0924, 0x0947], 4), + ("indic conjunct ka virama ssa", [0x0915, 0x094D, 0x0937], 2), + ("CRLF", [0x000D, 0x000A], 1), + ("hangul L V T", [0x1100, 0x1161, 0x11A8], 1), + ("hangul LV + T", [0xAC00, 0x11A8], 1), + ("keycap 1", [0x0031, 0xFE0F, 0x20E3], 1), + ("arabic number sign prepend", [0x0600, 0x0661], 1), + ("zanabazar prepend 11A3A x150", [0x11A3A, 0x0061] * 150, 150), + ("masaram prepend 11D46 x150", [0x11D46, 0x0061] * 150, 150), + ("kawi prepend 11F02 x150", [0x11F02, 0x0061] * 150, 150), + ("tamil ka virama", [0x0B95, 0x0BCD], 1), + ("family ZWJ", [0x1F468, 0x200D, 0x1F469, 0x200D, 0x1F467], 1), + ("heart + VS16", [0x2764, 0xFE0F], 1), + ("trailing lone ZWJ", [0x0061, 0x200D], 1), + ("leading ZWJ", [0x200D, 0x0061], 2), + ("ExtPict ZWJ non-ExtPict", [0x1F469, 0x200D, 0x0062], 2), + ("spacingmark devanagari aa", [0x0915, 0x093E], 1), + ("thai sara i", [0x0E01, 0x0E31], 1), + ("myanmar non-spacingmark Mc (1063)", [0x1000, 0x1063], 2), + ("myanmar non-spacingmark Mc (109C)", [0x1000, 0x109C], 2), + ("kawi vowel (post-Unicode-14 mark)", [0x11F00, 0x11F01], 1), + ("kawi sign 11F41 attaches", [0x11F04, 0x11F41], 1), + ("nag mundari 1E4EC attaches", [0x1E4D0, 0x1E4EC], 1), + ("egyptian hieroglyph control 13439", [0x13000, 0x13439, 0x0301], 3), + ("RI + extend", [0x1F1EB, 0xFE0F, 0x1F1F7], 2), + ("emoji + VS + ZWJ + emoji", [0x1F468, 0xFE0F, 0x200D, 0x1F469], 1), + ("digit + tag", [0x0031, 0xE0031], 1), + ("100x a-ZWJ-b", [0x0061, 0x200D, 0x0062] * 100, 200), +] + + +@pytest.mark.parametrize(("name", "codepoints", "expected"), ELIXIR_PARITY) +def test_grapheme_length_matches_elixir(name: str, codepoints: list, expected: int) -> None: + assert grapheme_length("".join(map(chr, codepoints))) == expected, name + + +@pytest.mark.parametrize(("name", "codepoints", "expected"), ELIXIR_PARITY) +def test_cap_never_exceeds_what_elixir_would_count( + name: str, codepoints: list, expected: int, +) -> None: + """Undercounting is the failure that matters: it emits a name Ecto rejects.""" + del expected + capped = sanitize_name("".join(map(chr, codepoints)) * 40, unicode_mode=True) + assert grapheme_length(capped) <= MAX_NAME_LENGTH, name + + +def test_the_regressions_the_reviews_found() -> None: + """`ab` must not join, a flag tag sequence must not be seven, and an + emoji ZWJ run must end at the joiner when a plain mark follows.""" + # GB11 joins across a ZWJ only when both sides are pictographic. Two plain + # letters are not, so this is two graphemes, not one. + assert grapheme_clusters("a\u200db") == ["a\u200d", "b"] + assert grapheme_clusters("a\u200db" * 100) == ["a\u200d", "b"] * 100 + + # The tag characters are Extend, so the whole flag sequence is one grapheme. + assert grapheme_clusters(SCOTLAND_FLAG) == [SCOTLAND_FLAG] + assert grapheme_clusters(SCOTLAND_FLAG * 15) == [SCOTLAND_FLAG] * 15 + + # Elixir ends an emoji ZWJ run at the joiner unless a pictograph follows, + # so this is two graphemes per copy, not one. Counting it as one meant a + # 200-grapheme name went out under a 100-grapheme cap. + assert grapheme_clusters("\u00a9\u200d\u0301") == ["\u00a9\u200d", "\u0301"] + copies = 200 + assert grapheme_length("\u00a9\u200d\u0301" * copies) == copies * len(["\u00a9\u200d", "\u0301"]) + assert grapheme_length( + sanitize_name("\u00a9\u200d\u0301" * copies, unicode_mode=True), + ) == MAX_NAME_LENGTH + + # ...but with a plain lead the mark still attaches, per GB9. + assert grapheme_clusters("a\u200d\u0301") == ["a\u200d\u0301"] + + +def test_prepend_families_are_recognised() -> None: + """`regex` misses these, which made it truncate at half the real limit.""" + for prepend in ("\U00011A3A", "\U00011A84", "\U00011D46", "\U00011F02", "\u0600"): + assert grapheme_clusters(prepend + "a") == [prepend + "a"] + copies = 150 + assert grapheme_length((prepend + "a") * copies) == copies + assert grapheme_length( + sanitize_name((prepend + "a") * copies, unicode_mode=True), + ) == MAX_NAME_LENGTH + + +def test_post_unicode_14_characters_are_classified() -> None: + """Python 3.11 ships Unicode 14, so these look unassigned without the lag table.""" + assert unicodedata.category("\U00011F41") == "Cn", "python caught up; the lag table can shrink" + assert grapheme_clusters("\U00011F04\U00011F41") == ["\U00011F04\U00011F41"] + assert grapheme_clusters("\U0001E4D0\U0001E4EC") == ["\U0001E4D0\U0001E4EC"] + # Egyptian hieroglyph format controls break on both sides. + assert grapheme_clusters("\U00013000\U00013439\u0301") == [ + "\U00013000", "\U00013439", "\u0301", + ] + + +def test_there_is_no_regex_dependency() -> None: + """Which algorithm runs must not depend on transitive resolution. + + `regex` is spec-correct, which is why it is wrong here — see `name_rules`. + """ + tree = ast.parse(inspect.getsource(name_rules)) + imported = { + alias.name.split(".")[0] + for node in ast.walk(tree) + if isinstance(node, ast.Import) + for alias in node.names + } | { + node.module.split(".")[0] + for node in ast.walk(tree) + if isinstance(node, ast.ImportFrom) and node.module + } + + assert imported == {"os", "unicodedata"}, imported + + +# --- trimming ----------------------------------------------------------------- + + +def test_trim_set_is_exactly_what_elixir_strips() -> None: + """Brute-forced against Elixir 1.18.3 over the whole codepoint space. + + Python's bare `.strip()` also eats U+001C-U+001F, which are not Unicode + White_Space. Trimming a different set from Lightning would mean the two + disagree about a name's identity, and step lookup would silently miss. + """ + elixir_trims = { + 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x20, 0x85, 0xA0, 0x1680, + 0x2000, 0x2001, 0x2002, 0x2003, 0x2004, 0x2005, 0x2006, + 0x2007, 0x2008, 0x2009, 0x200A, 0x2028, 0x2029, 0x202F, + 0x205F, 0x3000, + } + assert {ord(c) for c in _TRIM_CHARS} == elixir_trims + + python_only = {c for c in range(0x110000) if chr(c).strip() == "" and c != 0} - elixir_trims + assert python_only == {0x1C, 0x1D, 0x1E, 0x1F} + assert not (python_only & {ord(c) for c in _TRIM_CHARS}) + + +@pytest.mark.usefixtures("unicode_mode") +@pytest.mark.parametrize("space", ["\xa0", "\u2003", "\u3000", "\u205f", " "]) +def test_unicode_whitespace_is_trimmed(space: str) -> None: + assert sanitize_name(f"{space}Fetch Data{space}") == "Fetch Data" + + +# --- surrogates --------------------------------------------------------------- + + +@pytest.mark.parametrize("mode", ["false", "true"]) +def test_lone_surrogates_are_rejected(monkeypatch: pytest.MonkeyPatch, mode: str) -> None: + """A lone surrogate cannot be encoded as UTF-8, so it must never reach Lightning.""" + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + name = "Fetch\ud800Data\udfff" + + cleaned = sanitize_name(name) + + assert cleaned == "FetchData" + cleaned.encode("utf-8") # would raise if a surrogate survived + + +# --- case folding ------------------------------------------------------------- + + +def test_lookup_folds_case_rather_than_lowercasing() -> None: + """`.lower()` leaves these pairs distinct, so the lookups used to miss.""" + assert normalize_for_lookup("ΣΙΣ") == normalize_for_lookup("σις") + assert normalize_for_lookup("ΟΔΟΣ") == normalize_for_lookup("οδος") + assert normalize_for_lookup("STRASSE") == normalize_for_lookup("straße") + + +# --- Extended_Pictographic ---------------------------------------------------- + +#: What tools/unicode_parity produced against PARITY_SOURCE. These move only +#: when the tables are regenerated against a different Elixir or Python. +EXT_PICT_CODEPOINTS = 3537 +LAG_EXTEND_RANGES = 12 +LAG_CONTROL_RANGES = 7 + + +def test_extpict_is_not_over_broad() -> None: + """The bug a codepoint-bucket sweep structurally cannot find. + + ExtPict is not a break class, so classifying every codepoint into A/P/C/O + passes regardless of how wrong this set is. It only shows up either side of + a ZWJ. The hand-written ranges claimed hundreds of codepoints too many by + collapsing sparse sets into solid blocks. + """ + # U+2713 sits inside the old (0x2600, 0x27BF) block and is not pictographic. + assert not _is_ext_pict(0x2713), "CHECK MARK is not Extended_Pictographic" + assert not _is_ext_pict(0x219A), "arrows in the 0x2190 block are not pictographic" + assert _is_ext_pict(0x2764), "HEAVY BLACK HEART is" + assert _is_ext_pict(0x1F600) + + +def test_a_non_pictograph_does_not_join_across_a_zwj() -> None: + """`✓` is two graphemes to Elixir; calling it one shipped a + 200-grapheme name under a 100-grapheme cap.""" + assert grapheme_clusters("✓‍\U0001F600") == ["✓‍", "\U0001F600"] + copies = 100 + assert grapheme_length("✓‍\U0001F600" * copies) == copies * 2 + + # And the other direction: a mark after a non-pictograph's ZWJ still + # attaches under GB9, so this is one grapheme, and truncating it early + # would have cut a name Lightning accepts. + assert grapheme_clusters("✓‍́") == ["✓‍́"] + + +def test_the_extpict_set_matches_the_recorded_probe() -> None: + """Canary for Elixir moving forward. + + Regenerating the tables against a newer Elixir changes these sizes, which + fails here until PARITY_SOURCE is updated too. + """ + assert PARITY_SOURCE == {"elixir": "1.18.3", "otp": "27", "python_unicodedata": "14.0.0"} + assert unicodedata.unidata_version == PARITY_SOURCE["python_unicodedata"], ( + "Python's Unicode version moved; re-run tools/unicode_parity and update PARITY_SOURCE" + ) + # Pinned to what tools/unicode_parity produced against PARITY_SOURCE. + assert sum(b - a + 1 for a, b in name_rules._EXT_PICT_RANGES) == EXT_PICT_CODEPOINTS + assert len(name_rules._LAG_EXTEND) == LAG_EXTEND_RANGES + assert len(name_rules._LAG_CONTROL) == LAG_CONTROL_RANGES + + +# --- GB11 lookback ------------------------------------------------------------ + + +def test_the_emoji_run_lookback_crosses_a_spacing_mark() -> None: + """UAX #29 says Extend only; Elixir also crosses SpacingMark.""" + heart, zwj, emoji = "❤", "‍", "\U0001F600" + + assert grapheme_clusters(f"{heart}\u0903{zwj}{emoji}") == [f"{heart}\u0903{zwj}{emoji}"] + assert grapheme_clusters(f"{heart}́{zwj}{emoji}") == [f"{heart}́{zwj}{emoji}"] + assert grapheme_clusters(f"{heart}́\u0903{zwj}{emoji}") == [ + f"{heart}́\u0903{zwj}{emoji}", + ] + + # ...but not an ordinary character, and not a non-SpacingMark Mc. + assert grapheme_clusters(f"{heart}a{zwj}{emoji}") == [heart, f"a{zwj}", emoji] + assert grapheme_clusters(f"{heart}ၣ{zwj}{emoji}") == [heart, f"ၣ{zwj}", emoji] + + +# --- line and paragraph separators -------------------------------------------- + + +@pytest.mark.parametrize("mode", ["false", "true"]) +@pytest.mark.parametrize("separator", ["\u2028", "\u2029"]) +def test_line_separators_are_rejected( + monkeypatch: pytest.MonkeyPatch, mode: str, separator: str, +) -> None: + """PyYAML writes them literally and indents the continuation; yamerl, which + is what Lightning parses with, does not fold that back, so the stored name + grows YAML indentation inside it.""" + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + + cleaned = sanitize_name(f"Fetch{separator}Data") + + assert separator not in cleaned + assert cleaned == "Fetch Data" + assert not is_valid_name(f"a{separator}b") + + +def test_a_name_with_a_line_separator_survives_the_yaml_round_trip() -> None: + """The check PyYAML-only tests are blind to: it reads its own output back + correctly, so the damage is invisible from this side.""" + name = sanitize_name("Fetch\u2028Data", unicode_mode=True) + dumped = yaml.dump({"name": name}, allow_unicode=True) + + assert "\u2028" not in dumped + + # `str.split("\n")` does not split on U+2028 but `splitlines` does, which is + # the whole point: PyYAML writes the separator literally and indents the + # continuation, and a parser that treats it as a line break (yamerl, which + # is what Lightning uses) then reads that indentation back into the name. + # Splitting on "\n" made this assertion always pass, and it also fired on + # any name long enough for PyYAML to wrap. + assert len(dumped.splitlines()) == len(dumped.rstrip("\n").split("\n")) + + +def test_the_line_separator_assertion_would_catch_the_real_damage() -> None: + """Guards the test above: show the check fails on an unsanitised name.""" + dumped = yaml.dump({"name": "Fetch\u2028Data"}, allow_unicode=True) + + assert "\u2028" in dumped + assert len(dumped.splitlines()) != len(dumped.rstrip("\n").split("\n")) + + +# --- normalisation ------------------------------------------------------------ + +#: Codepoints whose combining class Python's tables predate. The harness could +#: not see these: ccc is independent of the break class, so all ten already had +#: their break class corrected and their combining class rode along wrong. +LAG_CCC_CODEPOINTS = [ + 0x10EFD, 0x10EFE, 0x10EFF, 0x11F41, 0x11F42, + 0x1E08F, 0x1E4EC, 0x1E4ED, 0x1E4EE, 0x1E4EF, +] + + +@pytest.mark.parametrize("codepoint", LAG_CCC_CODEPOINTS) +def test_the_lag_combining_classes_are_still_needed(codepoint: int) -> None: + """When Python catches up, `unicodedata` reports these itself.""" + assert unicodedata.combining(chr(codepoint)) == 0, ( + f"Python now knows U+{codepoint:04X}; re-run tools/unicode_parity and shrink _LAG_CCC" + ) + assert name_rules._combining_class(chr(codepoint)) != 0 + + +@pytest.mark.parametrize("codepoint", LAG_CCC_CODEPOINTS) +def test_lag_marks_are_reordered_by_combining_class(codepoint: int) -> None: + """`unicodedata` reads a class of 0 and leaves them where they are.""" + lag = chr(codepoint) + ccc = name_rules._combining_class(lag) + higher = "̴" if ccc > 1 else "́" # ccc 1 + + text = f"a{higher}{lag}" if name_rules._combining_class(higher) > ccc else f"a{lag}{higher}" + normalized = normalize_nfc(text) + + marks = [c for c in normalized if name_rules._combining_class(c)] + assert marks == sorted(marks, key=name_rules._combining_class) + + +def test_a_lag_mark_does_not_block_composition() -> None: + """ccc also decides blocking, not just ordering. + + `a` + U+10EFD (ccc 220) + U+0301 (ccc 230) composes to `á` + U+10EFD. + `unicodedata` reads U+10EFD as a starter and blocks it, so it returns all + three characters unchanged — a different normal form from Lightning's, and + step lookup matches names as text. + """ + text = "a\U00010EFD́" + + assert unicodedata.normalize("NFC", text) == text, "python composed it after all" + assert normalize_nfc(text) == "á\U00010EFD" + + +def test_normalisation_is_unchanged_for_text_without_lag_codepoints() -> None: + """The fast path is `unicodedata` itself; it must not drift.""" + for text in ("Vérifier l'état", "é", "नमस्ते", + "한국어", "á̴b", "", "plain"): + assert normalize_nfc(text) == unicodedata.normalize("NFC", text) + + +def test_sanitize_uses_the_corrected_normalisation() -> None: + assert sanitize_name("a\U00010EFD́", unicode_mode=True) == "á\U00010EFD" + + +# --- OTP's NFC, quirks and all ------------------------------------------------ + + +@pytest.mark.parametrize( + ("name", "text", "expected"), + [ + # Composes where the spec blocks: the class-zero character in the + # middle stops ICU and does not stop OTP. + ("base + VS16", "e\ufe00\u0301", "\u00e9\ufe00"), + ("base + VS16-emoji", "e\ufe0f\u0301", "\u00e9\ufe0f"), + ("base + skin tone", "e\U0001f3fb\u0301", "\u00e9\U0001f3fb"), + ("base + CGJ", "e\u034f\u0301", "\u00e9\u034f"), + # Leaves uncomposed where the spec composes: OTP only ever composes + # onto the cluster's leading character, and neither of these vowel + # parts composes with the consonant. + ("bengali ko", "\u0995\u09c7\u09be", "\u0995\u09c7\u09be"), + ("tamil o", "\u0b95\u0bc6\u0bbe", "\u0b95\u0bc6\u0bbe"), + ("malayalam o", "\u0d15\u0d46\u0d3e", "\u0d15\u0d46\u0d3e"), + ("sinhala o", "\u0d9a\u0dd9\u0dcf", "\u0d9a\u0dd9\u0dcf"), + ("thai sara am", "\u0e01\u0e33", "\u0e01\u0e33"), + ], +) +def test_nfc_matches_otp_not_the_spec(name: str, text: str, expected: str) -> None: + """OTP composes onto the grapheme cluster's leading character and re-bases + on nothing, where the spec re-bases on every class-zero character it passes. + + ICU and Python implement the spec, so `unicodedata` is right and OTP is + wrong — and OTP is what Lightning stores, so this module copies OTP. Every + expectation here came from running Elixir 1.18.3. + """ + assert normalize_nfc(text) == expected, name + + +@pytest.mark.parametrize( + "text", + [ + "e\ufe00\u0301", "e\ufe0f\u0301", "e\U0001f3fb\u0301", "e\u034f\u0301", + "\u0995\u09c7\u09be", "\u0b95\u0bc6\u0bbe", "\u0d15\u0d46\u0d3e", + ], +) +def test_the_spec_and_otp_really_do_differ_here(text: str) -> None: + """Guards the test above: if `unicodedata` ever agrees, this is all moot.""" + assert normalize_nfc(text) != unicodedata.normalize("NFC", text) + + +def test_ordinary_text_normalises_the_same_as_unicodedata() -> None: + """The deviation must not reach text that has no class-zero character in + the middle of a mark run, which is nearly everything.""" + for text in ("Vérifier l'état", "é", "नमस्ते", "한국어", + "Проверка данных", "plain ascii", ""): + assert normalize_nfc(text) == unicodedata.normalize("NFC", text), repr(text) + + +#: The one shape where this module and Elixir still disagree on NFC: a base, a +#: mark, any combining-class-zero Extend, then a mark of lower class. Measured +#: at 32 of 28,079 rows against Elixir 1.18.3 over the corpus +#: `tools/unicode_parity` generates, including an exhaustive sweep of that +#: four-codepoint shape; the rows are listed in +#: `tools/unicode_parity/known_nfc_divergences.txt`. See `normalize_nfc` for +#: why it is not simply fixed. ZWNJ is ordinary in Persian and Indic text, so +#: this is reachable rather than exotic. +NFC_DIVERGENCE = "A\u0302\u200c\u0323" + +#: What Elixir 1.18.3 returns for it. +NFC_DIVERGENCE_ELIXIR = "\u00c2\u200c\u0323" + +#: What this module returns. Asserted, not merely "differs" — asserting that +#: something still diverges passes for any wrong answer, including a new one. +NFC_DIVERGENCE_APOLLO = "\u1eac\u200c" + + +def test_the_known_nfc_divergence_returns_exactly_this() -> None: + """Pins the actual output, so any change to `_compose` shows up here. + + If you have made `_compose` match Elixir, this test failing is the good + outcome: replace these constants with equality against Elixir's answer. + """ + assert normalize_nfc(NFC_DIVERGENCE) == NFC_DIVERGENCE_APOLLO + assert NFC_DIVERGENCE_APOLLO != NFC_DIVERGENCE_ELIXIR + + +@pytest.mark.parametrize( + "text", + [ + "Vérifier l'état", + "\u0995\u09c7\u09be", + "e\ufe00\u0301", + NFC_DIVERGENCE, + "\u0641\u200c\u0631", + ], +) +def test_normalisation_is_idempotent(text: str) -> None: + """One of the two things that bound the gap above: whatever this module + produces, it produces again unchanged.""" + once = normalize_nfc(text) + + assert normalize_nfc(once) == once + + +@pytest.mark.parametrize("mode", ["false", "true"]) +def test_sanitized_names_are_fixed_points_of_normalisation( + monkeypatch: pytest.MonkeyPatch, mode: str, +) -> None: + """The other one: a name that has been through `sanitize_name` round trips, + so the divergence cannot corrupt anything this service produced.""" + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + + for text in ( + "Vérifier l'état", + "\u0995\u09c7\u09be", + NFC_DIVERGENCE, + "患者確認", + # Leading and trailing whitespace matter here rather than being noise: + # trimming is what can uncover a mark that had nothing to compose onto. + " \u09cb", + "\t\u09cb ", + " \u0995\u094b", + " Vérifier l'état ", + ): + cleaned = sanitize_name(text) + assert sanitize_name(cleaned) == cleaned + assert normalize_nfc(cleaned) == cleaned + + +@pytest.mark.usefixtures("unicode_mode") +def test_trimming_does_not_leave_a_mark_uncomposed() -> None: + """A space in front of a two-part vowel blocks it from composing, so + trimming the space after normalising left the decomposed pair behind and + the sanitiser returned a name it would then call invalid.""" + assert sanitize_name(" \u09cb") == "\u09cb" + assert is_valid_name(sanitize_name(" \u09cb")) diff --git a/services/global_chat/tests/unit/test_yaml_assertions.py b/services/global_chat/tests/unit/test_yaml_assertions.py new file mode 100644 index 00000000..09a7448b --- /dev/null +++ b/services/global_chat/tests/unit/test_yaml_assertions.py @@ -0,0 +1,276 @@ +"""Unit tests for `assert_no_special_chars`. + +The assertion is what the live acceptance suites lean on to catch the +sanitizer misbehaving, so it needs to fail on the things the sanitizer can get +wrong — not just on a job name with an `@` in it. +""" + +from pathlib import Path + +import pytest +from name_rules import MAX_NAME_LENGTH, UNICODE_FLAG_ENV, describe_rule_for_judge +from testing import judges +from testing.judges import load_judge +from testing.yaml_assertions import assert_no_special_chars + + +@pytest.fixture +def ascii_mode(monkeypatch: pytest.MonkeyPatch) -> None: + monkeypatch.setenv(UNICODE_FLAG_ENV, "false") + + +@pytest.fixture +def unicode_mode(monkeypatch: pytest.MonkeyPatch) -> None: + monkeypatch.setenv(UNICODE_FLAG_ENV, "true") + + +def _workflow(**overrides: object) -> dict: + data = { + "jobs": {"fetch": {"name": "Fetch"}, "send": {"name": "Send"}}, + "triggers": {"webhook": {"type": "webhook"}}, + "edges": { + "webhook->fetch": {"source_trigger": "webhook", "target_job": "fetch"}, + "fetch->send": {"source_job": "fetch", "target_job": "send"}, + }, + } + data.update(overrides) + return data + + +@pytest.mark.usefixtures("ascii_mode") +def test_accepts_a_clean_workflow() -> None: + assert_no_special_chars(_workflow()) + + +@pytest.mark.usefixtures("ascii_mode") +def test_rejects_a_bad_job_name() -> None: + workflow = _workflow(jobs={"fetch": {"name": "Vérifier l'état"}}) + workflow["edges"] = {} + + with pytest.raises(AssertionError, match="Job 'fetch' name"): + assert_no_special_chars(workflow) + + +@pytest.mark.usefixtures("ascii_mode") +def test_rejects_a_bad_job_key() -> None: + """Job keys were never checked, which is how the key/name asymmetry hid.""" + workflow = _workflow(jobs={"患者確認": {"name": "Check"}}, edges={}) + + with pytest.raises(AssertionError, match="Job key"): + assert_no_special_chars(workflow) + + +@pytest.mark.usefixtures("ascii_mode") +def test_rejects_a_bad_trigger_key() -> None: + """Triggers were not checked at all, which is how the unsanitized ones sailed past.""" + workflow = _workflow(triggers={"ウェブ": {"type": "webhook"}}, edges={}) + + with pytest.raises(AssertionError, match="Trigger key"): + assert_no_special_chars(workflow) + + +@pytest.mark.usefixtures("ascii_mode") +def test_rejects_a_name_over_the_length_cap() -> None: + """Uses is_valid_name, so the cap is checked; a character-set regex missed this.""" + workflow = _workflow(jobs={"fetch": {"name": "x" * (MAX_NAME_LENGTH + 1)}}, edges={}) + + with pytest.raises(AssertionError, match="does not obey the step-name rule"): + assert_no_special_chars(workflow) + + +@pytest.mark.usefixtures("ascii_mode") +def test_rejects_an_edge_whose_key_contradicts_its_endpoints() -> None: + workflow = _workflow( + edges={"fetch->nowhere": {"source_job": "fetch", "target_job": "send"}}, + ) + + with pytest.raises(AssertionError, match="does not match its own endpoints"): + assert_no_special_chars(workflow) + + +@pytest.mark.usefixtures("ascii_mode") +def test_accepts_the_collision_suffix_the_sanitizer_adds() -> None: + """Two edges between the same pair are legitimate, and the second gets a -N.""" + workflow = _workflow( + edges={ + "fetch->send": {"source_job": "fetch", "target_job": "send"}, + "fetch->send-2": {"source_job": "fetch", "target_job": "send"}, + }, + ) + + assert_no_special_chars(workflow) + + +@pytest.mark.usefixtures("unicode_mode") +def test_does_not_split_an_edge_key_on_an_arrow_inside_a_name() -> None: + """Splitting on the first "->" is exactly the ambiguity the sanitizer avoids.""" + workflow = { + "jobs": {"a->b": {"name": "a->b"}, "c": {"name": "C"}}, + "edges": {"a->b->c": {"source_job": "a->b", "target_job": "c"}}, + } + + assert_no_special_chars(workflow) + + +@pytest.mark.usefixtures("unicode_mode") +def test_permissive_mode_accepts_what_lightning_accepts() -> None: + workflow = { + "jobs": { + "Vérifier l'état": {"name": "Vérifier l'état"}, + "患者確認": {"name": "患者確認 ✅"}, + }, + "edges": { + "Vérifier l'état->患者確認": { + "source_job": "Vérifier l'état", + "target_job": "患者確認", + }, + }, + } + + assert_no_special_chars(workflow) + + +@pytest.mark.usefixtures("unicode_mode") +def test_permissive_mode_still_rejects_a_control_character() -> None: + workflow = _workflow(jobs={"fetch": {"name": "Fetch\x00Data"}}, edges={}) + + with pytest.raises(AssertionError, match="does not obey the step-name rule"): + assert_no_special_chars(workflow) + + +# --- the judges are generated from the same rule ------------------------------ + + +def test_judges_state_the_active_rule(monkeypatch: pytest.MonkeyPatch) -> None: + """The rubrics used to restate the rule as static prose, a third copy. + + With the ASCII rule active a hardcoded permissive rubric would pass a name + the sanitizer is in fact folding, so the judge could no longer catch Apollo + misbehaving. + """ + monkeypatch.setenv(UNICODE_FLAG_ENV, "false") + ascii_rules = load_judge("general").rules + assert describe_rule_for_judge() in ascii_rules + assert "unaccented English letters" in ascii_rules + + monkeypatch.setenv(UNICODE_FLAG_ENV, "true") + unicode_rules = load_judge("general").rules + assert describe_rule_for_judge() in unicode_rules + assert "no control characters" in unicode_rules + + assert ascii_rules != unicode_rules + + +#: Every judge on disk, not a hardcoded pair — a new rubric that restates the +#: rule by hand would otherwise never be checked. +ALL_JUDGES = sorted(p.stem for p in (Path(judges.__file__).parent / "judges").glob("*.md")) + + +def test_the_judge_list_is_not_empty() -> None: + """Guards the glob: an empty list would make every test below vacuous.""" + assert ALL_JUDGES + + +@pytest.mark.parametrize("judge", ALL_JUDGES) +def test_no_judge_leaves_the_placeholder_unsubstituted(judge: str) -> None: + config = load_judge(judge) + assert "{name_rule}" not in config.rules + assert "{name_rule}" not in config.role + + +@pytest.mark.parametrize("judge", ALL_JUDGES) +def test_a_judge_that_uses_the_token_gets_the_active_rule(judge: str) -> None: + """Not every judge needs it — the code-quality one grades job bodies, not names.""" + raw = (Path(judges.__file__).parent / "judges" / f"{judge}.md").read_text() + if "{name_rule}" not in raw: + pytest.skip(f"{judge} does not grade names") + + assert describe_rule_for_judge() in load_judge(judge).rules + + +@pytest.mark.parametrize("judge", ALL_JUDGES) +def test_no_judge_hardcodes_a_naming_rule(judge: str) -> None: + """A hand-written charset is the drift this whole indirection exists to stop.""" + raw = (Path(judges.__file__).parent / "judges" / f"{judge}.md").read_text().lower() + + for phrase in ( + "letters, numbers, spaces", + "letters, digits, spaces", + "hyphens, and underscores", + "no special characters", + ): + assert phrase not in raw, f"{judge} states the naming rule itself; use {{name_rule}}" + + +def test_a_mangled_placeholder_is_rejected_loudly(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> None: + """`str.replace` is a silent no-op on a misspelled token, so it must raise.""" + monkeypatch.setattr(judges, "_JUDGES_DIR", tmp_path) + (tmp_path / "typo.md").write_text("# role\nA judge\n\n# rules\n- {name_rules}\n") + + with pytest.raises(ValueError, match="unsubstituted placeholders"): + load_judge("typo") + + +def test_prose_braces_are_not_mistaken_for_placeholders( + tmp_path: Path, monkeypatch: pytest.MonkeyPatch, +) -> None: + """The code-quality judge is full of JS snippets; none of them may trip it.""" + monkeypatch.setattr(judges, "_JUDGES_DIR", tmp_path) + (tmp_path / "code.md").write_text( + "# role\nA judge\n\n# rules\n- `create({ name: $.patient.name })` and `() => {}`\n", + ) + + assert load_judge("code").rules + + +# --- null sections ------------------------------------------------------------ + + +@pytest.mark.parametrize( + "workflow", + [ + {"jobs": None}, + {"edges": None}, + {"triggers": None}, + {"jobs": None, "edges": None, "triggers": None}, + {}, + ], +) +def test_tolerates_an_empty_section(workflow: dict) -> None: + """`edges:` with nothing under it is valid YAML and parses as None.""" + assert_no_special_chars(workflow) + + +# --- referential integrity ---------------------------------------------------- + + +@pytest.mark.usefixtures("ascii_mode") +def test_rejects_an_edge_pointing_at_a_job_that_does_not_exist() -> None: + """A well-formed name that names nothing is what a broken mapping produces.""" + workflow = _workflow(edges={"fetch->ghost": {"source_job": "fetch", "target_job": "ghost"}}) + + with pytest.raises(AssertionError, match="is not a job in this workflow"): + assert_no_special_chars(workflow) + + +@pytest.mark.usefixtures("ascii_mode") +def test_rejects_a_trigger_reference_that_names_a_job() -> None: + """The exact shape a shared job/trigger key mapping produced.""" + workflow = _workflow( + edges={"fetch->send": {"source_trigger": "fetch", "target_job": "send"}}, + ) + + with pytest.raises(AssertionError, match="is not a trigger in this workflow"): + assert_no_special_chars(workflow) + + +@pytest.mark.usefixtures("ascii_mode") +def test_rejects_an_over_long_edge_key() -> None: + long_name = "a" * MAX_NAME_LENGTH + workflow = { + "jobs": {long_name: {"name": "A"}, "b": {"name": "B"}}, + "edges": {f"{long_name}->{long_name}->b": {"source_job": long_name, "target_job": "b"}}, + } + + with pytest.raises(AssertionError): + assert_no_special_chars(workflow) diff --git a/services/global_chat/tests/unit/test_yaml_utils.py b/services/global_chat/tests/unit/test_yaml_utils.py index 9d24f86b..4680ee3f 100644 --- a/services/global_chat/tests/unit/test_yaml_utils.py +++ b/services/global_chat/tests/unit/test_yaml_utils.py @@ -7,11 +7,15 @@ from yaml_utils import ( REDACTED_BODY, WITHHELD_NOTICE, + find_job_in_yaml, + get_page_view, + get_step_name_from_page, has_unredacted_body, inspect_job_code, iter_body_holders, redact_job_bodies, remove_ids, + stitch_job_code, ) WORKFLOW_YAML = """\ @@ -80,6 +84,77 @@ def test_inspect_handles_missing_yaml_and_keys() -> None: assert inspect_job_code(WORKFLOW_YAML, []) == "ERROR: No job keys provided." +# --- step lookup by name ---------------------------------------------------- + +NON_LATIN_WORKFLOW_YAML = """\ +name: wf +jobs: + patient-check: + name: 患者確認 + body: get('/patients'); + send-data: + name: データ送信 + body: post('/data', $.data); + verify: + name: Проверка данных + body: check(); +""" + + +def test_find_job_matches_the_right_non_latin_name() -> None: + key, job = find_job_in_yaml(NON_LATIN_WORKFLOW_YAML, "データ送信") + assert key == "send-data" + assert job["name"] == "データ送信" + + +def test_find_job_does_not_cross_match_non_latin_names() -> None: + """Every non-Latin name used to normalize to "", so any non-Latin lookup + matched the first non-Latin job in the workflow.""" + key, job = find_job_in_yaml(NON_LATIN_WORKFLOW_YAML, "Проверка") + assert key is None + assert job is None + + key, _ = find_job_in_yaml(NON_LATIN_WORKFLOW_YAML, "Проверка данных") + assert key == "verify" + + +def test_find_job_lookup_is_still_fuzzy_for_latin_names() -> None: + assert find_job_in_yaml(WORKFLOW_YAML, "Fetch Patients")[0] == "fetch-patients" + assert find_job_in_yaml(WORKFLOW_YAML, "FETCH-PATIENTS")[0] == "fetch-patients" + + +def test_find_job_ignores_a_lookup_key_with_nothing_to_match_on() -> None: + assert find_job_in_yaml(NON_LATIN_WORKFLOW_YAML, "!!!") == (None, None) + assert find_job_in_yaml(NON_LATIN_WORKFLOW_YAML, "") == (None, None) + + +def test_find_job_matches_a_decomposed_name() -> None: + yaml_str = "jobs:\n verify:\n name: V\u00e9rifier\n" + assert find_job_in_yaml(yaml_str, "Ve\u0301rifier")[0] == "verify" + + +# --- page breadcrumb parsing ------------------------------------------------ + + +def test_page_view_classifies_the_three_shapes() -> None: + assert get_page_view("workflows/wf") == ("overview", None) + assert get_page_view("workflows/wf/settings") == (None, None) + assert get_page_view("workflows/wf/fetch-patients") == ("step", "fetch-patients") + assert get_page_view("projects/p") == (None, None) + assert get_page_view(None) == (None, None) + assert get_page_view("workflows") == (None, None) + + +def test_page_view_keeps_a_slash_inside_a_step_name() -> None: + """A step name containing "/" used to silently lose the step focus.""" + assert get_page_view("workflows/wf/Import A/B") == ("step", "Import A/B") + assert get_step_name_from_page("workflows/wf/Import A/B") == "Import A/B" + + +def test_page_view_keeps_a_non_latin_step_name() -> None: + assert get_step_name_from_page("workflows/wf/患者確認") == "患者確認" + + # --- redaction must never fall back to the unredacted document ---------------- WORKFLOW_WITH_NULL_JOB = """\ @@ -168,6 +243,22 @@ def test_withholding_tells_the_model_what_happened() -> None: assert "Do not conclude that it is empty" in withheld +def test_stitching_a_missing_job_is_reported(caplog: pytest.LogCaptureFixture) -> None: + """It returns the original either way; the planner logs success regardless, + so silence here meant the generated code vanished without trace.""" + with caplog.at_level("ERROR"): + stitch_job_code(WORKFLOW_YAML, "no-such-job", "get('/x');") + + assert any("discarded" in record.message for record in caplog.records) + + +def test_stitch_tolerates_a_null_job_entry() -> None: + stitched = stitch_job_code(WORKFLOW_WITH_NULL_JOB, "fetch", "post('/x');") + + assert "post('/x');" in stitched + assert stitch_job_code(WORKFLOW_WITH_NULL_JOB, "half-written", "x();") is not None + + # --- one walker, every shape --------------------------------------------------- @@ -295,3 +386,39 @@ def test_remove_ids_still_walks_tuples() -> None: remove_ids(data) assert "id" not in data["jobs"][0][1] + + +# --- the fuzzy lookup writes, so it must not guess ----------------------------- + +AMBIGUOUS_WORKFLOW = """\ +name: wf +jobs: + upload-data: + name: Legacy uploader + body: legacy(); + upload-data-2: + name: Upload Data + body: current(); +""" + + +def test_an_exact_name_beats_an_earlier_key_fold() -> None: + """The result goes to `stitch_job_code`, which replaces that step's body. + Taking the first fold hit let `upload-data`'s key fold beat + `upload-data-2`'s exact name, so the model's code overwrote the legacy + step.""" + assert find_job_in_yaml(AMBIGUOUS_WORKFLOW, "Upload Data")[0] == "upload-data-2" + + +def test_an_exact_key_still_wins_outright() -> None: + assert find_job_in_yaml(AMBIGUOUS_WORKFLOW, "upload-data")[0] == "upload-data" + + +def test_an_ambiguous_fold_is_refused_rather_than_guessed() -> None: + workflow = "jobs:\n a:\n name: Fetch Data\n b:\n name: fetch-data\n" + + assert find_job_in_yaml(workflow, "FETCH DATA") == (None, None) + + +def test_an_unambiguous_fold_still_resolves() -> None: + assert find_job_in_yaml(AMBIGUOUS_WORKFLOW, "upload data 2")[0] == "upload-data-2" diff --git a/services/job_chat/prompt_online.py b/services/job_chat/prompt_online.py deleted file mode 100644 index 72206dd0..00000000 --- a/services/job_chat/prompt_online.py +++ /dev/null @@ -1,457 +0,0 @@ -import json -import time -import sentry_sdk -from langfuse import observe -from util import create_logger, ApolloError, AdaptorSpecifier, get_db_connection -from .retrieve_docs import retrieve_knowledge -from search_adaptor_docs.search_adaptor_docs import fetch_signatures - -logger = create_logger("job_chat.prompt") - -system_role = """ -You are a software engineer helping a non-expert user write a job for our platform. -We are OpenFn (Open Function Group) the world's leading digital public good for workflow automation. - -Where reasonable, assume questions are related to workflow automation, -professional platforms or programming. You may provide general information around these topics, -e.g. general programming assistance unrelated to job writing. -If a question is entirely irrelevant, do not answer it. - -Keep your responses concise and lead with the answer. Explain only as much as -the user's question needs. When generating code, always use the simplest -possible code to achieve the task. - -Do not thank the user or be obsequious. Address the user directly. - -You are embedded in our app for building workflows. Our app will provide the -history of each chat session to you. Our app will send you the user's code and -tell you which adaptor (library) is being used. -Chat sessions are saved to each job, so any user who can see the workflow can see the chat. - -Your chat panel is embedded in a web based IDE, which lets users build a Workflow with a number -of steps (or jobs). There is a code editor next to you, which users can copy and paste code into. -Users must set or select an input in the Input tab, and can then run the current job. - -You ONLY help with job code. Do NOT help with overall workflow structure. -If the user wants to add/remove/edit workflow steps, tell them to navigate to the workflow overview. - -Users can Flag any answers that are not helpful, which will help us build a better prompt for you. - - -The system will provide you with various pieces of context about the user's job using XML tags: - -- : The current job code the user is working on. This is the code they want help with. -- : Documentation for the adaptor (library) the user is using. Reference this when suggesting functions. -- : Sample input data the user is testing with. Shows what data structure enters the job. -- : The output data from a previous run. Shows what the job produced. -- : Execution logs from when the user ran their job. These contain console.log output, - error messages, and system logs. Use these logs to diagnose errors and understand what happened - during execution. When logs are present, you should analyze them carefully to identify the root - cause of any issues. - -When the user asks you to check logs or debug an error, the tag will contain the -relevant execution information. Pay close attention to error messages, stack traces, and the -sequence of log statements to understand what went wrong. - -Earlier turns may have pertained to different context (workflow structure or other job steps) that is no longer -attached. Any previously generated code has been redacted from history. Some turns may have a [pg:...] -prefix showing the user's page context at that time. - -""" - -job_writing_summary = """ - -When writing jobs, users will use their own credentials to access different -backend systems. The OpenFn app handles all credential management for them -in a secure way. - -For more help direct them to https://docs.openfn.org/documentation/build/credentials - -Users must never add credentials into job code directly. If a user gives you an -API key, password, access token, or other credential, you must reject it. - - -An OpenFn Job is written in a DSL which is very similar to Javascript. - -Job code does not use import statements or async/await. - -Job code must only contain function calls at the top level. - -If the user is talking about collections, suggest this: "For working with collections, refer to the official documentation here: https://docs.openfn.org/adaptors/packages/collections-docs.". -Avoid suggesting code to a user enquiring about collections or a single collection. - -Each job is associated with an adaptor, which provides functions for the job. -All jobs have the fn() and each() function, which are very important. - -DO NOT use the `alterState()` function. Use `fn()` instead. - -The adaptor API may be attached. - -The functions provided by an adaptor are called Operations. -Know that technically an Operation is a factory function which returns a function that takes state and returns state, like this: -```js -const myOperation = (arg) => (state) => { /* do something with arg and state */ return state; } -``` -But the DSL presents these operations like simple functions. Users don't know it's a factory, they think it's a regular function. - - -Here's how we issue a GET request with the http adaptor: -``` -get('/patients'); -``` -The first argument to get is the path to request from (the configuration will tell -the adaptor what base url to use). In this case we're passing a static string, -but we can also pass a value from state: -``` -get(state => state.endpoint); -``` - - -Example job code with the HTTP adaptor: -``` -get('/patients'); -fn(state => { - const patients = state.data.map(p => { - return { ...p, enrolled: true } - }); - - return { ...state, data: { patients } }; -}) -post('/patients', dataValue('patients')); - - -``` -Example job code with the Salesforce adaptor: -``` -each( - '$.form.participants[*]', - upsert('Person__c', 'Participant_PID__c', state => ({ - Participant_PID__c: state.pid, - First_Name__c: state.participant_first_name, - Surname__c: state.participant_surname, - })) -); -``` - - -Example job code with the ODK adaptor: -``` -create( - 'ODK_Submission__c', - fields( - field('Site_School_ID_Number__c', dataValue('school')), - field('Date_Completed__c', dataValue('date')), - field('comments__c', dataValue('comments')), - field('ODK_Key__c', dataValue('*meta-instance-id*')) - ) -); -``` - - - - -A job is just one step in a workflow (or pipeline). Workflows are used -to automate processes and migrate data from system to system. - -In OpenFn, each step works with a single backend system, or adaptor. Data is shared -between steps through the state object. - -To build a successful workflow, we have to take the user's problem and break it down -step by step. Focus on one bit at a time. For example, when uploading from CommCare to Salesforce, we have to: -1. Download our data from CommCare in one step -2. Transform/map data into salesforce format in another step (with the common adaptor) -3. Upload the transformed data into salesforce in the final step - - - -You must respond in JSON format with two fields: - -{ - "code_edits": [], - "text_answer": "Your conversational response here" -} - -"code_edits" are applied directly to the user's job code — a "rewrite", or a "replace" of the whole body, will overwrite whatever they currently have. So reach for code_edits when the user actually wants their job changed. When you're explaining, teaching, or showing an illustrative example that shouldn't disturb their current work, put the code inline in "text_answer" as a markdown code block instead. Judge from what the user is asking which they want — and if they clearly want the example in their job, edit it; if they just want to understand or see it, keep it inline. -Use "text_answer" for all explanations, guidance, and conversation. -The user will see these code edits as suggestions in their separate code panel, so avoid ending on a colon. - -Code edit actions: -{ - "action": "replace", - "old_code": "exact code to find and replace", - "new_code": "replacement code" -} - -{ - "action": "rewrite", - "new_code": "complete new code" -} - - -- The old_code must match exactly, including all whitespace and indentation -- Apply edits sequentially - later edits work on the already-modified code -- If old_code is not found exactly, the edit will fail safely rather than corrupt the file - -To insert new code using replace: -- Find a suitable insertion point and replace it with itself plus the new code -- Example: To insert after "get('/patients');", replace it with "get('/patients');\n[new code here]" - -**IMPORTANT: INCLUDE CONTEXT TO AVOID DUPLICATE MATCHES** -We will use literal string replacement to apply your changes. To avoid duplicate matches, you MUST: -1. Include ample surrounding context in the old_code to replace (comments, variable declarations, both similar passages etc.) -2. If in doubt, use "rewrite" action instead to rewrite the whole code - -**Output valid JSON strings** -Your answer MUST be parsable with json.loads() -This means that all string values in your JSON (including "old_code", "new_code", and "text_answer") must be valid JSON strings. -- Escape all newlines as \\n (one backslash followed by n) -- Escape all double quotes as \\" (one backslash followed by double quotation mark) -- Do not include unescaped control characters in any string value. -- When you include code in a string, ensure it is a single line with \\n for line breaks. - -Example: -{ - "code_edits": [{ - "action": "replace", - "old_code": "get('/patients');", - "new_code": "get('/patients');\\nfn(state => {\\n if (!state.data) {\\n throw new Error(\\\"No data received\\\");\\n }\\n return state;\\n});" - }], - "text_answer": "I'll add error handling after your GET request" -} - -ALWAYS use \\n instead of actual newlines: -THIS IS WRONG: -"new_code": "function() { - return true; -}" - -THIS IS CORRECT: -"new_code": "function() {\\n return true;\\n}" - - -""" - -error_correction_system_prompt = """ -You are a code edit correction assistant. A code edit failed because the string replacement system couldn't find a unique match. - -CRITICAL: You are working with a LITERAL STRING REPLACEMENT system, not a semantic code editor. - -The system has tried to look for old_code in the full_original_code, and substitute it with new_code. -Your task is to understand the intended change from the given context and attempted replacement, to output a corrected attempt for the string replacement system. -The correction system will look for your corrected_old_code in full_original_code and substitute it with your corrected_new_code. - -Context to use: -You will be given relevant context under "Original edit details" below. -This may include an explanation of attempted changes. Note that this may describe a broader change/series of changes but you will only be shown a specific edit to fix. - -Common issues: -1. "old_code not found" - the old_code doesn't exactly match what's in the file - --> Look at the full code and find the closest matching section -2. "old_code matches multiple locations" - the old_code appears multiple times - --> Add more surrounding context to make the old_code unique for string replacement. - **CRITICAL**: Take care to include the intended context in the corrected_new_code so that the substitution does not result in deletions or duplications. -3. "Replace action requires old_code and new_code" - missing required fields - --> Either/both fields missing. Use the given context and full code to fill these. - -It is important to: -- Preserve the intended change from the original new_code -- Maintain exact whitespace and formatting -- Include enough context in old_code to make it unique - -Output JSON format: -{ - "explanation": "1-sentence explanation of the correction", - "corrected_old_code": "corrected old code with proper context", - "corrected_new_code": "corrected new code" -} - -**Output valid JSON strings** -Your answer MUST be parsable with json.loads() -- Escape all newlines as \\n (one backslash followed by n) -- Escape all double quotes as \\" (one backslash followed by double quotation mark) -- Do not include unescaped control characters in any string value. -- When you include code in a string, ensure it is a single line with \\n for line breaks. - -ALWAYS use \\n instead of actual newlines: -THIS IS WRONG: -"corrected_new_code": "function() { - return true; -}" - -THIS IS CORRECT: -"corrected_new_code": "function() {\\n return true;\\n}" -""" - - -class Context: - def __init__(self, **kwargs): - self.__dict__.update(kwargs) - - def has(self, key): - return hasattr(self, key) and getattr(self, key) is not None - - -def generate_system_message(context_dict, search_results, download_adaptor_docs=True, stream_manager=None): - context = context_dict if isinstance(context_dict, Context) else Context(**(context_dict or {})) - - message = [system_role] - message.append(f"{job_writing_summary}") - message.append({"type": "text", "text": ".", "cache_control": {"type": "ephemeral"}}) - - if search_results: - search_results = format_search_results(search_results) - message.append(f"General OpenFn documentation search results. These cover platform concepts only — not adaptor-specific APIs, which are included separately. Treat with caution if not relevant to the user's situation.\n\n{search_results}") - message.append({"type": "text", "text": ".", "cache_control": {"type": "ephemeral"}}) - - if context.has("adaptor"): - adaptor_string = ( - f"The user is using the OpenFn {context.adaptor} adaptor. Use functions provided by its API.\n\n" - ) - - try: - conn = get_db_connection() - - try: - try: - adaptor = AdaptorSpecifier(context.adaptor) - - signatures = fetch_signatures(adaptor, conn, auto_load=download_adaptor_docs) - - if signatures: - adaptor_string += "These are the available functions in the adaptor:\n\n" - for func_name, signature in signatures.items(): - adaptor_string += f"{signature}\n" - else: - msg = f"No adaptor signatures returned from search_adaptor_docs for {adaptor.specifier}" - logger.warning(msg) - sentry_sdk.capture_message(msg, level="warning") - sentry_sdk.set_context("adaptor_context", { - "adaptor_name": adaptor.name, - "version": adaptor.version, - "parsed_from": context.adaptor - }) - adaptor_string += "The user is using an OpenFn Adaptor to write the job." - except Exception as parse_error: - msg = f"Failed to parse adaptor string '{context.adaptor}': {parse_error}" - logger.warning(msg) - sentry_sdk.capture_message(msg, level="warning") - sentry_sdk.set_context("adaptor_context", { - "parsed_from": context.adaptor, - "error": str(parse_error) - }) - adaptor_string += "The user is using an OpenFn Adaptor to write the job." - finally: - conn.close() - except ApolloError as e: - logger.warning(f"Database not available: {e.message}") - adaptor_string += "The user is using an OpenFn Adaptor to write the job." - except Exception as e: - logger.warning(f"Could not fetch adaptor docs for {context.adaptor}: {e}") - adaptor_string += "The user is using an OpenFn Adaptor to write the job." - - if len(adaptor_string) >= 40000: - adaptor_string = adaptor_string[:40000] - adaptor_string += "(...)" - - adaptor_string += "" - - message.append(adaptor_string) - else: - message.append("The user is using an OpenFn Adaptor to write the job.") - - message.append({"type": "text", "text": ".", "cache_control": {"type": "ephemeral"}}) - - if context.has("expression"): - message.append(f"{context.expression}") - - if context.has("input"): - message.append(f"The user's input data is :\n\n```{context.input}```") - - if context.has("output"): - message.append(f"The user's last output data was :\n\n```{context.output}```") - - if context.has("log"): - message.append(f""" -IMPORTANT: The user has included execution logs from their last workflow run below. -These logs contain the actual runtime output including console.log statements, error messages, -and system information. When debugging, analyze these logs carefully to identify: -- Error messages and their root causes -- The sequence of operations that executed -- Any unexpected behavior or missing output -- Stack traces if errors occurred - -```{context.log}``` -""") - - return list(map(lambda text: text if isinstance(text, dict) else {"type": "text", "text": text}, message)) - -def format_search_results(search_results): - return '\n'.join([ - f'search result: "{result.get("text")}", source: "{result.get("metadata", {}).get("doc_title", "")} {result.get("medatada", {}).get("docs_type", "")}"' - for result in search_results - ]) - -@observe(name="job_chat_build_prompt") -def build_prompt(content, history, context, rag=None, api_key=None, stream_manager=None, download_adaptor_docs=True, refresh_rag=False): - retrieved_knowledge = { - "search_results": [], - "search_results_sections": [], - "search_queries": [], - "config_version": "", - "prompts_version": "", - "usage": { - "needs_docs": {}, - "generate_queries": {} - } - } - - # Run RAG if: (a) no RAG data provided, OR (b) refresh_rag flag is True - if rag and not refresh_rag: - retrieved_knowledge = rag - else: - try: - retrieved_knowledge = retrieve_knowledge( - content=content, - history=history, - code=context.get("expression", ""), - adaptor=context.get("adaptor", ""), - api_key=api_key, - stream_manager=stream_manager, - ) - except Exception as e: - logger.error(f"Error retrieving knowledge: {str(e)}") - - system_message = generate_system_message( - context_dict=context, - search_results=retrieved_knowledge.get("search_results") if retrieved_knowledge is not None else None, - download_adaptor_docs=download_adaptor_docs, - stream_manager=stream_manager) - - prompt = [] - prompt.extend(history) - prompt.append({"role": "user", "content": content}) - - return (system_message, prompt, retrieved_knowledge) - -def build_error_correction_prompt(content: str, error_message: str, old_code: str, new_code: str, full_code: str, text_explanation: str): - """Build a prompt for correcting code edit errors.""" - - system_message = [{"type": "text", "text": error_correction_system_prompt}] - - user_content = f"""A code edit failed with this error: "{error_message}" - -Original edit details: -- old_code:\n{json.dumps(old_code)} -- attempted to replace the above with new_code:\n{json.dumps(new_code)} -- the user's original message:\n{content} -- explanation of (all) attempted changes:\n{text_explanation} -- full_original_code: -``` -{full_code} -``` - -Please provide corrected old_code and new_code that will successfully apply the intended change with string replacement.""" - - prompt = [{"role": "user", "content": user_content}] - logger.info(f"prompt in full:\n{prompt}") - return (system_message, prompt) \ No newline at end of file diff --git a/services/langfuse_util.py b/services/langfuse_util.py index 4772b2a1..0a99926c 100644 --- a/services/langfuse_util.py +++ b/services/langfuse_util.py @@ -181,7 +181,7 @@ def _normalize_yaml(yaml_str: str) -> str: return yaml_str if not isinstance(data, dict): return yaml_str - return yaml.dump(data, Dumper=_BlockScalarDumper, sort_keys=False) + return yaml.dump(data, Dumper=_BlockScalarDumper, sort_keys=False, allow_unicode=True) def build_generation_diff( diff --git a/services/name_rules.py b/services/name_rules.py new file mode 100644 index 00000000..a3b93f80 --- /dev/null +++ b/services/name_rules.py @@ -0,0 +1,745 @@ +r"""Single source of truth for which characters a workflow step name may contain. + +Lightning validates step names on its side and Apollo sanitises them on this +side. The two rules have to agree: if Apollo strips a character Lightning would +have accepted, Apollo silently renames a step the user deliberately named; if +Apollo emits a character Lightning rejects, the workflow fails to save. Of the +two, Apollo being *stricter* is the worse failure -- that is the silent +vandalism issue #446 exists to stop -- so the permissive rule below is +deliberately maximal. + +Lightning is lifting its restriction (Lightning#4577) from ASCII-only to +"anything except control characters". The two releases cannot ship at the same +instant, so the rule here is switchable at runtime: + + APOLLO_UNICODE_STEP_NAMES=false (default) -- today's ASCII-only behaviour, + matching Lightning's current ``~r/^[a-zA-Z0-9_\- ]*$/``. + APOLLO_UNICODE_STEP_NAMES=true -- anything except control + characters. Letters and marks from any script, all punctuation and + symbols, emoji, ``/``, ``:``, ``>``, ``&``, quotes and apostrophes. + +Deploy Apollo first with the default, flip the flag once Lightning ships. + +Both modes reject the same set, and nothing else is ever rejected in permissive +mode: + + C0 U+0000-U+001F (NUL included) + DEL U+007F + C1 U+0080-U+009F + noncharacters U+FFFE, U+FFFF + surrogates U+D800-U+DFFF (cannot be encoded as UTF-8 at all) + separators U+2028, U+2029 (do not survive the YAML round trip) + +A NUL byte in a name crashes the Postgres insert on Lightning's side +(Lightning#4893), so it is never permitted regardless of which rule is active. + +Both modes normalise to NFC and cap the name at 100 *graphemes*, counted the +way Elixir counts them (see the grapheme section below). Ecto's +``validate_length`` counts graphemes, so counting codepoints here would let a +name through that Lightning then rejects. + +On normalisation: Lightning's ``main`` still carries the ASCII-only regex at +``job.ex`` and does not normalise. The NFC normalisation this module is +matching is on Lightning's ``4577-unicode-step-names`` branch, unmerged at the +time of writing -- so treat "Lightning normalises to NFC" as the agreed plan, +not as shipped behaviour, and re-check the branch before flipping the flag. +Step lookup matches names as text, so if the two sides ever disagree on the +normal form, a lookup for a name containing an accent silently misses. +""" + +import os +import unicodedata + +UNICODE_FLAG_ENV = "APOLLO_UNICODE_STEP_NAMES" + +_TRUTHY = frozenset({"1", "true", "t", "yes", "y", "on"}) + +#: Permitted in both modes, alongside the letters and digits. +BASE_PUNCTUATION = " -_" + +_ASCII_ALNUM = frozenset( + "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789", +) + +_ASCII_ALLOWED = _ASCII_ALNUM | frozenset(BASE_PUNCTUATION) + +#: Used only by the lookup normalizer, not by the name rule. +_LETTER_MARK_DIGIT = ("L", "M", "N") + +#: Longest name Lightning will store, counted in graphemes because Ecto's +#: ``validate_length`` counts graphemes. +MAX_NAME_LENGTH = 100 + +# How many times sanitize_name may re-trim and re-normalise before giving up. +# Two passes settle every case found so far; the rest is margin. +_SANITIZE_PASSES = 4 + +#: Longest edge key. An edge label is ``source->target``, so two names at the +#: limit would otherwise make a key over twice the length of anything else in +#: the document. +MAX_EDGE_KEY_LENGTH = MAX_NAME_LENGTH * 2 + len("->") + +#: Letters NFKD cannot decompose, so under the ASCII rule they would vanish and +#: take the word with them (``straße`` -> ``strae``). Spelled out instead. +_ASCII_TRANSLITERATIONS = str.maketrans({ + "ß": "ss", "ẞ": "SS", + "æ": "ae", "Æ": "AE", + "œ": "oe", "Œ": "OE", + "ø": "o", "Ø": "O", + "đ": "d", "Đ": "D", + "ð": "d", "Ð": "D", + "þ": "th", "Þ": "TH", + "ł": "l", "Ł": "L", + "ı": "i", "ŋ": "n", "Ŋ": "N", # noqa: RUF001 - dotless i is the character being mapped +}) + +_C0 = range(0x20) # NUL through US +_DEL = 0x7F +_C1 = range(0x80, 0xA0) +_NONCHARACTERS = frozenset({0xFFFE, 0xFFFF}) + +#: Lone surrogates. Python will hold one in a str (a YAML or JSON payload can +#: carry a bare \ud800), but it cannot be encoded as UTF-8, so letting one +#: through would hand Lightning a name it cannot store. +_SURROGATES = range(0xD800, 0xE000) + +#: LINE SEPARATOR and PARAGRAPH SEPARATOR. Not control characters by category, +#: but they cannot survive the round trip: PyYAML with ``allow_unicode=True`` +#: writes U+2028 literally and then indents the continuation, and ``yamerl``, +#: which is what Lightning parses with, does not fold that back. A name goes in +#: at 11 graphemes and comes out of Lightning at 17 with six spaces of YAML +#: indentation inside it. PyYAML reads its own output back correctly, so this +#: is invisible from this side of the wire. Lightning rejects them too. +_LINE_SEPARATORS = frozenset({0x2028, 0x2029}) + +#: Exactly what Elixir's `String.trim/1` strips, verified by brute-forcing the +#: whole codepoint space against Elixir 1.18.3: the 25 Unicode White_Space +#: characters. Python's bare `str.strip()` also eats U+001C-U+001F, which are +#: not White_Space, so trimming with an explicit set is what keeps Apollo and +#: Lightning agreeing on a name's identity. +_TRIM_CHARS = "\u0009\u000a\u000b\u000c\u000d\u0020\u0085\u00a0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u2028\u2029\u202f\u205f\u3000" + +#: What the generated tables below were probed from. `tools/unicode_parity` +#: regenerates them; if you re-run it against a different Elixir, update this +#: too -- a unit test pins it, so a silent regeneration fails loudly. +#: +#: Python moving forward only makes this module overcount, which truncates +#: early. Elixir moving forward is the dangerous direction: it undercounts, and +#: an undercount ships a name Ecto rejects. +PARITY_SOURCE = {"elixir": "1.18.3", "otp": "27", "python_unicodedata": "14.0.0"} + + +def unicode_names_enabled() -> bool: + """Return True when the Unicode-permissive rule is active. + + Read at call time rather than import time so tests (and a redeploy that + only changes the environment) do not need the module reloaded. + """ + return os.getenv(UNICODE_FLAG_ENV, "false").strip().lower() in _TRUTHY + + +def _is_forbidden(char: str) -> bool: + """True for the characters rejected in every mode (see the module docstring). + + A codepoint test, not a general-category test. Category ``C`` also covers + format characters such as ZWJ (U+200D), which emoji sequences need, and + private-use and unassigned codepoints, all of which Lightning accepts. + """ + code = ord(char) + return ( + code in _C0 + or code == _DEL + or code in _C1 + or code in _NONCHARACTERS + or code in _SURROGATES + or code in _LINE_SEPARATORS + ) + + +def is_control_char(char: str) -> bool: + """True for a character rejected in every mode. See `_is_forbidden`.""" + return _is_forbidden(char) + + +def is_allowed_char(char: str, unicode_mode: bool | None = None) -> bool: + """Return True if `char` may appear verbatim in a step name under the active rule.""" + if unicode_mode is None: + unicode_mode = unicode_names_enabled() + if _is_forbidden(char): + return False + return unicode_mode or char in _ASCII_ALLOWED + + +# Grapheme clustering. The authority is Elixir's `String.length/1`, because +# that is what Ecto calls. So the target is not "correct per UAX #29" but +# "identical to Elixir", and the two are not the same thing. Elixir deviates +# from the spec in two places that matter here, and this implementation +# deliberately copies both: +# +# * It does not implement GB9c, the Unicode 15.1 Indic conjunct rule, so +# `क` + virama + `ष` is two graphemes to Elixir and one to the spec. +# * It ends an emoji ZWJ run *at* the joiner unless another pictograph +# follows, so `©` is two graphemes to Elixir and one +# to the spec (which would attach the mark under GB9). +# +# Hand-written rather than the `regex` module's `\X`, which is spec-correct and +# therefore disagrees with OTP in both directions: it undercounts on the two +# deviations above, which ships a name over Ecto's cap, and it overcounts on +# U+11A3A, which truncates a name Lightning would have accepted. `regex` was +# also never a declared dependency -- it arrived transitively through nltk. +# +# Re-derive with `python3 edges.py && elixir probe.exs && python3 check.py`. + +_ZWJ = "\u200d" +_CR = "\r" +_LF = "\n" + +_REGIONAL_INDICATOR = range(0x1F1E6, 0x1F200) + +#: GCB=Extend characters that are not Mn/Me by general category. +_OTHER_GRAPHEME_EXTEND = frozenset( + { + 0x09BE, 0x09D7, 0x0B3E, 0x0B57, 0x0BBE, 0x0BD7, 0x0CC2, 0x0CD5, 0x0CD6, + 0x0D3E, 0x0D57, 0x0DCF, 0x0DDF, 0x1B35, 0x200C, 0x302E, 0x302F, 0xFF9E, + 0xFF9F, 0x1133E, 0x11357, 0x114B0, 0x115AF, 0x11930, 0x1D165, 0x1D16E, + 0x1D16F, 0x1D170, 0x1D171, 0x1D172, + }, +) + +#: Tag characters (GCB=Extend despite being format characters). These are what +#: make the Scotland/Wales/England flag sequences a single grapheme. +_TAGS = range(0xE0020, 0xE0080) + +#: Emoji skin-tone modifiers. General category Sk, but GCB=Extend. +_SKIN_TONES = range(0x1F3FB, 0x1F400) + +#: GCB=Prepend. +_PREPEND = frozenset( + { + 0x0600, 0x0601, 0x0602, 0x0603, 0x0604, 0x0605, 0x06DD, 0x070F, 0x0890, + 0x0891, 0x08E2, 0x0D4E, 0x110BD, 0x110CD, 0x111C2, 0x111C3, 0x1193F, + 0x11941, 0x11A3A, 0x11A84, 0x11A85, 0x11A86, 0x11A87, 0x11A88, 0x11A89, + 0x11D46, 0x11F02, + }, +) + +#: Mc characters that are NOT GCB=SpacingMark. GraphemeBreakProperty.txt lists +#: them nowhere else, so they fall through to GCB=Other -- not Extend. +_NOT_SPACING_MARK = frozenset( + { + 0x102B, 0x102C, 0x1038, 0x1062, 0x1063, 0x1064, 0x1067, 0x1068, 0x1069, + 0x106A, 0x106B, 0x106C, 0x106D, 0x1083, 0x1087, 0x1088, 0x1089, 0x108A, + 0x108B, 0x108C, 0x108F, 0x109A, 0x109B, 0x109C, 0x1A61, 0x1A63, 0x1A64, + 0xAA7B, 0xAA7D, 0x11720, 0x11721, + }, +) + +#: Lo characters that ARE GCB=SpacingMark. +_EXTRA_SPACING_MARK = frozenset({0x0E33, 0x0EB3}) + +#: Hangul jamo, for GB6/GB7/GB8. +_HANGUL_L = (range(0x1100, 0x1160), range(0xA960, 0xA97D)) +_HANGUL_V = (range(0x1160, 0x11A8), range(0xD7B0, 0xD7C7)) +_HANGUL_T = (range(0x11A8, 0x1200), range(0xD7CB, 0xD7FC)) +_HANGUL_SYLLABLES = range(0xAC00, 0xD7A4) + +#: Extended_Pictographic, for GB11. Generated from Elixir, not hand-written: +#: ExtPict is not a break class, so a codepoint-bucket sweep cannot check it +#: and an over-broad range here is invisible to that test. The earlier +#: hand-written version collapsed sparse sets into solid blocks and claimed +#: hundreds of codepoints too many -- U+2713 CHECK MARK among them, which made +#: `✓` one grapheme here and two in Elixir. +#: Regenerate with tools/unicode_parity/probe.exs (see extpict). +_EXT_PICT_RANGES = ( + (0x00A9, 0x00A9), (0x00AE, 0x00AE), (0x203C, 0x203C), + (0x2049, 0x2049), (0x2122, 0x2122), (0x2139, 0x2139), + (0x2194, 0x2199), (0x21A9, 0x21AA), (0x231A, 0x231B), + (0x2328, 0x2328), (0x2388, 0x2388), (0x23CF, 0x23CF), + (0x23E9, 0x23F3), (0x23F8, 0x23FA), (0x24C2, 0x24C2), + (0x25AA, 0x25AB), (0x25B6, 0x25B6), (0x25C0, 0x25C0), + (0x25FB, 0x25FE), (0x2600, 0x2605), (0x2607, 0x2612), + (0x2614, 0x2685), (0x2690, 0x2705), (0x2708, 0x2712), + (0x2714, 0x2714), (0x2716, 0x2716), (0x271D, 0x271D), + (0x2721, 0x2721), (0x2728, 0x2728), (0x2733, 0x2734), + (0x2744, 0x2744), (0x2747, 0x2747), (0x274C, 0x274C), + (0x274E, 0x274E), (0x2753, 0x2755), (0x2757, 0x2757), + (0x2763, 0x2767), (0x2795, 0x2797), (0x27A1, 0x27A1), + (0x27B0, 0x27B0), (0x27BF, 0x27BF), (0x2934, 0x2935), + (0x2B05, 0x2B07), (0x2B1B, 0x2B1C), (0x2B50, 0x2B50), + (0x2B55, 0x2B55), (0x3030, 0x3030), (0x303D, 0x303D), + (0x3297, 0x3297), (0x3299, 0x3299), (0x1F000, 0x1F0FF), + (0x1F10D, 0x1F10F), (0x1F12F, 0x1F12F), (0x1F16C, 0x1F171), + (0x1F17E, 0x1F17F), (0x1F18E, 0x1F18E), (0x1F191, 0x1F19A), + (0x1F1AD, 0x1F1E5), (0x1F201, 0x1F20F), (0x1F21A, 0x1F21A), + (0x1F22F, 0x1F22F), (0x1F232, 0x1F23A), (0x1F23C, 0x1F23F), + (0x1F249, 0x1F3FA), (0x1F400, 0x1F53D), (0x1F546, 0x1F64F), + (0x1F680, 0x1F6FF), (0x1F774, 0x1F77F), (0x1F7D5, 0x1F7FF), + (0x1F80C, 0x1F80F), (0x1F848, 0x1F84F), (0x1F85A, 0x1F85F), + (0x1F888, 0x1F88F), (0x1F8AE, 0x1F8FF), (0x1F90C, 0x1F93A), + (0x1F93C, 0x1F945), (0x1F947, 0x1FAFF), (0x1FC00, 0x1FFFD), +) + + +#: Codepoints assigned after the Unicode version Python's `unicodedata` ships +#: (3.11 carries Unicode 14.0; Elixir 1.18.3 is on a later one). Without these +#: they look unassigned here, fall through to GCB=Other, and the count drifts +#: from Elixir on any name using a script added since -- Kawi, Nag Mundari, the +#: Egyptian hieroglyph controls. +#: Regenerate with tools/unicode_parity/probe.exs (see classmap). +_LAG_EXTEND = ( + (0x0CF3, 0x0CF3), (0x0ECE, 0x0ECE), (0x10EFD, 0x10EFF), + (0x11241, 0x11241), (0x11F00, 0x11F01), (0x11F03, 0x11F03), + (0x11F34, 0x11F3A), (0x11F3E, 0x11F42), (0x13440, 0x13440), + (0x13447, 0x13455), (0x1E08F, 0x1E08F), (0x1E4EC, 0x1E4EF), +) + +_LAG_CONTROL = ( + (0x2065, 0x2065), (0xFFF0, 0xFFF8), (0x13439, 0x1343F), + (0xE0000, 0xE0000), (0xE0002, 0xE001F), (0xE0080, 0xE00FF), + (0xE01F0, 0xE0FFF), +) + +# Boundary classes, named so the rule table below reads like UAX #29. +_OTHER, _CONTROL, _EXTEND, _SPACING, _PREP = 0, 1, 2, 3, 4 +_L, _V, _T, _LV, _LVT, _RI, _JOIN = 5, 6, 7, 8, 9, 10, 11 + + +def _in_ranges(code: int, ranges: tuple) -> bool: + return any(low <= code <= high for low, high in ranges) + + +def _is_ext_pict(code: int) -> bool: + """True for Extended_Pictographic, which GB11 needs on both sides of a ZWJ.""" + return _in_ranges(code, _EXT_PICT_RANGES) + + +def _break_class(char: str) -> int: # noqa: PLR0911, PLR0912 - one branch per UAX #29 class + code = ord(char) + if char == _ZWJ: + return _JOIN + if char in (_CR, _LF): + return _CONTROL + if code in _PREPEND: + return _PREP + if code in _TAGS or code in _OTHER_GRAPHEME_EXTEND or code in _SKIN_TONES: + return _EXTEND + if _in_ranges(code, _LAG_EXTEND): + return _EXTEND + if _in_ranges(code, _LAG_CONTROL): + return _CONTROL + if code in _REGIONAL_INDICATOR: + return _RI + + category = unicodedata.category(char) + if category in ("Mn", "Me"): + return _EXTEND + if category == "Mc": + return _OTHER if code in _NOT_SPACING_MARK else _SPACING + if code in _EXTRA_SPACING_MARK: + return _SPACING + if category in ("Cc", "Cf", "Zl", "Zp", "Cs"): + return _CONTROL + + if code in _HANGUL_SYLLABLES: + return _LV if (code - 0xAC00) % 28 == 0 else _LVT + if _in_ranges(code, tuple((r.start, r.stop - 1) for r in _HANGUL_L)): + return _L + if _in_ranges(code, tuple((r.start, r.stop - 1) for r in _HANGUL_V)): + return _V + if _in_ranges(code, tuple((r.start, r.stop - 1) for r in _HANGUL_T)): + return _T + + return _OTHER + + +_HANGUL_CLASSES = (_L, _V, _T, _LV, _LVT) + +#: What an emoji run's lookback may cross on its way back to the pictograph. +#: UAX #29 GB11 says Extend* only; Elixir also crosses SpacingMark, verified +#: against 1.18.3 over every intervening class (Other, ZWJ, Prepend, Control +#: and a non-SpacingMark Mc all stop it). +_RUN_CONTINUES = (_EXTEND, _SPACING) + + +def _ext_pict_run_before(codes: list[int], classes: list[int], zwj_index: int) -> bool: + """True if the ZWJ at `zwj_index` closes an `ExtPict (Extend | SpacingMark)*` run.""" + index = zwj_index - 1 + while index >= 0 and classes[index] in _RUN_CONTINUES: + index -= 1 + return index >= 0 and classes[index] == _OTHER and _is_ext_pict(codes[index]) + + +def _fallback_clusters(text: str) -> list[str]: # noqa: PLR0912 - one branch per boundary rule + """Split into grapheme clusters the way Elixir does, not the way UAX #29 + says. GB1-GB13, with the two deviations described in the comment above.""" + if not text: + return [] + + classes = [_break_class(char) for char in text] + codes = [ord(char) for char in text] + clusters = [] + start = 0 + ri_run = 0 + + for index in range(1, len(text)): + before, after = classes[index - 1], classes[index] + + if before == _RI: + ri_run += 1 + else: + ri_run = 0 + + if text[index - 1] == _CR and text[index] == _LF: + brk = False # GB3 + elif _CONTROL in (before, after): + brk = True # GB4, GB5 + elif before == _JOIN and _ext_pict_run_before(codes, classes, index - 1): + # GB11 as Elixir implements it, not as the spec says. See above. + brk = not _is_ext_pict(codes[index]) + elif before == _L and after in (_L, _V, _LV, _LVT): + brk = False # GB6 + elif before in (_LV, _V) and after in (_V, _T): + brk = False # GB7 + elif before in (_LVT, _T) and after == _T: + brk = False # GB8 + elif after in (_EXTEND, _JOIN): + brk = False # GB9 + elif after == _SPACING: + brk = False # GB9a + elif before == _PREP: + brk = False # GB9b + elif before == _RI and after == _RI and ri_run % 2 == 1: + brk = False # GB12, GB13 + else: + brk = True # GB999 + + if brk: + clusters.append(text[start:index]) + start = index + + clusters.append(text[start:]) + return clusters + + +def grapheme_clusters(text: str) -> list[str]: + """Split `text` into user-perceived characters, the way Elixir would.""" + if not text: + return [] + return _fallback_clusters(text) + + +def grapheme_length(text: str) -> int: + """Count user-perceived characters, the way Ecto's `validate_length` does.""" + return len(grapheme_clusters(text)) + + +def truncate_graphemes(text: str, limit: int) -> str: + """Cut `text` to `limit` graphemes without splitting one in half.""" + clusters = grapheme_clusters(text) + if len(clusters) <= limit: + return text + return "".join(clusters[:limit]) + + +# Normalisation. + +#: Canonical combining class for codepoints Python's `unicodedata` does not +#: know yet. Break class and ccc are independent properties, so the codepoint +#: sweep that found `_LAG_EXTEND` could not see this: these ten already had +#: their break class corrected there, and their ccc rode along wrong. +#: Regenerate with tools/unicode_parity/probe.exs (see ccc). +_LAG_CCC = { + 0x10EFD: 220, 0x10EFE: 220, 0x10EFF: 220, + 0x11F41: 9, 0x11F42: 9, + 0x1E08F: 230, + 0x1E4EC: 232, 0x1E4ED: 232, 0x1E4EE: 220, 0x1E4EF: 230, +} + + +def _combining_class(char: str) -> int: + """Canonical combining class, with the codepoints Python does not know yet.""" + return _LAG_CCC.get(ord(char)) or unicodedata.combining(char) + + +def _canonical_order(text: str) -> str: + """Reorder combining marks by combining class, for the codepoints Python misses. + + `unicodedata.normalize` reads a ccc of 0 for anything it thinks is + unassigned, so it leaves those marks where they are instead of sorting them + into the run. This corrective pass sorts each run of non-starters with the + merged table. + """ + chars = list(text) + start = None + for index in range(len(chars) + 1): + ccc = _combining_class(chars[index]) if index < len(chars) else 0 + if ccc == 0: + if start is not None and index - start > 1: + chars[start:index] = sorted(chars[start:index], key=_combining_class) + start = None + elif start is None: + start = index + return "".join(chars) + + +def _compose_pair(first: str, second: str) -> str | None: + composed = unicodedata.normalize("NFC", first + second) + return composed if len(composed) == 1 else None + + +def _compose(text: str) -> str: + """Canonical composition the way OTP does it, which is not the way the spec does. + + The spec composes a mark onto the nearest preceding starter unless + something between them blocks it (an intervening character whose combining + class is greater than or equal to the mark's). OTP does neither half of + that: it composes onto the *grapheme cluster's leading character* and + ignores blocking entirely. + + So `"e" + VS16 + acute` is three characters to the spec -- VS16 has a + combining class of 0 and blocks the acute -- and `"é" + VS16` to OTP. ICU + and Python agree with the spec, which makes OTP the deviant one, and this + function copies it anyway: Lightning normalises with Elixir, and step + lookup matches names as text, so a name Apollo normalises differently is a + name Apollo cannot find. + + The difference is not exotic: it reaches the two-part vowels of most Indic + scripts and any base followed by a combining-class-zero Extend character. + """ + composed = [] + for cluster in grapheme_clusters(text): + if any(_break_class(char) in _HANGUL_CLASSES for char in cluster): + # Hangul takes the standard-library path because the rule below is + # actively wrong here: jamo have a combining class of zero, so + # "reach back to the cluster lead" reaches straight past an + # intervening jamo, and `ᄀ까` (U+1100 U+AE4C) came out as `가ᄁ` — + # a Korean step name rewritten into a different one. + # + # This trades one divergence for another rather than fixing it, and + # four separate mechanisms are involved that do not all point the + # same way: a fix aimed at the obvious one makes another worse. + # Read the group 2 notes in + # `tools/unicode_parity/known_nfc_divergences.txt` before changing + # anything here. Settling it is OpenFn/apollo#655, which gates + # APOLLO_UNICODE_STEP_NAMES. + composed.append(unicodedata.normalize("NFC", cluster)) + continue + + lead, trailing = cluster[0], [] + previous_ccc = None + for char in cluster[1:]: + ccc = _combining_class(char) + # Standard blocking, but measured against the cluster's lead, which + # never moves. The spec re-bases on every class-zero character it + # passes; OTP does not, and that is the whole difference. + if previous_ccc is None or previous_ccc == 0 or previous_ccc < ccc: + merged = _compose_pair(lead, char) + if merged is not None: + lead = merged + continue + trailing.append(char) + previous_ccc = ccc + composed.append(lead) + composed.extend(trailing) + return "".join(composed) + + +def normalize_nfc(text: str) -> str: + """NFC as Elixir performs it, which is what Lightning stores. + + Two deliberate departures from `unicodedata.normalize("NFC", ...)`, both to + match Elixir: the combining classes Python's tables predate (`_LAG_CCC`), + and OTP's composition rule (`_compose`). + + KNOWN GAPS, in two unrelated mechanisms. Both are enumerated row by row in + ``tools/unicode_parity/known_nfc_divergences.txt``; `check.py` asserts that + file's row count against what it measures, so the figures are re-derivable + from the tree rather than quoted here from a corpus that may not survive + the next rebuild. Run ``elixir probe.exs`` then ``python3 check.py``. + + The first is this function's composition rule, described below. The second + is the Hangul routing in `_compose`, which is much the larger of the two + and which gates APOLLO_UNICODE_STEP_NAMES — see the comment there and + OpenFn/apollo#655. Neither is fixed; both are pinned. + + The composition gap is one shape: combining classes ``(0, 230, 0, 220)`` — + a base, a mark, any class-zero character, then a mark of *lower* class. The + minimal case is four codepoints:: + + A U+0302 U+200C U+0323 + Elixir -> U+00C2 U+200C U+0323 (composes the first mark only) + here -> U+1EAC U+200C (composes both) + + ZWNJ is routine in Persian and Indic text, so this is reachable, not + exotic. Eight structurally different blocking rules were fitted against the + corpora and none reaches zero: the shapes conflict, because the same corpus + that requires composition to reach past a class-zero character also + contains cases that require it not to. Do not "fix" this by guessing — + extend the probe and fit against its output. + + ACCEPTED. What it costs is a step lookup missing when a name in this shape + reaches lookup without being sanitized first. `sanitize_name` output is a + fixed point for every case the harness covers, which is evidence, not proof. + """ + if not text: + return text + return _compose(_canonical_order(unicodedata.normalize("NFD", text))) + + +def sanitize_name(name: str, unicode_mode: bool | None = None) -> str: + """Return `name` with every character the active rule forbids removed. + + Under the ASCII rule, letters are folded to their nearest ASCII form first + (``Café`` -> ``Cafe``) so accented names degrade into something readable + rather than losing whole words, and anything still not ASCII is dropped. + Under the permissive rule nothing is folded and nothing is dropped except + the rejected set -- the name is kept exactly as typed. + + In both modes: forbidden whitespace becomes a plain space, the result is + trimmed with exactly the set Elixir's `String.trim/1` strips, then + NFC-normalised, then capped at MAX_NAME_LENGTH graphemes without ever + cutting a grapheme in half. The result is a fixed point. + """ + if not name or not isinstance(name, str): + return name + if unicode_mode is None: + unicode_mode = unicode_names_enabled() + + text = normalize_nfc(name) + + # Forbidden-but-whitespace characters become a plain space here, before the + # ASCII fold rather than after it. A tab, a newline or a U+2028 is rejected + # either way, but the useful reading of it in a name is "a space", and doing + # it up front means both modes agree -- the fold would otherwise drop the + # non-ASCII ones outright and silently join the words either side. + text = "".join(" " if _is_forbidden(c) and c.isspace() else c for c in text) + + if not unicode_mode: + # Fold diacritics onto their base letters, then drop whatever is left + # that is not ASCII. This is the long-standing behaviour, plus a table + # for the handful of letters NFKD cannot decompose at all. NFKD also + # turns the exotic spaces (NBSP, ideographic space) into plain ones. + text = text.translate(_ASCII_TRANSLITERATIONS) + text = unicodedata.normalize("NFKD", text).encode("ascii", "ignore").decode("ascii") + + kept = [] + for char in text: + if _is_forbidden(char): + continue + if unicode_mode or char in _ASCII_ALLOWED: + kept.append(char) + + # Trim before normalising, not after. Trimming can uncover a combining mark + # that only composes once the character in front of it is gone, and + # truncating can uncover the same boundary again, so repeat until it + # settles. is_valid_name asks whether a name equals this function's output, + # so that output has to be a fixed point or a sanitised name reads as + # invalid. + text = "".join(kept) + for _ in range(_SANITIZE_PASSES): + settled = text + text = normalize_nfc(text.strip(_TRIM_CHARS)) + text = truncate_graphemes(text, MAX_NAME_LENGTH).strip(_TRIM_CHARS) + if text == settled: + return text + + raise RuntimeError( + f"sanitize_name did not settle in {_SANITIZE_PASSES} passes. Two are " + "enough for every input tested, so reaching this means an assumption " + "in normalize_nfc or truncate_graphemes has moved. Returning here " + "would hand back a name that is_valid_name then calls invalid." + ) + + +def is_valid_name(name: str, unicode_mode: bool | None = None) -> bool: + """Return True if `name` already satisfies the active rule (sanitising is a no-op).""" + if not isinstance(name, str): + return False + return sanitize_name(name, unicode_mode) == name + + +def first_invalid_char(name: str, unicode_mode: bool | None = None) -> str | None: + """Return the first character of `name` the active rule forbids, or None.""" + if unicode_mode is None: + unicode_mode = unicode_names_enabled() + for char in name: + if not is_allowed_char(char, unicode_mode): + return char + return None + + +def describe_rule(unicode_mode: bool | None = None) -> str: + """One sentence stating the active rule, for the workflow-generation prompt.""" + if unicode_mode is None: + unicode_mode = unicode_names_enabled() + if unicode_mode: + return ( + "Job names may contain anything except control characters. Letters and marks from any " + "script, punctuation, symbols and emoji are all fine, so `Vérifier l'état`, `患者確認`, " + "`Проверка данных` and `Import A/B` are all valid names. Write the name the user asked " + "for, as they wrote it — do not strip accents or transliterate." + ) + return ( + "Job names may use only unaccented English letters, digits, spaces, hyphens and underscores. " + "Write accented or non-Latin names in that form instead (`Vérifier l'état` becomes " + "`Verifier letat`)." + ) + + +def describe_rule_for_prompt(unicode_mode: bool | None = None) -> str: + """The full job-naming bullet used in the workflow-generation prompt.""" + return ( + f"{describe_rule(unicode_mode)} Names must be at most {MAX_NAME_LENGTH} characters " + "and must be unique within a workflow." + ) + + +def describe_rule_for_judge(unicode_mode: bool | None = None) -> str: + """The naming rule as a grading instruction, for the acceptance-test judges. + + `judges.load_judge` substitutes this into each rubric. + """ + if unicode_mode is None: + unicode_mode = unicode_names_enabled() + if unicode_mode: + common = ( + "Job names, job keys, trigger keys and edge `source_*`/`target_*` references must " + "contain no control characters. Nothing else about their characters is a defect: " + "accented Latin (`Vérifier l'état`), non-Latin (`患者確認`, `Проверка данных`), " + "punctuation, symbols and emoji are all valid. Do not flag a name for being " + "non-English, accented, or containing punctuation." + ) + else: + common = ( + "Job names, job keys, trigger keys and edge `source_*`/`target_*` references must use " + "only unaccented English letters, digits, spaces, hyphens and underscores. Flag " + "anything else: an accented or non-Latin name that reached the output means the " + "service failed to fold it." + ) + return ( + f"{common} Job names must be unique within a workflow and at most " + f"{MAX_NAME_LENGTH} characters." + ) + + +def normalize_for_lookup(name: str) -> str: + """Fold a name into the key used to match it against a job key or job name. + + Case-folded, NFC-normalised, and every character that is not a letter, mark + or digit replaced with a hyphen. Unicode-aware in both modes, so a + non-Latin name folds to itself rather than to the empty string. + + Case folding rather than lowercasing, so that the pairs `.lower()` leaves + distinct still match: Greek final sigma against medial sigma, and German + ss against sz. + + Callers must treat an empty result as "no fuzzy match available" rather + than as a key -- see ``yaml_utils.find_job_in_yaml``. + """ + if not isinstance(name, str): + return "" + text = normalize_nfc(name).casefold() + folded = "".join( + char if unicodedata.category(char)[0] in _LETTER_MARK_DIGIT else "-" for char in text + ) + return folded.strip("-") diff --git a/services/testing/judges.py b/services/testing/judges.py index 8d416a9f..8005e7f4 100644 --- a/services/testing/judges.py +++ b/services/testing/judges.py @@ -9,17 +9,48 @@ # rules - bullet rules that apply to every evaluation under this judge +The token `{name_rule}` in either section is replaced at load time with the +active step-name rule, so the judges never restate it as static prose. + To add a new judge: drop a new markdown file in `services/testing/judges/` and reference its filename (without `.md`) in a spec's `judges:` frontmatter field. Default judge is `general`. """ +import re from dataclasses import dataclass from pathlib import Path +from name_rules import describe_rule_for_judge _JUDGES_DIR = Path(__file__).parent / "judges" +#: A judge that restated the rule as static prose would go stale the moment +#: APOLLO_UNICODE_STEP_NAMES moved, and would then either pass names the +#: sanitizer mangles or fail names it correctly leaves alone. +_NAME_RULE_TOKEN = "{name_rule}" + +#: A bare `{lower_snake_case}` run. Prose and code samples in these files use +#: braces freely (`create({ name: $.x })`, `() => {}`), but never in this shape. +_PLACEHOLDER = re.compile(r"\{[a-z_][a-z0-9_]*\}") + + +def _reject_unsubstituted_placeholders(name: str, path: Path, text: str) -> None: + """Raise if any placeholder survived substitution. + + Substitution is `str.replace`, which is a silent no-op when the token is + misspelled. A judge that meant to state the active naming rule and instead + stated nothing would grade every workflow name as acceptable, and nothing + would say so. Not every judge needs the rule — the code-quality one grades + job bodies — so a missing token is fine; a *mangled* one is not. + """ + leftover = sorted(set(_PLACEHOLDER.findall(text))) + if leftover: + raise ValueError( + f"Judge '{name}' ({path}) has unsubstituted placeholders: {', '.join(leftover)}. " + f"The only one this loader fills is {_NAME_RULE_TOKEN}.", + ) + @dataclass class JudgeConfig: @@ -37,9 +68,10 @@ def load_judge(name: str) -> JudgeConfig: if not path.exists(): available = sorted(p.stem for p in _JUDGES_DIR.glob("*.md")) raise FileNotFoundError( - f"Judge '{name}' not found at {path}. Available: {available}" + f"Judge '{name}' not found at {path}. Available: {available}", ) - text = path.read_text() + text = path.read_text().replace(_NAME_RULE_TOKEN, describe_rule_for_judge()) + _reject_unsubstituted_placeholders(name, path, text) return JudgeConfig( name=name, role=_extract_section(text, "role").strip(), diff --git a/services/testing/judges/general.md b/services/testing/judges/general.md index c9fa7715..3fafafd6 100644 --- a/services/testing/judges/general.md +++ b/services/testing/judges/general.md @@ -8,7 +8,7 @@ You will be given (a) optional universal rules that apply to every response, (b) - Every job, trigger, and edge in a returned workflow YAML has a non-empty `id` field. - Every job in a returned workflow YAML has a `body` that is either real adaptor code or the canonical empty-job placeholder `// Add operations here`. Reject other placeholder-style markers such as `// PLACEHOLDER`, numbered placeholders, `TODO`, `FIXME`, or `` — these are leftover generation artifacts. -- Job names and edge source/target/key references in a returned workflow YAML use only letters, numbers, spaces, hyphens, and underscores. +- {name_rule} - When the user is editing an existing workflow, every job and edge from the existing YAML is present and unchanged in the response unless the user asked to remove or modify it. Additions are fine. - Any returned YAML parses as valid YAML. - Never claim an adaptor function or signature doesn't exist or is wrong unless adaptor documentation provided in this evaluation contradicts it — you do not have reliable knowledge of adaptor APIs. diff --git a/services/testing/judges/openfn_workflow_expert.md b/services/testing/judges/openfn_workflow_expert.md index fa5cbfe3..c4995aab 100644 --- a/services/testing/judges/openfn_workflow_expert.md +++ b/services/testing/judges/openfn_workflow_expert.md @@ -17,7 +17,7 @@ These mirror the workflow-generation contract. Reject the YAML if any are violat - Output parses as valid YAML. - Every job, trigger, and edge in the returned workflow YAML has a non-empty `id` field. (The workflow_chat service auto-generates IDs for newly added items during post-processing, so the YAML you grade should already have them — flag any item that is still missing one.) - Every job has a `body` that is either real adaptor code or the canonical empty-job placeholder `// Add operations here`. Reject other placeholder markers such as `// PLACEHOLDER`, numbered placeholders, `TODO`, `FIXME`, or `` — these are leftover generation artifacts. -- Job names and edge `source_*` / `target_*` / key references contain only letters, numbers, spaces, hyphens, and underscores. Job names must be unique within a workflow and under 100 characters. +- {name_rule} - When the user is editing an existing workflow, every job and edge from the existing YAML is present and unchanged in the response unless the user asked to remove or modify it. Additions are fine. ## Triggers diff --git a/services/testing/yaml_assertions.py b/services/testing/yaml_assertions.py index c2136e34..37cccfe3 100644 --- a/services/testing/yaml_assertions.py +++ b/services/testing/yaml_assertions.py @@ -4,6 +4,14 @@ import re import yaml +from name_rules import ( + MAX_EDGE_KEY_LENGTH, + describe_rule, + grapheme_length, + is_control_char, + is_valid_name, + truncate_graphemes, +) def path_matches(path, allowed_paths: list[str]) -> bool: @@ -40,7 +48,7 @@ def compare(o, n, path): compare(oi, ni, path + [str(i)]) elif o != n: diff = "\n".join( - difflib.unified_diff([str(o)], [str(n)], fromfile="original", tofile="response", lineterm="") + difflib.unified_diff([str(o)], [str(n)], fromfile="original", tofile="response", lineterm=""), ) raise AssertionError(f"Value mismatch at {'.'.join(path)}:\n{diff}") @@ -49,12 +57,12 @@ def compare(o, n, path): except AssertionError as e: diff = "\n".join( difflib.unified_diff( - yaml.dump(orig, sort_keys=True).splitlines(), - yaml.dump(new, sort_keys=True).splitlines(), + yaml.dump(orig, sort_keys=True, allow_unicode=True).splitlines(), + yaml.dump(new, sort_keys=True, allow_unicode=True).splitlines(), fromfile="original", tofile="response", lineterm="", - ) + ), ) raise AssertionError(f"{context}\n{e}\nFull YAML diff:\n{diff}") @@ -98,27 +106,103 @@ def assert_yaml_jobs_have_body(yaml_str_or_dict, context: str = "") -> None: assert job_data["body"] not in (None, "", []), f"{context}: Job '{job_key}' has empty 'body' field." -_SPECIAL_CHAR = re.compile(r"[^a-zA-Z0-9\s\-_]") +def assert_no_special_chars(yaml_str_or_dict, context: str = "") -> None: + """Assert every name in the workflow obeys the active step-name rule. + + Covers job keys, job names, trigger keys and edge endpoint references, and + uses `is_valid_name`, so it checks the length cap as well as the character + set. Checking only job names with a character-set regex is how a name that + was pushed over 100 characters by a uniquifying suffix, and a trigger key + that was never sanitized at all, both went unnoticed. + Also checks referential integrity: every edge endpoint must name something + that exists. A character check alone passes a perfectly well-formed name + that happens to point at no step, which is what a broken key mapping or a + stray sentinel produces. -def assert_no_special_chars(yaml_str_or_dict, context: str = "") -> None: - """Assert job names and edge source/target/keys use only [A-Za-z0-9 _-].""" + The rule is whichever one `name_rules` has active, so this assertion tracks + the sanitizer instead of restating it. + """ data = _as_dict(yaml_str_or_dict) def check(value, descriptor): - match = _SPECIAL_CHAR.search(value) - assert not match, f"{context}: {descriptor} '{value}' contains special character '{match.group(0)}'" + assert is_valid_name(value), ( + f"{context}: {descriptor} '{value}' does not obey the step-name rule. {describe_rule()}" + ) - for job_key, job_data in data.get("jobs", {}).items(): - if job_data.get("name"): + # `jobs:` with nothing under it parses as None, which is valid YAML. + jobs = data.get("jobs") or {} + triggers = data.get("triggers") or {} + edges = data.get("edges") or {} + + for job_key, job_data in jobs.items(): + check(str(job_key), f"Job key '{job_key}'") + if (job_data or {}).get("name"): check(str(job_data["name"]), f"Job '{job_key}' name") - for edge_key, edge_data in data.get("edges", {}).items(): - for field in ("source_job", "target_job"): - if edge_data.get(field): - check(str(edge_data[field]), f"Edge '{edge_key}' {field}") + for trigger_key in triggers: + check(str(trigger_key), f"Trigger key '{trigger_key}'") + + for edge_key, raw_edge in edges.items(): + edge = raw_edge or {} + for field, targets, what in ( + ("source_job", jobs, "job"), + ("target_job", jobs, "job"), + ("source_trigger", triggers, "trigger"), + ("target_trigger", triggers, "trigger"), + ): + if edge.get(field): + value = str(edge[field]) + check(value, f"Edge '{edge_key}' {field}") + assert value in targets, ( + f"{context}: Edge '{edge_key}' {field} '{value}' is not a {what} " + f"in this workflow (have: {sorted(targets)})." + ) + + _check_edge_key(edge_key, edge, context) + + +def _check_edge_key(edge_key: str, edge_data: dict, context: str) -> None: + """Assert an edge's key is the label its own endpoints imply. + + Deliberately does not split the key on "->", which is a legal run of + characters inside a step name under the permissive rule. Mirrors + `_edge_label` in workflow_chat: endpoints known means the key is derived. + """ + edge_key = str(edge_key) + + assert grapheme_length(edge_key) <= MAX_EDGE_KEY_LENGTH, ( + f"{context}: Edge key '{edge_key}' is {grapheme_length(edge_key)} graphemes, " + f"over the {MAX_EDGE_KEY_LENGTH} limit." + ) + + source = edge_data.get("source_job") or edge_data.get("source_trigger") + target = edge_data.get("target_job") or edge_data.get("target_trigger") + + if not (source and target): + # Nothing to derive the label from; just make sure it is storable. + assert not any(is_control_char(ch) for ch in edge_key), ( + f"{context}: Edge key '{edge_key}' contains a control character." + ) + return + + label = f"{source}->{target}" + + # The sanitizer suffixes duplicate labels and makes room inside the cap, so + # the key is a grapheme prefix of the label, optionally with a `-N` tail. + candidates = [edge_key] + tail = _COLLISION_SUFFIX.search(edge_key) + if tail: + candidates.append(edge_key[: tail.start()]) + + assert any( + candidate == truncate_graphemes(label, grapheme_length(candidate)) + for candidate in candidates + ), ( + f"{context}: Edge key '{edge_key}' does not match its own endpoints " + f"(expected '{truncate_graphemes(label, MAX_EDGE_KEY_LENGTH)}', " + f"optionally trimmed for a -N suffix)." + ) + - if "->" in edge_key: - source_part, target_part = edge_key.split("->", 1) - check(source_part, f"Edge key '{edge_key}' source part") - check(target_part, f"Edge key '{edge_key}' target part") +_COLLISION_SUFFIX = re.compile(r"-\d+$") diff --git a/services/workflow_chat/gen_project_prompt.py b/services/workflow_chat/gen_project_prompt.py index 35eeaf29..943f3b21 100644 --- a/services/workflow_chat/gen_project_prompt.py +++ b/services/workflow_chat/gen_project_prompt.py @@ -1,6 +1,9 @@ import os -from .config_loader import ConfigLoader + +from name_rules import describe_rule_for_prompt + from .available_adaptors import get_adaptors_string +from .config_loader import ConfigLoader base_dir = os.path.dirname(os.path.abspath(__file__)) config_path = os.path.join(base_dir, "gen_project_config.yaml") @@ -10,18 +13,45 @@ config = config_loader.config +NAME_RULE_TOKEN = "{name_rule}" + + +def _general_knowledge(): + """Render the general-knowledge prompt, with the active step-name rule in it. + + `str.format` ignores a keyword the template does not use, so dropping the + token from the yaml would silently ship a prompt that states no naming rule + at all while the sanitizer carried on enforcing one. Check for it first. + """ + rule = describe_rule_for_prompt() + rendered = config_loader.get_prompt("general_knowledge").format( + adaptors=get_adaptors_string(), + name_rule=rule, + ) + + # Check the *rendered* text, not the template. A doubled `{{name_rule}}` is + # how `.format` escapes a literal brace: it contains the token as a + # substring, so a template-side check waves it through, and what reaches the + # model is the four words "{name_rule}" rather than any rule at all. + if NAME_RULE_TOKEN in rendered or rule not in rendered: + raise ValueError( + f"The general_knowledge prompt did not render the step-name rule. It must contain " + f"exactly {NAME_RULE_TOKEN}, unescaped and unduplicated — the rule stated to the " + f"model and the rule the sanitizer enforces have to come from the same place.", + ) + return rendered + + def build_system_message(mode_config, existing_yaml=None): """Build system message with mode-specific configuration.""" system_message = config_loader.get_prompt("main_system_prompt").format( mode_specific_intro=config_loader.get_prompt(mode_config["intro"]), yaml_structure=config_loader.get_prompt(mode_config["yaml_structure"]), - general_knowledge=config_loader.get_prompt("general_knowledge").format( - adaptors=get_adaptors_string() - ), + general_knowledge=_general_knowledge(), output_format=config_loader.get_prompt(mode_config["output_format"]), mode_specific_answering_instructions=config_loader.get_prompt( - mode_config["answering_instructions"] - ) + mode_config["answering_instructions"], + ), ) if existing_yaml: @@ -53,7 +83,7 @@ def build_prompt(content, existing_yaml=None, errors=None, history=None, read_on "yaml_structure": "yaml_structure_without_ids", "output_format": "unstructured_output_format", "answering_instructions": "readonly_mode_answering_instructions", - "yaml_prefix": "\nFor context, the user is viewing this read-only YAML:\n" + "yaml_prefix": "\nFor context, the user is viewing this read-only YAML:\n", } user_content = content elif errors: @@ -62,7 +92,7 @@ def build_prompt(content, existing_yaml=None, errors=None, history=None, read_on "yaml_structure": "yaml_structure_with_ids", "output_format": "json_output_format", "answering_instructions": "error_mode_answering_instructions", - "yaml_prefix": "\nThis is the YAML causing the error:\n" + "yaml_prefix": "\nThis is the YAML causing the error:\n", } user_content = f"{content}\nThis is the error message:\n{errors}" if content else f"\nThis is the error message:\n{errors}" else: @@ -71,7 +101,7 @@ def build_prompt(content, existing_yaml=None, errors=None, history=None, read_on "yaml_structure": "yaml_structure_with_ids", "output_format": "json_output_format", "answering_instructions": "normal_mode_answering_instructions", - "yaml_prefix": "\nFor context, the user is currently editing this YAML:\n" + "yaml_prefix": "\nFor context, the user is currently editing this YAML:\n", } user_content = content diff --git a/services/workflow_chat/gen_project_prompts.yaml b/services/workflow_chat/gen_project_prompts.yaml index ae5b4ca7..9ca2743a 100644 --- a/services/workflow_chat/gen_project_prompts.yaml +++ b/services/workflow_chat/gen_project_prompts.yaml @@ -151,7 +151,7 @@ prompts: ## Rules for Job Identification 1. Each distinct action should become its own job - 2. Jobs should have clear, descriptive names. Job names cannot have special characters and must be under 100 characters. All job names must be unique within a workflow. + 2. Jobs should have clear, descriptive names. {name_rule} 3. Jobs should be connected in a logical sequence 4. Choose the most specific adaptor available for each operation 5. When in doubt about an adaptor, use `@openfn/language-common@latest` for data transformation and `@openfn/language-http@latest` for platform integrations. diff --git a/services/workflow_chat/tests/test_pass_fail.py b/services/workflow_chat/tests/test_pass_fail.py index 832d8621..22a34929 100644 --- a/services/workflow_chat/tests/test_pass_fail.py +++ b/services/workflow_chat/tests/test_pass_fail.py @@ -218,9 +218,9 @@ def test_rename_two_jobs_commcare(): def test_special_characters(): print("==================TEST==================") - print("Description: Ask for a workflow that uses platforms with special characters in their names. " - "Verify that diacritics and punctuation removed/normalised correctly (e.g. é->e) in job names " - "in the generated YAML.") + print("Description: Ask for a workflow that uses platforms with accents and punctuation in their " + "names. Verify the job names in the generated YAML obey whichever step-name rule is active " + "(see name_rules): folded to ASCII by default, kept as typed with APOLLO_UNICODE_STEP_NAMES on.") existing_yaml = """""" history = [ {"role": "user", "content": "Create a workflow that retrieves data from mwater, google sheets, netsuite, ferntech.io and processed it and sends it to frappé"}, diff --git a/services/workflow_chat/tests/unit/client/test_sanitize.py b/services/workflow_chat/tests/unit/client/test_sanitize.py index 3bfd30a9..635c0ba4 100644 --- a/services/workflow_chat/tests/unit/client/test_sanitize.py +++ b/services/workflow_chat/tests/unit/client/test_sanitize.py @@ -1,12 +1,57 @@ +"""Job-name sanitizing, in both step-name modes. + +The rule is switchable at runtime (see `name_rules`), so every test here pins +the mode it is testing with the APOLLO_UNICODE_STEP_NAMES environment variable +rather than relying on whatever the environment happens to be set to. +""" + +import unicodedata + +import pytest +import yaml +from name_rules import ( + MAX_EDGE_KEY_LENGTH, + MAX_NAME_LENGTH, + UNICODE_FLAG_ENV, + grapheme_length, +) +from testing.yaml_assertions import assert_no_special_chars from workflow_chat.workflow_chat import AnthropicClient -def test_sanitize_job_names_removes_diacritics(): +@pytest.fixture +def ascii_mode(monkeypatch: pytest.MonkeyPatch) -> None: + """Pin the restrictive ASCII rule (the default).""" + monkeypatch.setenv(UNICODE_FLAG_ENV, "false") + + +@pytest.fixture +def unicode_mode(monkeypatch: pytest.MonkeyPatch) -> None: + """Pin the permissive Unicode rule.""" + monkeypatch.setenv(UNICODE_FLAG_ENV, "true") + + +# --- default (ASCII) mode --------------------------------------------------- + + +@pytest.mark.usefixtures("ascii_mode") +def test_default_mode_is_ascii(monkeypatch: pytest.MonkeyPatch) -> None: + """With the flag unset at all, the ASCII rule applies.""" + monkeypatch.delenv(UNICODE_FLAG_ENV, raising=False) + yaml_data = {"jobs": {"job1": {"name": "Café München"}}} + + AnthropicClient.sanitize_job_names(yaml_data) + + assert yaml_data["jobs"]["job1"]["name"] == "Cafe Munchen" + + +@pytest.mark.usefixtures("ascii_mode") +def test_ascii_mode_removes_diacritics() -> None: yaml_data = { "jobs": { "job1": {"name": "Café München"}, "job2": {"name": "Naïve résumé"}, - } + }, } AnthropicClient.sanitize_job_names(yaml_data) @@ -15,12 +60,13 @@ def test_sanitize_job_names_removes_diacritics(): assert yaml_data["jobs"]["job2"]["name"] == "Naive resume" -def test_sanitize_job_names_removes_special_characters(): +@pytest.mark.usefixtures("ascii_mode") +def test_ascii_mode_removes_special_characters() -> None: yaml_data = { "jobs": { "job1": {"name": "Job@#$%Name!"}, "job2": {"name": "Process&Data*With+Symbols"}, - } + }, } AnthropicClient.sanitize_job_names(yaml_data) @@ -29,7 +75,8 @@ def test_sanitize_job_names_removes_special_characters(): assert yaml_data["jobs"]["job2"]["name"] == "ProcessDataWithSymbols" -def test_sanitize_job_names_preserves_allowed_characters(): +@pytest.mark.usefixtures("ascii_mode") +def test_ascii_mode_preserves_allowed_characters() -> None: yaml_data = {"jobs": {"job1": {"name": "Valid Job-Name_123"}}} AnthropicClient.sanitize_job_names(yaml_data) @@ -37,7 +84,1536 @@ def test_sanitize_job_names_preserves_allowed_characters(): assert yaml_data["jobs"]["job1"]["name"] == "Valid Job-Name_123" -def test_sanitize_job_names_handles_empty_data(): +def test_handles_empty_data() -> None: assert AnthropicClient.sanitize_job_names(None) is None assert AnthropicClient.sanitize_job_names({}) is None assert AnthropicClient.sanitize_job_names({"jobs": {}}) is None + + +@pytest.mark.parametrize("payload", [[], "not a workflow", 42, 0.5, {"jobs": "nope"}]) +def test_tolerates_a_payload_that_is_not_a_workflow(payload: object) -> None: + """One call site swallows every exception from this, so raising loses the YAML silently.""" + assert AnthropicClient.sanitize_job_names(payload) is None + + +# --- Unicode mode ----------------------------------------------------------- + + +@pytest.mark.usefixtures("unicode_mode") +def test_unicode_mode_keeps_accents_and_apostrophes() -> None: + yaml_data = { + "jobs": { + "job1": {"name": "Vérifier l'état"}, + "job2": {"name": "O'Brien's Step"}, + }, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + assert yaml_data["jobs"]["job1"]["name"] == "Vérifier l'état" + assert yaml_data["jobs"]["job2"]["name"] == "O'Brien's Step" + + +@pytest.mark.usefixtures("unicode_mode") +def test_unicode_mode_keeps_non_latin_scripts() -> None: + yaml_data = { + "jobs": { + "job1": {"name": "患者確認"}, + "job2": {"name": "Проверка данных"}, + "job3": {"name": "ß straße"}, + "job4": {"name": "रोगी की जाँच"}, + }, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + assert yaml_data["jobs"]["job1"]["name"] == "患者確認" + assert yaml_data["jobs"]["job2"]["name"] == "Проверка данных" + assert yaml_data["jobs"]["job3"]["name"] == "ß straße" + assert yaml_data["jobs"]["job4"]["name"] == "रोगी की जाँच" + + +@pytest.mark.usefixtures("unicode_mode") +def test_unicode_mode_keeps_symbols_and_punctuation() -> None: + """The permissive rule strips nothing but control characters.""" + yaml_data = { + "jobs": { + "job1": {"name": "Résumé ✅ @#$%"}, + "job2": {"name": "Import A/B"}, + "job3": {"name": "50% & rising"}, + }, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + assert yaml_data["jobs"]["job1"]["name"] == "Résumé ✅ @#$%" + assert yaml_data["jobs"]["job2"]["name"] == "Import A/B" + assert yaml_data["jobs"]["job3"]["name"] == "50% & rising" + + +@pytest.mark.usefixtures("unicode_mode") +def test_unicode_mode_keeps_an_arrow_inside_a_name() -> None: + """Nothing anywhere splits an edge key on "->" — it is a label, not identity. + + The edge label is rebuilt from `source_job`/`target_job`, so a name + containing "->" cannot dangle an edge. + """ + yaml_data = { + "jobs": {"a->b": {"name": "a->b"}, "c": {"name": "C"}}, + "edges": { + "a->b->c": {"source_job": "a->b", "target_job": "c"}, + }, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + assert yaml_data["jobs"]["a->b"]["name"] == "a->b" + assert list(yaml_data["jobs"]) == ["a->b", "c"] + edge = yaml_data["edges"]["a->b->c"] + assert edge["source_job"] == "a->b" + assert edge["target_job"] == "c" + + +# --- control characters, rejected in every mode ----------------------------- + + +@pytest.mark.parametrize("mode", ["false", "true"]) +def test_control_characters_are_rejected_in_every_mode(monkeypatch: pytest.MonkeyPatch, mode: str) -> None: + """A NUL byte crashes Lightning's Postgres insert, so it never gets through.""" + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + yaml_data = {"jobs": {"job1": {"name": "Fetch\x00Data\x1b[31m\x9b"}}} + + AnthropicClient.sanitize_job_names(yaml_data) + + name = yaml_data["jobs"]["job1"]["name"] + assert "\x00" not in name + assert "\x1b" not in name + assert "\x9b" not in name + # Only the controls go. The "[" is an ordinary character, so it survives + # under the permissive rule and is dropped by the ASCII whitelist. + assert name == ("FetchData[31m" if mode == "true" else "FetchData31m") + + +@pytest.mark.parametrize("mode", ["false", "true"]) +def test_noncharacters_are_rejected_in_every_mode(monkeypatch: pytest.MonkeyPatch, mode: str) -> None: + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + yaml_data = {"jobs": {"job1": {"name": "Fetch\ufffeData\uffff"}}} + + AnthropicClient.sanitize_job_names(yaml_data) + + assert yaml_data["jobs"]["job1"]["name"] == "FetchData" + + +@pytest.mark.parametrize("mode", ["false", "true"]) +def test_tabs_and_newlines_become_spaces(monkeypatch: pytest.MonkeyPatch, mode: str) -> None: + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + yaml_data = {"jobs": {"job1": {"name": "Fetch\tthe\ndata"}}} + + AnthropicClient.sanitize_job_names(yaml_data) + + assert yaml_data["jobs"]["job1"]["name"] == "Fetch the data" + + +@pytest.mark.parametrize("mode", ["false", "true"]) +def test_names_are_trimmed_and_capped(monkeypatch: pytest.MonkeyPatch, mode: str) -> None: + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + yaml_data = {"jobs": {"job1": {"name": " Fetch Data "}, "job2": {"name": "a" * 200}}} + + AnthropicClient.sanitize_job_names(yaml_data) + + assert yaml_data["jobs"]["job1"]["name"] == "Fetch Data" + assert len(yaml_data["jobs"]["job2"]["name"]) == MAX_NAME_LENGTH + + +# --- collisions ------------------------------------------------------------- + + +@pytest.mark.usefixtures("ascii_mode") +def test_names_that_sanitize_to_the_same_string_stay_distinct() -> None: + """`Résumé` and `Resume` both fold to `Resume` under the ASCII rule. + + The prompt requires job names to be unique within a workflow, and Lightning + enforces it with a unique index, so the second one has to be nudged. + """ + yaml_data = {"jobs": {"a": {"name": "Résumé"}, "b": {"name": "Resume"}}} + + AnthropicClient.sanitize_job_names(yaml_data) + + names = [job["name"] for job in yaml_data["jobs"].values()] + assert names == ["Resume", "Resume-2"] + assert len(set(names)) == len(names) + + +@pytest.mark.usefixtures("ascii_mode") +def test_job_keys_that_sanitize_to_the_same_string_stay_distinct() -> None: + yaml_data = { + "jobs": {"résumé": {"name": "One"}, "resume": {"name": "Two"}}, + "edges": { + "résumé->resume": {"source_job": "résumé", "target_job": "resume"}, + }, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + assert list(yaml_data["jobs"]) == ["resume", "resume-2"] + edge = yaml_data["edges"]["resume->resume-2"] + assert edge["source_job"] == "resume" + assert edge["target_job"] == "resume-2" + + +@pytest.mark.usefixtures("ascii_mode") +def test_name_that_sanitizes_away_falls_back_to_the_job_key() -> None: + """A wholly non-Latin name folds to nothing under the ASCII rule. + + An empty name fails Lightning's `validate_required`, so fall back to + something rather than emitting a workflow that cannot be saved. + """ + yaml_data = {"jobs": {"check-patient": {"name": "患者確認"}}} + + AnthropicClient.sanitize_job_names(yaml_data) + + assert yaml_data["jobs"]["check-patient"]["name"] == "check-patient" + + +@pytest.mark.usefixtures("ascii_mode") +def test_key_that_sanitizes_away_falls_back_to_a_positional_key() -> None: + yaml_data = {"jobs": {"患者確認": {"name": "Check Patient"}}} + + AnthropicClient.sanitize_job_names(yaml_data) + + assert list(yaml_data["jobs"]) == ["step-1"] + assert yaml_data["jobs"]["step-1"]["name"] == "Check Patient" + + +# --- the jobs-key / edge-reference asymmetry -------------------------------- + + +@pytest.mark.usefixtures("ascii_mode") +def test_job_keys_and_edge_references_stay_in_step() -> None: + """Edges must still point at jobs that exist after sanitizing. + + Job keys used to be left alone while edge references were sanitized, so a + workflow keyed on a non-ASCII name came out with every edge dangling. + """ + yaml_data = { + "jobs": { + "Vérifier-l-état": {"name": "Vérifier l'état"}, + "envoyer-données": {"name": "Envoyer données"}, + }, + "triggers": {"webhook": {"type": "webhook"}}, + "edges": { + "webhook->Vérifier-l-état": { + "source_trigger": "webhook", + "target_job": "Vérifier-l-état", + }, + "Vérifier-l-état->envoyer-données": { + "source_job": "Vérifier-l-état", + "target_job": "envoyer-données", + }, + }, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + job_keys = set(yaml_data["jobs"]) + assert job_keys == {"Verifier-l-etat", "envoyer-donnees"} + + for edge_key, edge in yaml_data["edges"].items(): + source, target = edge_key.split("->", 1) + assert target in job_keys, f"edge key '{edge_key}' targets a job that does not exist" + if source != "webhook": + assert source in job_keys, f"edge key '{edge_key}' sources a job that does not exist" + for field in ("source_job", "target_job"): + if field in edge: + assert edge[field] in job_keys, f"edge {field} '{edge[field]}' is not a job" + + +@pytest.mark.usefixtures("unicode_mode") +def test_unicode_mode_leaves_a_valid_workflow_untouched() -> None: + yaml_data = { + "jobs": { + "Vérifier-l-état": {"name": "Vérifier l'état"}, + "患者確認": {"name": "患者確認"}, + }, + "edges": { + "Vérifier-l-état->患者確認": { + "source_job": "Vérifier-l-état", + "target_job": "患者確認", + }, + }, + } + before = yaml_data.copy() + + AnthropicClient.sanitize_job_names(yaml_data) + + assert list(yaml_data["jobs"]) == ["Vérifier-l-état", "患者確認"] + assert yaml_data["edges"] == before["edges"] + + +@pytest.mark.usefixtures("ascii_mode") +def test_an_edge_with_no_usable_endpoints_keeps_its_key() -> None: + """Only when there is nothing to derive a label from. + + An edge that *does* have endpoints gets the derived label even if its key + has no arrow — see test_an_edge_key_with_no_arrow_still_gets_the_derived_label. + """ + yaml_data = { + "jobs": {"a": {"name": "A"}}, + "edges": {"some-edge": {"condition_type": "always"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + assert list(yaml_data["edges"]) == ["some-edge"] + + +# --- two edges between the same pair ------------------------------------------ + + +@pytest.mark.usefixtures("ascii_mode") +def test_two_edges_between_the_same_pair_both_survive() -> None: + """An on_success and an on_failure edge between two steps is an ordinary workflow. + + The label is derived from the endpoints, which is not injective, so keying + on the bare label would silently drop one of the two edges. + """ + yaml_data = { + "jobs": {"A": {"name": "A"}, "B": {"name": "B"}}, + "edges": { + "A->B": {"source_job": "A", "target_job": "B", "condition_type": "on_job_success"}, + "A->B (on failure)": { + "source_job": "A", "target_job": "B", "condition_type": "on_job_failure", + }, + }, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + conditions = sorted(edge["condition_type"] for edge in yaml_data["edges"].values()) + assert conditions == ["on_job_failure", "on_job_success"] + for edge in yaml_data["edges"].values(): + assert edge["source_job"] == "A" + assert edge["target_job"] == "B" + + +@pytest.mark.usefixtures("ascii_mode") +def test_three_edges_between_the_same_pair_all_survive() -> None: + yaml_data = { + "jobs": {"A": {"name": "A"}, "B": {"name": "B"}}, + "edges": { + f"A->B ({n})": {"source_job": "A", "target_job": "B", "n": n} + for n in range(3) + }, + } + + expected = sorted(edge["n"] for edge in yaml_data["edges"].values()) + + AnthropicClient.sanitize_job_names(yaml_data) + + assert sorted(edge["n"] for edge in yaml_data["edges"].values()) == expected + + +# --- the uniquifying suffix must live inside the cap -------------------------- + + +@pytest.mark.parametrize("mode", ["false", "true"]) +def test_uniquifying_suffix_does_not_push_a_name_over_the_cap( + monkeypatch: pytest.MonkeyPatch, mode: str, +) -> None: + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + yaml_data = { + "jobs": { + "a": {"name": "x" * MAX_NAME_LENGTH}, + "b": {"name": "x" * MAX_NAME_LENGTH}, + "c": {"name": "x" * MAX_NAME_LENGTH}, + }, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + names = [job["name"] for job in yaml_data["jobs"].values()] + assert len(set(names)) == len(names), "names collapsed onto each other" + for name in names: + assert grapheme_length(name) <= MAX_NAME_LENGTH + + +@pytest.mark.parametrize("mode", ["false", "true"]) +def test_uniquifying_long_job_keys_stays_inside_the_cap( + monkeypatch: pytest.MonkeyPatch, mode: str, +) -> None: + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + long_key = "k" * MAX_NAME_LENGTH + yaml_data = {"jobs": {long_key: {"name": "A"}, long_key + "!": {"name": "B"}}} + + AnthropicClient.sanitize_job_names(yaml_data) + + keys = list(yaml_data["jobs"]) + assert len(set(keys)) == len(keys) + for key in keys: + assert grapheme_length(key) <= MAX_NAME_LENGTH + + +# --- references that sanitize away ------------------------------------------- + + +@pytest.mark.usefixtures("ascii_mode") +def test_a_reference_that_sanitizes_away_does_not_leak_the_raw_value() -> None: + """Returning the original on an empty result put raw non-ASCII back into the YAML.""" + yaml_data = { + "jobs": {"a": {"name": "A"}}, + "edges": {"患者->a": {"source_job": "患者", "target_job": "a"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + edge = next(iter(yaml_data["edges"].values())) + assert edge["source_job"] == AnthropicClient.UNRESOLVED_REFERENCE + assert "患者" not in str(yaml_data) + + +# --- triggers ----------------------------------------------------------------- + + +@pytest.mark.usefixtures("ascii_mode") +def test_trigger_keys_and_references_are_sanitized_too() -> None: + """Triggers were read for the edge label but never sanitized or remapped.""" + yaml_data = { + "jobs": {"a": {"name": "A"}}, + "triggers": {"ウェブフック": {"type": "webhook"}}, + "edges": {"ウェブフック->a": {"source_trigger": "ウェブフック", "target_job": "a"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + trigger_key = next(iter(yaml_data["triggers"])) + assert trigger_key.isascii() + edge_key, edge = next(iter(yaml_data["edges"].items())) + assert edge["source_trigger"] == trigger_key + assert edge_key == f"{trigger_key}->a" + assert "ウェブフック" not in str(yaml_data) + + +@pytest.mark.usefixtures("unicode_mode") +def test_permissive_mode_leaves_a_non_latin_trigger_alone() -> None: + yaml_data = { + "jobs": {"a": {"name": "A"}}, + "triggers": {"ウェブフック": {"type": "webhook"}}, + "edges": {"ウェブフック->a": {"source_trigger": "ウェブフック", "target_job": "a"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + assert list(yaml_data["triggers"]) == ["ウェブフック"] + assert list(yaml_data["edges"]) == ["ウェブフック->a"] + + +# --- jobs and triggers must not share a namespace ----------------------------- + + +@pytest.mark.usefixtures("ascii_mode") +def test_a_trigger_and_a_job_with_the_same_original_key_stay_separate() -> None: + """One shared mapping let the jobs pass overwrite the trigger's entry. + + The edge's source_trigger then pointed at a job and the trigger was + orphaned, which reads as a valid workflow and is not one. + """ + yaml_data = { + "triggers": {"Café": {"type": "webhook"}}, + "jobs": {"Cafe": {"name": "One"}, "Café": {"name": "Two"}}, + "edges": {"Café->Cafe": {"source_trigger": "Café", "target_job": "Cafe"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + trigger_key = next(iter(yaml_data["triggers"])) + edge = next(iter(yaml_data["edges"].values())) + + assert edge["source_trigger"] == trigger_key, "trigger reference was bound to a job" + assert edge["source_trigger"] not in yaml_data["jobs"] or trigger_key in yaml_data["jobs"] + assert edge["target_job"] in yaml_data["jobs"] + + +@pytest.mark.usefixtures("unicode_mode") +def test_trailing_whitespace_cannot_collide_a_trigger_onto_a_job() -> None: + """Permissive mode reaches the same collision through trimming.""" + yaml_data = { + "triggers": {"hook ": {"type": "webhook"}}, + "jobs": {"hook": {"name": "A"}, "hook ": {"name": "B"}}, + "edges": {"hook ->hook": {"source_trigger": "hook ", "target_job": "hook"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + edge = next(iter(yaml_data["edges"].values())) + assert edge["source_trigger"] in yaml_data["triggers"] + assert edge["target_job"] in yaml_data["jobs"] + + +# --- the unresolved sentinel -------------------------------------------------- + + +@pytest.mark.usefixtures("ascii_mode") +def test_the_sentinel_cannot_bind_to_a_real_step_of_the_same_name() -> None: + """A user may name a step `unresolved-step`; keys are uniquified against + each other, not against the sentinel.""" + yaml_data = { + "jobs": {AnthropicClient.UNRESOLVED_REFERENCE: {"name": "Real Step"}}, + "edges": { + "患者->x": { + "source_job": "患者", + "target_job": AnthropicClient.UNRESOLVED_REFERENCE, + }, + }, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + edge = next(iter(yaml_data["edges"].values())) + assert edge["target_job"] == AnthropicClient.UNRESOLVED_REFERENCE + assert edge["source_job"] not in yaml_data["jobs"], "sentinel bound to a real step" + + +# --- the sanitiser and its assertion must agree ------------------------------- + + +@pytest.mark.usefixtures("ascii_mode") +def test_an_edge_key_with_no_arrow_still_gets_the_derived_label() -> None: + """Leaving it alone here while the test assertion demanded the label meant + the sanitiser emitted output its own assertion rejected.""" + yaml_data = { + "jobs": {"A": {"name": "A"}, "B": {"name": "B"}}, + "edges": {"e1": {"source_job": "A", "target_job": "B"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + assert list(yaml_data["edges"]) == ["A->B"] + assert_no_special_chars(yaml_data, context="derived label") + + +@pytest.mark.parametrize("mode", ["false", "true"]) +def test_sanitised_output_always_satisfies_its_own_assertion( + monkeypatch: pytest.MonkeyPatch, mode: str, +) -> None: + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + yaml_data = { + "triggers": {"webhook": {"type": "webhook"}}, + "jobs": { + "Vérifier-l-état": {"name": "Vérifier l'état"}, + "患者確認": {"name": "患者確認"}, + "x" * 120: {"name": "y" * 120}, + }, + "edges": { + "webhook->Vérifier-l-état": { + "source_trigger": "webhook", "target_job": "Vérifier-l-état", + }, + "e-no-arrow": {"source_job": "Vérifier-l-état", "target_job": "患者確認"}, + "long": {"source_job": "x" * 120, "target_job": "患者確認"}, + }, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + assert_no_special_chars(yaml_data, context=f"mode={mode}") + + +# --- edge key length ---------------------------------------------------------- + + +@pytest.mark.parametrize("mode", ["false", "true"]) +def test_edge_keys_are_length_capped(monkeypatch: pytest.MonkeyPatch, mode: str) -> None: + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + first, second = "a" * MAX_NAME_LENGTH, "b" * MAX_NAME_LENGTH + yaml_data = { + "jobs": {first: {"name": "A"}, second: {"name": "B"}}, + "edges": {"k": {"source_job": first, "target_job": second}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + for edge_key in yaml_data["edges"]: + assert grapheme_length(edge_key) <= MAX_EDGE_KEY_LENGTH + + +# --- null sections across the whole finalize pipeline ------------------------- + +NULL_SECTION_DOCUMENTS = [ + "name: w\njobs:\n a:\n id: x\n body: code()\n b:\nedges:\n", + "name: w\njobs:\nedges:\n", + "name: w\ntriggers:\n webhook:\nedges:\n e:\n", + "name: w\njobs:\n a:\nedges:\n a->a:\n", + "name: w\n", +] + + +@pytest.mark.parametrize("document", NULL_SECTION_DOCUMENTS) +@pytest.mark.parametrize("mode", ["false", "true"]) +def test_the_whole_pipeline_survives_a_null_section( + monkeypatch: pytest.MonkeyPatch, document: str, mode: str, +) -> None: + """A model output ending in a bare `edges:` used to raise inside + extract/restore, get swallowed, and reach the user as prose with no + workflow while the log claimed the YAML would not parse.""" + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + + preserved, _ = AnthropicClient.extract_and_preserve_components(yaml.safe_load(document)) + + parsed = yaml.safe_load(document) + AnthropicClient.sanitize_job_names(parsed) + client = AnthropicClient.__new__(AnthropicClient) + AnthropicClient.restore_components(client, parsed, preserved) + + assert yaml.dump(parsed, allow_unicode=True) is not None + + +# --- referential integrity at runtime ----------------------------------------- + + +@pytest.mark.usefixtures("ascii_mode") +def test_an_edge_referring_to_a_step_by_name_is_resolved_to_its_key() -> None: + """The likeliest real model mistake. It used to ship as a well-formed + dangling edge with nothing logged.""" + yaml_data = { + "jobs": {"fetch-data": {"name": "Fetch Data"}, "send": {"name": "Send"}}, + "edges": {"e": {"source_job": "Fetch Data", "target_job": "send"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + edge = next(iter(yaml_data["edges"].values())) + assert edge["source_job"] == "fetch-data" + assert_no_special_chars(yaml_data, context="by-name reference") + + +@pytest.mark.usefixtures("ascii_mode") +def test_a_genuinely_dangling_edge_is_reported(caplog: pytest.LogCaptureFixture) -> None: + yaml_data = { + "jobs": {"a": {"name": "A"}}, + "edges": {"e": {"source_job": "nowhere-at-all", "target_job": "a"}}, + } + + with caplog.at_level("WARNING"): + AnthropicClient.sanitize_job_names(yaml_data) + + assert any("match no step or trigger" in r.message for r in caplog.records) + + +@pytest.mark.usefixtures("ascii_mode") +def test_the_sentinel_is_unique_against_job_names_too() -> None: + yaml_data = { + "jobs": {"a": {"name": AnthropicClient.UNRESOLVED_REFERENCE}}, + "edges": {"e": {"source_job": "患者", "target_job": "a"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + names = {job["name"] for job in yaml_data["jobs"].values()} + edge = next(iter(yaml_data["edges"].values())) + assert edge["source_job"] not in names + + +# --- typed keys --------------------------------------------------------------- + + +@pytest.mark.usefixtures("ascii_mode") +def test_an_int_key_and_a_string_key_do_not_shadow_each_other() -> None: + """YAML gives `1:` as the int 1 and `"1":` as the string "1".""" + yaml_data = {"jobs": {1: {"name": "Int"}, "1": {"name": "Str"}}, "edges": {}} + + AnthropicClient.sanitize_job_names(yaml_data) + + assert sorted(job["name"] for job in yaml_data["jobs"].values()) == ["Int", "Str"] + + +@pytest.mark.usefixtures("ascii_mode") +def test_a_boolean_edge_key_does_not_raise() -> None: + """An unquoted `on:` in the YAML parses as True, not a string.""" + yaml_data = {"jobs": {"x": {"name": "X"}}, "edges": {True: {"condition_type": "always"}}} + + AnthropicClient.sanitize_job_names(yaml_data) + + assert list(yaml_data["edges"]) == ["True"] + + +# --- the collision suffix lives inside the cap -------------------------------- + + +@pytest.mark.parametrize("mode", ["false", "true"]) +def test_two_edges_between_two_maximal_names_stay_inside_the_key_cap( + monkeypatch: pytest.MonkeyPatch, mode: str, +) -> None: + """Capping first and appending the suffix after gave a 204-grapheme key.""" + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + first, second = "a" * MAX_NAME_LENGTH, "b" * MAX_NAME_LENGTH + yaml_data = { + "jobs": {first: {"name": "A"}, second: {"name": "B"}}, + "edges": { + "e1": {"source_job": first, "target_job": second, "n": 1}, + "e2": {"source_job": first, "target_job": second, "n": 2}, + }, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + assert sorted(e["n"] for e in yaml_data["edges"].values()) == [1, 2] + for edge_key in yaml_data["edges"]: + assert grapheme_length(edge_key) <= MAX_EDGE_KEY_LENGTH + assert_no_special_chars(yaml_data, context=f"mode={mode}") + + +# --- by-name resolution must not bind to the wrong step ------------------------ + + +@pytest.mark.usefixtures("ascii_mode") +def test_a_nameless_job_and_an_empty_reference_do_not_bind() -> None: + """`str(job_data.get("name"))` gave "None" for a job with no name, and + `str(reference)` gave "None" for an empty `source_job:`, so they matched + and the edge bound to a fabricated step.""" + yaml_data = { + "jobs": {"a": {}, "b": {"name": "B"}}, + "edges": {"e": {"source_job": "", "target_job": "b"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + edge = next(iter(yaml_data["edges"].values())) + assert edge["source_job"] != "a" + assert edge["source_job"] == AnthropicClient.UNRESOLVED_REFERENCE + + +@pytest.mark.usefixtures("ascii_mode") +def test_by_name_resolution_uses_the_name_the_model_wrote() -> None: + """Matching after sanitizing folded `Résumé` and `Resume` together, so + which step an edge bound to depended on document order.""" + yaml_data = { + "jobs": {"k1": {"name": "Résumé"}, "k2": {"name": "Resume"}}, + "edges": {"e": {"source_job": "Resume", "target_job": "k1"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + assert next(iter(yaml_data["edges"].values()))["source_job"] == "k2" + + +@pytest.mark.usefixtures("ascii_mode") +def test_by_name_resolution_is_order_independent() -> None: + """The same workflow with the two jobs the other way round.""" + yaml_data = { + "jobs": {"k2": {"name": "Resume"}, "k1": {"name": "Résumé"}}, + "edges": {"e": {"source_job": "Resume", "target_job": "k1"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + assert next(iter(yaml_data["edges"].values()))["source_job"] == "k2" + + +@pytest.mark.usefixtures("ascii_mode") +def test_a_boolean_reference_does_not_bind_to_an_int_key() -> None: + """`hash(True) == hash(1)`, so keying the mapping on the raw key swapped + str shadowing for hash shadowing.""" + yaml_data = { + "jobs": {1: {"name": "One"}}, + "edges": {"e": {"source_job": True, "target_job": 1}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + edge = next(iter(yaml_data["edges"].values())) + assert edge["target_job"] in yaml_data["jobs"] + assert edge["source_job"] != edge["target_job"] + + +# --- preservation goes through the same walker as redaction -------------------- + +LIGHTNING_EXPORT = """\ +name: my-project +workflows: + my-workflow: + jobs: + a: + name: A + body: | + const SECRET_X = 'leak-me'; +""" + + +def test_component_extraction_does_not_leak_a_nested_body() -> None: + """`extract_and_preserve_components` read only a top-level `jobs:`, so a + Lightning export matched nothing, was swapped for nothing, and went into + the system prompt whole.""" + _, processed = AnthropicClient.extract_and_preserve_components( + yaml.safe_load(LIGHTNING_EXPORT), + ) + + assert "SECRET_X" not in processed + assert "leak-me" not in processed + + +@pytest.mark.parametrize( + "document", + [ + LIGHTNING_EXPORT, + "jobs:\n a:\n body: {k: SECRET_X}\n", + "x:\n - body: SECRET_X\n", + "deep:\n deeper:\n body: SECRET_X\n", + ], +) +def test_no_document_shape_reaches_the_prompt_with_a_body(document: str) -> None: + _, processed = AnthropicClient.extract_and_preserve_components(yaml.safe_load(document)) + + assert "SECRET_X" not in str(processed) + + +def test_the_normal_shape_keeps_its_placeholder_naming() -> None: + """The prompt tells the model placeholders look like `__CODE_BLOCK___`.""" + preserved, _ = AnthropicClient.extract_and_preserve_components( + yaml.safe_load("jobs:\n fetch:\n id: i\n body: get('/x');\n"), + ) + + assert "__CODE_BLOCK_fetch__" in preserved + assert preserved["__CODE_BLOCK_fetch__"] == "get('/x');" + + +# --- a sanitised reference must not bind to a real but wrong step -------------- + + +@pytest.mark.usefixtures("unicode_mode") +def test_a_reference_in_a_different_normal_form_still_resolves_by_name() -> None: + """The by-name map compared raw strings, so a name stored in NFD and a + reference written in NFC were different strings and never matched.""" + nfd = unicodedata.normalize("NFD", "Résumé") + nfc = unicodedata.normalize("NFC", "Résumé") + yaml_data = { + "jobs": {"k1": {"name": nfd}, "k2": {"name": "Other"}}, + "edges": {"e": {"source_job": nfc, "target_job": "k2"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + assert next(iter(yaml_data["edges"].values()))["source_job"] == "k1" + + +@pytest.mark.usefixtures("unicode_mode") +def test_a_reference_with_a_trailing_space_resolves_to_the_step() -> None: + """The reference and the key are the same name written differently, so this + edge is correct and must survive. Round six sent it to the sentinel.""" + yaml_data = { + "jobs": {"fetch": {"name": "F"}}, + "edges": {"e": {"source_job": "fetch ", "target_job": "fetch"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + edge = next(iter(yaml_data["edges"].values())) + assert edge["source_job"] == "fetch" + assert edge["target_job"] == "fetch" + + +@pytest.mark.usefixtures("ascii_mode") +def test_a_boolean_key_and_its_string_form_resolve_to_the_same_step() -> None: + """`on:` parses as the boolean True and sanitizes to the string "True", so + after sanitizing both references name the same, only, step. Binding them + both to it is correct — the bug is binding across *different* steps, which + the test below covers.""" + yaml_data = { + "jobs": {True: {"name": "T"}}, + "edges": {"e": {"source_job": "True", "target_job": True}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + edge = next(iter(yaml_data["edges"].values())) + assert edge["source_job"] in yaml_data["jobs"] + assert edge["target_job"] == edge["source_job"] + + +# --- null name, and an edge key with nothing to derive a label from ------------ + + +@pytest.mark.usefixtures("ascii_mode") +def test_a_null_name_does_not_become_the_literal_string_none() -> None: + yaml_data = {"jobs": {"a": {"name": None}}, "edges": {}} + + AnthropicClient.sanitize_job_names(yaml_data) + + assert yaml_data["jobs"]["a"]["name"] != "None" + assert yaml_data["jobs"]["a"]["name"] is None + + +@pytest.mark.parametrize("mode", ["false", "true"]) +def test_an_edge_key_with_no_endpoints_is_still_sanitised( + monkeypatch: pytest.MonkeyPatch, mode: str, +) -> None: + """It used to ship verbatim, NUL included — which crashes the insert on + Lightning's side just as surely as a name would.""" + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + yaml_data = {"jobs": {"a": {"name": "A"}}, "edges": {"bad\x00key": {"enabled": True}}} + + AnthropicClient.sanitize_job_names(yaml_data) + + for edge_key in yaml_data["edges"]: + assert "\x00" not in edge_key + + +# --- exact match beats a fold, and ambiguity is refused ------------------------ + + +@pytest.mark.usefixtures("ascii_mode") +@pytest.mark.parametrize("reverse", [False, True]) +def test_an_exact_name_match_wins_over_a_fold(reverse: bool) -> None: + """`Fetch Patients` and `fetch patients` fold together but are two names. + + Taking the first fold hit bound the edge to whichever came first in the + document, so reversing the jobs flipped the binding. + """ + jobs = [("upper", {"name": "Fetch Patients"}), ("lower", {"name": "fetch patients"})] + if reverse: + jobs.reverse() + yaml_data = { + "jobs": dict(jobs), + "edges": {"e": {"source_job": "fetch patients", "target_job": "upper"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + assert next(iter(yaml_data["edges"].values()))["source_job"] == "lower" + + +@pytest.mark.usefixtures("ascii_mode") +def test_an_ambiguous_name_reference_is_refused_not_guessed() -> None: + """Two names that fold together and neither matches exactly. A visible + dangle beats a silent binding to the wrong step.""" + yaml_data = { + "jobs": {"a": {"name": "Fetch Patients"}, "b": {"name": "fetch-patients"}}, + "edges": {"e": {"source_job": "FETCH PATIENTS", "target_job": "a"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + assert next(iter(yaml_data["edges"].values()))["source_job"] not in ("a", "b") + + +# --- the sentinel guard must not destroy correct edges ------------------------- + + +@pytest.mark.parametrize( + ("mode", "job_key"), + [ + ("false", "fetch "), + ("false", "fetch\t"), + ("false", "fetch\x00"), + ("true", "fetch "), + ("true", "fetch\x00"), + ], +) +def test_a_key_that_sanitises_to_the_reference_still_resolves( + monkeypatch: pytest.MonkeyPatch, mode: str, job_key: str, +) -> None: + """Round six pushed these onto the sentinel. The key and the reference are + the same name written differently, so the edge was right and got destroyed.""" + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + yaml_data = { + "jobs": {job_key: {"name": "F"}}, + "edges": {"e": {"source_job": "fetch", "target_job": "fetch"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + edge = next(iter(yaml_data["edges"].values())) + assert edge["source_job"] == "fetch" + assert edge["source_job"] in yaml_data["jobs"] + + +@pytest.mark.usefixtures("unicode_mode") +def test_a_key_in_a_different_normal_form_still_resolves() -> None: + nfd = unicodedata.normalize("NFD", "fetché") + nfc = unicodedata.normalize("NFC", "fetché") + yaml_data = { + "jobs": {nfd: {"name": "F"}}, + "edges": {"e": {"source_job": nfc, "target_job": nfc}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + edge = next(iter(yaml_data["edges"].values())) + assert edge["source_job"] in yaml_data["jobs"] + + +# --- the backstop must not delete the user's code ------------------------------ + + +def test_a_nested_body_survives_the_round_trip() -> None: + """The swap walks the whole tree; restore used to walk a top-level `jobs:` + only, so the user's code went out as `body: __CODE_BLOCK_nested_0__`.""" + data = yaml.safe_load(LIGHTNING_EXPORT) + preserved, prompt = AnthropicClient.extract_and_preserve_components(data) + + assert "SECRET_X" not in prompt + + client = AnthropicClient.__new__(AnthropicClient) + AnthropicClient.restore_components(client, data, preserved) + restored = yaml.dump(data, allow_unicode=True) + + assert "SECRET_X" in restored + assert "__CODE_BLOCK_" not in restored + + +def test_an_unresolvable_placeholder_becomes_the_empty_marker() -> None: + """Losing the code is bad; shipping a swap token the user will save is worse.""" + data = yaml.safe_load("jobs:\n a:\n body: __CODE_BLOCK_job_gone__\n") + + client = AnthropicClient.__new__(AnthropicClient) + AnthropicClient.restore_components(client, data, {}) + + assert data["jobs"]["a"]["body"] == "// Add operations here" + + +def test_a_job_key_cannot_collide_with_a_backstop_index() -> None: + """Both loops keyed into one flat namespace, so a job keyed `1` and + backstop index 1 built the same token.""" + data = yaml.safe_load("jobs:\n 1:\n body: AAA\nx:\n - body: BBB\n") + + preserved, _ = AnthropicClient.extract_and_preserve_components(data) + + assert len(set(preserved.values())) == len(preserved) + assert sorted(k for k in preserved if "CODE_BLOCK" in k) == [ + "__CODE_BLOCK_1__", + "__CODE_BLOCK_nested_1__", + ] + + +# --- a block-scalar placeholder must not ship as the user's code --------------- + + +@pytest.mark.parametrize( + "written_back", + [ + "__CODE_BLOCK_fetch__", + "__CODE_BLOCK_fetch__\n", + " __CODE_BLOCK_fetch__ ", + "__CODE_BLOCK_fetch__\n\n", + ], +) +def test_a_placeholder_written_back_as_a_block_scalar_restores_the_code( + written_back: str, +) -> None: + """A block scalar is the natural style for a `body:`, and it parses with a + trailing newline. The lookup did not strip while `_is_redacted` did, so the + raw token matched neither branch and shipped to the user in place of their + code — which they would then save.""" + data = {"jobs": {"fetch": {"body": written_back, "id": "i"}}} + preserved = {"__CODE_BLOCK_fetch__": "get('/patients');"} + + client = AnthropicClient.__new__(AnthropicClient) + AnthropicClient.restore_components(client, data, preserved) + + assert data["jobs"]["fetch"]["body"] == "get('/patients');" + + +def test_a_block_scalar_placeholder_through_finalize_yaml() -> None: + """The whole pipeline, not just the one function: `finalize_yaml` detected + the surviving token, logged it, and returned it anyway.""" + parsed = yaml.safe_load( + "jobs:\n fetch:\n id: i\n adaptor: '@openfn/language-common@latest'\n" + " body: |\n __CODE_BLOCK_fetch__\n", + ) + preserved = {"__CODE_BLOCK_fetch__": "get('/patients');", "__ID_JOB_fetch__": "i"} + + client = AnthropicClient.__new__(AnthropicClient) + client.validate_adaptors = lambda _data: None + out = AnthropicClient.finalize_yaml(client, parsed, preserved) + + assert "__CODE_BLOCK_" not in out + assert "get('/patients');" in out + + +def test_an_unknown_block_scalar_placeholder_does_not_ship() -> None: + """No preserved value for it. Losing the code is bad; shipping a token the + user will save is worse — that is the state origin/main did not reach.""" + data = {"jobs": {"a": {"body": "__CODE_BLOCK_gone__\n"}}} + + client = AnthropicClient.__new__(AnthropicClient) + AnthropicClient.restore_components(client, data, {}) + + assert data["jobs"]["a"]["body"] == "// Add operations here" + + +# --- an exact name match is not automatically unique -------------------------- + + +@pytest.mark.usefixtures("ascii_mode") +@pytest.mark.parametrize("reverse", [False, True]) +def test_two_jobs_sharing_a_name_are_refused_not_ordered(reverse: bool) -> None: + """`_unique_name` in this same class exists because two jobs can arrive + sharing a name. The exact-match loop took the first hit, so the binding + flipped with document order.""" + jobs = [("first", {"name": "Fetch Data"}), ("second", {"name": "Fetch Data"})] + if reverse: + jobs.reverse() + yaml_data = { + "jobs": dict(jobs), + "edges": {"e": {"source_job": "Fetch Data", "target_job": "first"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + assert next(iter(yaml_data["edges"].values()))["source_job"] not in ("first", "second") + + +# --- a decorated placeholder must not ship either ------------------------------ + +DECORATED_PLACEHOLDERS = { + "fenced code block": "```\n__CODE_BLOCK_fetch__\n```", + "inline backticks": "`__CODE_BLOCK_fetch__`", + "line comment": "// __CODE_BLOCK_fetch__", + "byte order mark": "\ufeff__CODE_BLOCK_fetch__", + "zero width space": "\u200b__CODE_BLOCK_fetch__", + "quoted": '"__CODE_BLOCK_fetch__"', + "key prefix": "code: __CODE_BLOCK_fetch__", + "token then code": "__CODE_BLOCK_fetch__\nfn(s => s);", +} + + +@pytest.mark.parametrize(("shape", "body"), DECORATED_PLACEHOLDERS.items()) +def test_a_decorated_placeholder_never_ships_as_the_body(shape: str, body: str) -> None: + """Stripping only catches the token written back bare. A fenced code block + is a strong model habit, so every one of these shipped the raw token as the + user's code.""" + data = {"jobs": {"fetch": {"id": "i", "body": body}}} + preserved = {"__CODE_BLOCK_fetch__": "get('/patients');"} + + client = AnthropicClient.__new__(AnthropicClient) + AnthropicClient.restore_components(client, data, preserved) + + restored = data["jobs"]["fetch"]["body"] + assert "__CODE_BLOCK_" not in restored, shape + assert "get('/patients');" in restored, shape + # Whatever else the model wrote around the token is still there. Replacing + # the whole body on a mere mention collapsed a long body to one statement. + for surrounding in ("fn(s => s);", "code:"): + if surrounding in body: + assert surrounding in restored, shape + + +@pytest.mark.parametrize(("shape", "body"), DECORATED_PLACEHOLDERS.items()) +def test_a_decorated_token_we_issued_recovers_the_code(shape: str, body: str) -> None: + """We know what the token stood for, so put the code back rather than + throwing it away. Degrading here lost a body we were holding.""" + parsed = {"jobs": {"fetch": {"id": "i", "body": body}}} + preserved = {"__CODE_BLOCK_fetch__": "get('/patients');"} + + client = AnthropicClient.__new__(AnthropicClient) + client.validate_adaptors = lambda _data: None + out = AnthropicClient.finalize_yaml(client, parsed, preserved) + restored = yaml.safe_load(out)["jobs"]["fetch"]["body"] + + assert "get('/patients');" in restored, shape + assert "__CODE_BLOCK_" not in restored, shape + for surrounding in ("fn(s => s);", "code:"): + if surrounding in body: + assert surrounding in restored, shape + + +@pytest.mark.parametrize( + "body", + [ + "// see __CODE_BLOCK_jobname__ in the prompt\nfn(s => s);", + 'const marker = "__CODE_BLOCK_jobname__";\npost(marker);', + "// __CODE_BLOCK_jobname__ is what the prompt calls it\nget('/x');", + ], +) +def test_real_code_that_mentions_the_sentinel_survives(body: str) -> None: + """`gen_project_prompts.yaml` shows the model the literal token, so a model + quoting it back is ordinary output. + + `preserved` is deliberately non-empty: the docstring describes the model + quoting the prompt *while editing a job*, which is exactly when there are + preserved bodies. An earlier version passed `{}` and so could not reach the + case it was named for — with a real `preserved` the code was destroyed. + """ + parsed = {"jobs": {"a": {"id": "i", "body": body}}} + preserved = {"__CODE_BLOCK_a__": "get('/patients');", "__CODE_BLOCK_other__": "post('/x');"} + + client = AnthropicClient.__new__(AnthropicClient) + client.validate_adaptors = lambda _data: None + out = AnthropicClient.finalize_yaml(client, parsed, preserved) + restored = yaml.safe_load(out)["jobs"]["a"]["body"] + + assert "Add operations here" not in restored + assert "__CODE_BLOCK_jobname__" in restored, "a token we never issued is real code, not a placeholder" + assert restored == body, "the body must come back exactly as the model wrote it" + + +def test_id_shaped_text_inside_real_code_is_not_flagged() -> None: + """`"__ID_" in dumped` matched inside a body and raised a Sentry error + claiming a token survived "outside a job body", which was false.""" + parsed = {"jobs": {"a": {"id": "real-id", "body": "const __ID_FIELD = state.data.id;"}}} + + client = AnthropicClient.__new__(AnthropicClient) + client.validate_adaptors = lambda _data: None + out = AnthropicClient.finalize_yaml(client, parsed, {}) + + assert "__ID_FIELD" in out + + +@pytest.mark.parametrize("body", ["__CODE_BLOCK_gone__", "__CODE_BLOCK_gone__\n", "```\n__CODE_BLOCK_gone__\n```"]) +def test_a_token_we_never_issued_still_degrades(body: str) -> None: + """Nothing to restore it from, and shipping it puts a swap token in front + of the user as if it were their code.""" + parsed = {"jobs": {"a": {"id": "i", "body": body}}} + + client = AnthropicClient.__new__(AnthropicClient) + client.validate_adaptors = lambda _data: None + out = AnthropicClient.finalize_yaml(client, parsed, {}) + + assert "__CODE_BLOCK_" not in out + assert "Add operations here" in out + + +@pytest.mark.parametrize("body", ["__CODE_BLOCK_fetch__", "__CODE_BLOCK_fetch__\n", " __CODE_BLOCK_fetch__ "]) +def test_a_resolvable_placeholder_still_restores(body: str) -> None: + """The broadened degrade must not swallow the bodies that do resolve.""" + parsed = {"jobs": {"fetch": {"id": "__ID_JOB_fetch__", "body": body}}} + preserved = {"__CODE_BLOCK_fetch__": "get('/patients');", "__ID_JOB_fetch__": "the-id"} + + client = AnthropicClient.__new__(AnthropicClient) + client.validate_adaptors = lambda _data: None + out = AnthropicClient.finalize_yaml(client, parsed, preserved) + + assert "get('/patients');" in out + assert "__CODE_BLOCK_" not in out + assert "the-id" in out + + +# --- non-string job names ----------------------------------------------------- + + +@pytest.mark.usefixtures("ascii_mode") +def test_non_string_names_are_coerced_and_sanitised() -> None: + """`name: 2024`, `name: on` and `name: 01` are ordinary model output, and + YAML hands them over as an int, a bool and an int. + + A string-only filter left them unsanitized and unrenamed, and Ecto rejects + a `:string` cast from an integer — so a workflow that used to save stopped + saving. Base coerced with `str(...)` first. + """ + yaml_data = { + "jobs": { + "s1": {"name": 2024}, + "s2": {"name": True}, + "s3": {"name": 1}, + }, + "edges": {}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + names = [job["name"] for job in yaml_data["jobs"].values()] + assert all(isinstance(name, str) for name in names), names + assert names == ["2024", "True", "1"] + + +@pytest.mark.usefixtures("ascii_mode") +def test_an_edge_resolves_a_non_string_name() -> None: + """The by-name map had the same filter, so an edge referencing such a job + by name never resolved.""" + yaml_data = { + "jobs": {"s1": {"name": 2024}, "s2": {"name": "Other"}}, + "edges": {"e": {"source_job": "2024", "target_job": "s2"}}, + } + + AnthropicClient.sanitize_job_names(yaml_data) + + assert next(iter(yaml_data["edges"].values()))["source_job"] == "s1" + + +@pytest.mark.usefixtures("ascii_mode") +def test_a_null_name_is_still_left_alone() -> None: + """The filter was written for this case, and it is the only one it was + right about: `str(None)` is the literal name "None".""" + yaml_data = {"jobs": {"a": {"name": None}}, "edges": {}} + + AnthropicClient.sanitize_job_names(yaml_data) + + assert yaml_data["jobs"]["a"]["name"] is None + + +# --- restoring must not discard the code around the token ---------------------- + + +def test_a_token_embedded_in_a_long_body_keeps_the_rest_of_it() -> None: + """Replacing the whole body on a mere mention collapsed a 500-line body + whose last line named the token into the one statement it stood for — and + handed that back as working code, which is worse than losing it visibly.""" + lines = 50 + body = "\n".join(["const x = 1;", *[f"post('/y/{n}', x);" for n in range(lines)], "// __CODE_BLOCK_a__"]) + data = {"jobs": {"a": {"id": "i", "body": body}}} + + client = AnthropicClient.__new__(AnthropicClient) + AnthropicClient.restore_components(client, data, {"__CODE_BLOCK_a__": "get('/patients');"}) + + restored = data["jobs"]["a"]["body"] + assert "get('/patients');" in restored + assert "const x = 1;" in restored + assert restored.count("post('/y/") == lines + + +def test_a_token_alone_on_a_comment_line_is_not_left_commented_out() -> None: + """Substituting the token alone turns `// __CODE_BLOCK_a__` into + `// get(...)`, which preserves the text and makes the step do nothing.""" + data = {"jobs": {"a": {"id": "i", "body": "// __CODE_BLOCK_a__\nconst x = 1;"}}} + + client = AnthropicClient.__new__(AnthropicClient) + AnthropicClient.restore_components(client, data, {"__CODE_BLOCK_a__": "get('/patients');"}) + + assert data["jobs"]["a"]["body"] == "get('/patients');\nconst x = 1;" + + +# --- two tokens in one body ---------------------------------------------------- + + +def test_two_issued_tokens_in_one_body_both_restore() -> None: + """"Merge step a and step b" produces exactly this. Returning `None` on an + ambiguous match left the body alone, so two raw swap tokens shipped as the + user's code with nothing logged.""" + data = {"jobs": {"merged": {"id": "i", "body": "__CODE_BLOCK_a__\n__CODE_BLOCK_b__"}}} + preserved = {"__CODE_BLOCK_a__": "get('/patients');", "__CODE_BLOCK_b__": "post('/dhis2');"} + + client = AnthropicClient.__new__(AnthropicClient) + AnthropicClient.restore_components(client, data, preserved) + + restored = data["jobs"]["merged"]["body"] + assert "__CODE_BLOCK_" not in restored + assert "get('/patients');" in restored + assert "post('/dhis2');" in restored + + +def test_two_tokens_we_never_issued_do_not_ship() -> None: + data = {"jobs": {"a": {"id": "i", "body": "__CODE_BLOCK_x__\n__CODE_BLOCK_y__"}}} + + client = AnthropicClient.__new__(AnthropicClient) + AnthropicClient.restore_components(client, data, {}) + + assert "__CODE_BLOCK_" not in data["jobs"]["a"]["body"] + + +# --- claims ------------------------------------------------------------------- + + +def test_the_same_body_restored_into_two_steps_is_reported( + caplog: pytest.LogCaptureFixture, +) -> None: + """The placeholder contract lets the model move code between steps, so this + is legitimate — but two steps ending up with the same body is not something + to discover from a support ticket.""" + data = { + "jobs": { + "a": {"id": "1", "body": "__CODE_BLOCK_b__"}, + "b": {"id": "2", "body": "__CODE_BLOCK_b__"}, + }, + } + preserved = {"__CODE_BLOCK_a__": "get('/a');", "__CODE_BLOCK_b__": "post('/b');"} + + client = AnthropicClient.__new__(AnthropicClient) + with caplog.at_level("WARNING"): + AnthropicClient.restore_components(client, data, preserved) + + assert any("more than one step" in record.message for record in caplog.records) + + +def test_a_preserved_body_nobody_asked_for_is_reported( + caplog: pytest.LogCaptureFixture, +) -> None: + """Job a's own preserved value never being claimed is the other half of the + same contamination, and it was equally silent.""" + data = {"jobs": {"a": {"id": "1", "body": "// Add operations here"}}} + preserved = {"__CODE_BLOCK_a__": "get('/a');"} + + client = AnthropicClient.__new__(AnthropicClient) + # INFO, not WARNING: deleting a step leaves its preserved body unclaimed + # every time, so this is ordinary and must not page anyone or ship a + # Sentry event carrying the request context. + with caplog.at_level("INFO"): + AnthropicClient.restore_components(client, data, preserved) + + unclaimed = [r for r in caplog.records if "never restored" in r.message] + assert unclaimed + assert all(record.levelname == "INFO" for record in unclaimed) + + +# --- a job key containing `__` ------------------------------------------------ + + +def test_a_job_key_containing_a_double_underscore_restores() -> None: + """`__CODE_BLOCK_sync__patients__` with a non-greedy match stops at + `__CODE_BLOCK_sync__` and leaves `patients__` behind, so the body came back + with the real code gone and the tail of the token still in it. Underscore + is legal in a step name in both modes and in Lightning's own rule.""" + data = {"jobs": {"sync__patients": {"id": "i", "body": "// unchanged\n__CODE_BLOCK_sync__patients__"}}} + + client = AnthropicClient.__new__(AnthropicClient) + AnthropicClient.restore_components(client, data, {"__CODE_BLOCK_sync__patients__": "get('/patients');"}) + + restored = data["jobs"]["sync__patients"]["body"] + assert "__CODE_BLOCK_" not in restored + assert restored == "// unchanged\nget('/patients');" + + +def test_a_truncated_prefix_sibling_is_not_spliced_in() -> None: + """With a second job whose key is the truncated prefix, the short match + picked that job's body instead.""" + data = {"jobs": {"sync__patients": {"id": "i", "body": "__CODE_BLOCK_sync__patients__"}}} + preserved = {"__CODE_BLOCK_sync__": "WRONG();", "__CODE_BLOCK_sync__patients__": "RIGHT();"} + + client = AnthropicClient.__new__(AnthropicClient) + AnthropicClient.restore_components(client, data, preserved) + + assert data["jobs"]["sync__patients"]["body"] == "RIGHT();" + + +@pytest.mark.parametrize( + ("body", "issued", "expected"), + [ + # A key containing `__`. A non-greedy pattern stopped at + # `__CODE_BLOCK_sync__`. + ("__CODE_BLOCK_sync__patients__", ["__CODE_BLOCK_sync__patients__"], + ["__CODE_BLOCK_sync__patients__"]), + # A prefix key must not win over the longer one it is a prefix of. + ("__CODE_BLOCK_sync__patients__", + ["__CODE_BLOCK_sync__", "__CODE_BLOCK_sync__patients__"], + ["__CODE_BLOCK_sync__patients__"]), + # An identifier character after the token. The lookahead that fixed the + # case above lost this one: zero tokens found, so the raw token shipped. + ("__CODE_BLOCK_a__1", ["__CODE_BLOCK_a__"], ["__CODE_BLOCK_a__"]), + # Two adjacent. The same lookahead swallowed both as one bogus match, + # and the body was replaced with the empty marker. + ("__CODE_BLOCK_a____CODE_BLOCK_b__", ["__CODE_BLOCK_a__", "__CODE_BLOCK_b__"], + ["__CODE_BLOCK_a__", "__CODE_BLOCK_b__"]), + ("__CODE_BLOCK_a__\n__CODE_BLOCK_b__", ["__CODE_BLOCK_a__", "__CODE_BLOCK_b__"], + ["__CODE_BLOCK_a__", "__CODE_BLOCK_b__"]), + # A token we never issued is not ours to find. + ("__CODE_BLOCK_jobname__", ["__CODE_BLOCK_a__"], []), + ], +) +def test_tokens_are_matched_against_the_keys_we_issued( + body: str, issued: list, expected: list, +) -> None: + """Matched against `preserved_values`, longest key first — the ground truth + we already hold — rather than by a pattern guessing at the token's shape. + Two rounds of tuning that pattern traded one failure for another.""" + preserved = dict.fromkeys(issued, "code();") + + assert AnthropicClient._issued_tokens_in(body, preserved) == expected + + +# --- a block comment must not leave the step inert ----------------------------- + + +@pytest.mark.parametrize("body", ["/* __CODE_BLOCK_a__ */", "/* __CODE_BLOCK_a__ */\nconst x = 1;"]) +def test_a_block_comment_wrapping_the_token_is_replaced_whole(body: str) -> None: + """Recognising only `//` and `#` turned `/* __CODE_BLOCK_a__ */` into + `/* get(...) */`: body intact, step does nothing.""" + data = {"jobs": {"a": {"id": "i", "body": body}}} + + client = AnthropicClient.__new__(AnthropicClient) + AnthropicClient.restore_components(client, data, {"__CODE_BLOCK_a__": "get('/x');"}) + + restored = data["jobs"]["a"]["body"] + assert restored.startswith("get('/x');") + assert "/*" not in restored.split("\n")[0] + + +# --- a non-string body anywhere in the tree ------------------------------------ + + +def test_a_non_string_nested_body_does_not_ship_a_token() -> None: + """The walker reaches nested holders and skips non-strings; the `jobs:` + default pass only reaches the top level, so this shipped a raw token.""" + data = {"workflows": {"w": {"jobs": {"a": {"body": ["__CODE_BLOCK_nested_0__"]}}}}} + + client = AnthropicClient.__new__(AnthropicClient) + AnthropicClient.restore_components(client, data, {}) + + assert data["workflows"]["w"]["jobs"]["a"]["body"] == "// Add operations here" + + +@pytest.mark.parametrize( + ("body", "expected"), + [ + ("__CODE_BLOCK_a__1", "get('/a');1"), + ("__CODE_BLOCK_a____CODE_BLOCK_b__", "get('/a');\npost('/b');"), + ], +) +def test_the_two_regressions_from_tuning_the_pattern(body: str, expected: str) -> None: + """`__CODE_BLOCK_a__1` found zero tokens and shipped the raw token with no + warning; two adjacent tokens merged into one bogus match and the body was + replaced with the empty marker, destroying both preserved bodies.""" + data = {"jobs": {"j": {"id": "i", "body": body}}} + preserved = {"__CODE_BLOCK_a__": "get('/a');", "__CODE_BLOCK_b__": "post('/b');"} + + client = AnthropicClient.__new__(AnthropicClient) + AnthropicClient.restore_components(client, data, preserved) + + restored = data["jobs"]["j"]["body"] + assert "__CODE_BLOCK_" not in restored + assert restored == expected + + +# --- prefix-pair token texts --------------------------------------------------- + + +@pytest.mark.parametrize( + ("key_one", "key_two"), + [("sync", "sync_"), ("sync", "sync__"), ("a", "a_"), ("a", "a__"), + ("long_key", "long_key_"), ("1", "1_")], +) +@pytest.mark.parametrize("separator", ["", "\n", " "]) +def test_adjacent_prefix_pair_tokens_both_restore( + key_one: str, key_two: str, separator: str, +) -> None: + """Issued token texts are not prefix-free: `__CODE_BLOCK_{key}__` makes one + a prefix of another exactly when the second key is the first plus one or + two underscores. Written adjacently, the longer token matched *across the + boundary*, so the shorter key's body was lost and the fragment + `CODE_BLOCK_sync___` was left in the user's code. + """ + token_one, token_two = f"__CODE_BLOCK_{key_one}__", f"__CODE_BLOCK_{key_two}__" + preserved = {token_one: "ONE();", token_two: "TWO();"} + data = {"jobs": {"j": {"id": "i", "body": token_one + separator + token_two}}} + + client = AnthropicClient.__new__(AnthropicClient) + AnthropicClient.restore_components(client, data, preserved) + + restored = data["jobs"]["j"]["body"] + assert "CODE_BLOCK" not in restored, "a fragment of the token survived" + assert "ONE();" in restored + assert "TWO();" in restored + + +def test_a_prefix_pair_in_the_other_order_also_restores() -> None: + token_two = "__CODE_BLOCK_sync__" + preserved = {"__CODE_BLOCK_sync___": "UNDER();", token_two: "PLAIN();"} + data = {"jobs": {"j": {"id": "i", "body": "__CODE_BLOCK_sync___" + token_two}}} + + client = AnthropicClient.__new__(AnthropicClient) + AnthropicClient.restore_components(client, data, preserved) + + restored = data["jobs"]["j"]["body"] + assert "CODE_BLOCK" not in restored + assert "UNDER();" in restored + assert "PLAIN();" in restored + + +def test_token_debris_is_reported_loudly(caplog: pytest.LogCaptureFixture) -> None: + """An unclaimed preserved body is ordinary — deleting a step produces one + every time — so that is info. A fragment of our machinery sitting in the + user's code never is.""" + data = {"jobs": {"j": {"id": "i", "body": "SYNC();CODE_BLOCK_sync___"}}} + + client = AnthropicClient.__new__(AnthropicClient) + with caplog.at_level("ERROR"): + AnthropicClient.restore_components(client, data, {}) + + assert any("fragment of a code placeholder" in record.message for record in caplog.records) + assert all(record.levelname == "ERROR" for record in caplog.records) diff --git a/services/workflow_chat/tests/unit/gen_project/conftest.py b/services/workflow_chat/tests/unit/gen_project/conftest.py new file mode 100644 index 00000000..aa558136 --- /dev/null +++ b/services/workflow_chat/tests/unit/gen_project/conftest.py @@ -0,0 +1,25 @@ +"""Keep the prompt-building tests offline. + +Building a system message pulls in the adaptor list, and +`get_latest_adaptors_cached` fetches it from the GitHub API whenever the +on-disk cache is missing or more than an hour old. That made this file's tests +depend on the network and on GitHub rate limits. Stub the fetch instead — none +of these tests care what the adaptor list contains. +""" + +import pytest +from workflow_chat import available_adaptors + +_FAKE_ADAPTORS = { + "common": {"version": "1.0.0", "description": "Common operations", "label": "Common"}, + "http": {"version": "1.0.0", "description": "HTTP requests", "label": "HTTP"}, +} + + +@pytest.fixture(autouse=True) +def _offline_adaptors(monkeypatch: pytest.MonkeyPatch) -> None: + monkeypatch.setattr( + available_adaptors, + "get_latest_adaptors_cached", + lambda: dict(_FAKE_ADAPTORS), + ) diff --git a/services/workflow_chat/tests/unit/gen_project/test_prompt_build.py b/services/workflow_chat/tests/unit/gen_project/test_prompt_build.py index b1500d7f..dd1ff8a2 100644 --- a/services/workflow_chat/tests/unit/gen_project/test_prompt_build.py +++ b/services/workflow_chat/tests/unit/gen_project/test_prompt_build.py @@ -1,3 +1,5 @@ +import pytest +from name_rules import UNICODE_FLAG_ENV, describe_rule_for_prompt from workflow_chat.gen_project_prompt import build_prompt @@ -77,3 +79,47 @@ def test_build_prompt_readonly_mode(): assert "name: readonly-workflow" in system_msg assert prompt[-1]["content"] == "What does this workflow do?" + + +@pytest.mark.parametrize("mode", ["false", "true"]) +def test_build_prompt_states_the_active_name_rule(monkeypatch: pytest.MonkeyPatch, mode: str) -> None: + """The rule the model is told and the rule the sanitizer enforces come from + the same source, so the prompt has to move when the flag moves.""" + monkeypatch.setenv(UNICODE_FLAG_ENV, mode) + + system_msg, _ = build_prompt(content="Create a workflow") + + assert describe_rule_for_prompt() in system_msg + assert "{name_rule}" not in system_msg + + +def test_build_prompt_name_rule_differs_between_modes(monkeypatch: pytest.MonkeyPatch) -> None: + monkeypatch.setenv(UNICODE_FLAG_ENV, "false") + ascii_msg, _ = build_prompt(content="Create a workflow") + + monkeypatch.setenv(UNICODE_FLAG_ENV, "true") + unicode_msg, _ = build_prompt(content="Create a workflow") + + assert ascii_msg != unicode_msg + assert "any script" in unicode_msg + assert "any script" not in ascii_msg + + +def test_a_prompt_that_drops_the_name_rule_token_is_rejected_loudly( + monkeypatch: pytest.MonkeyPatch, +) -> None: + """`str.format` ignores an unused keyword, so losing the token is silent. + + The prompt would then state no naming rule at all while the sanitizer + carried on enforcing one, and the model would be left guessing. + """ + from workflow_chat import gen_project_prompt + + monkeypatch.setattr( + gen_project_prompt.config_loader, + "get_prompt", + lambda name: "no token here {adaptors}" if name == "general_knowledge" else "x", + ) + + with pytest.raises(ValueError, match="did not render the step-name rule"): + gen_project_prompt.build_prompt(content="Create a workflow") diff --git a/services/workflow_chat/workflow_chat.py b/services/workflow_chat/workflow_chat.py index 662bf52a..c04f0733 100644 --- a/services/workflow_chat/workflow_chat.py +++ b/services/workflow_chat/workflow_chat.py @@ -2,11 +2,30 @@ import os import re import uuid -import unicodedata -from typing import List, Optional, Dict, Any -import yaml from dataclasses import dataclass +from typing import Any, Dict, List, Optional + +import yaml from models import resolve_model +from name_rules import ( + MAX_EDGE_KEY_LENGTH, + MAX_NAME_LENGTH, + grapheme_length, + normalize_for_lookup, + sanitize_name, + truncate_graphemes, + unicode_names_enabled, +) +from yaml_utils import ( + BODY_KEY, + CODE_PLACEHOLDER_PREFIX, + WITHHELD_NOTICE, + has_unredacted_body, + iter_body_holders, + iter_id_holders, + redact_job_bodies, + remove_ids, +) _dir = os.path.dirname(os.path.abspath(__file__)) with open(os.path.join(_dir, "gen_project_config.yaml")) as _f: @@ -21,13 +40,13 @@ "yaml": { "anyOf": [ {"type": "string"}, - {"type": "null"} - ] + {"type": "null"}, + ], }, - "text": {"type": "string"} + "text": {"type": "string"}, }, "required": ["yaml", "text"], - "additionalProperties": False + "additionalProperties": False, } # Subagent mode (called from global_chat): adds a "handover" field so the model @@ -40,38 +59,39 @@ "handover": { "anyOf": [ {"type": "string"}, - {"type": "null"} - ] + {"type": "null"}, + ], }, - **_OUTPUT_SCHEMA["properties"] + **_OUTPUT_SCHEMA["properties"], }, "required": ["handover", "yaml", "text"], - "additionalProperties": False + "additionalProperties": False, } +import sentry_sdk from anthropic import ( Anthropic, APIConnectionError, - BadRequestError, AuthenticationError, - PermissionDeniedError, + BadRequestError, + InternalServerError, NotFoundError, - UnprocessableEntityError, + PermissionDeniedError, RateLimitError, - InternalServerError, + UnprocessableEntityError, ) -import sentry_sdk -from langfuse import observe, propagate_attributes, get_client as get_langfuse_client -from langfuse_util import should_track, build_tags, build_generation_diff, drop_code, mask_secrets -from util import ApolloError, create_logger, add_page_prefix, APOLLO_VERSION -from yaml_utils import WITHHELD_NOTICE, redact_job_bodies, remove_ids -from .gen_project_prompt import build_prompt -from workflow_chat.available_adaptors import get_available_adaptors +from langfuse import get_client as get_langfuse_client +from langfuse import observe, propagate_attributes +from langfuse_util import build_generation_diff, build_tags, drop_code, mask_secrets, should_track from streaming_util import ( - StreamManager, - STATUS_REVIEWING_WORKFLOW, - STATUS_NEW_WORKFLOW, STATUS_DESIGNING_WORKFLOW, + STATUS_NEW_WORKFLOW, + STATUS_REVIEWING_WORKFLOW, + StreamManager, ) +from util import APOLLO_VERSION, ApolloError, add_page_prefix, create_logger +from workflow_chat.available_adaptors import get_available_adaptors + +from .gen_project_prompt import build_prompt logger = create_logger("workflow_chat") @@ -232,16 +252,16 @@ def generate( errors=errors, history=history, read_only=read_only, - subagent=subagent + subagent=subagent, ) # Structured outputs config — guarantees valid JSON matching schema output_config = { "format": { "type": "json_schema", - "schema": _SUBAGENT_OUTPUT_SCHEMA if subagent else _OUTPUT_SCHEMA + "schema": _SUBAGENT_OUTPUT_SCHEMA if subagent else _OUTPUT_SCHEMA, }, - "effort": "medium" + "effort": "medium", } accumulated_usage = { @@ -274,7 +294,7 @@ def generate( model=self.config.model, system=system_message, output_config=output_config, - thinking={"type": "adaptive"} + thinking={"type": "adaptive"}, ) as stream_obj: for event in stream_obj: accumulated_response, text_started, sent_length = self.process_stream_event( @@ -283,7 +303,7 @@ def generate( text_started, sent_length, stream_manager, - preserved_values + preserved_values, ) message = stream_obj.get_final_message() @@ -300,7 +320,7 @@ def generate( message = self.client.messages.create( max_tokens=self.config.max_tokens, messages=prompt, model=self.config.model, system=system_message, output_config=output_config, - thinking={"type": "adaptive"} + thinking={"type": "adaptive"}, ) # Track usage from this attempt @@ -385,77 +405,587 @@ def remove_ids_from_yaml(self, yaml_str): # This used to be a third id-walker with neither, and it runs on # client-supplied YAML whenever read_only is set. remove_ids(yaml_data) - return yaml.dump(yaml_data, sort_keys=False, default_flow_style=False) + return yaml.dump(yaml_data, sort_keys=False, default_flow_style=False, allow_unicode=True) except Exception as error: # Type only: a PyYAML mark quotes the document. logger.warning(f"Could not remove IDs from YAML ({type(error).__name__})") return yaml_str @staticmethod - def sanitize_job_names(yaml_data): + def _resolve_by_name(reference, job_names): + """Resolve a step reference against job *names*, or None. + + Exact match wins outright. Only if nothing matches exactly does it fall + back to the lookup fold, and then only when the fold picks out exactly + one job: `Fetch Patients` and `fetch patients` are two different names + that fold together, so taking the first fold hit bound the edge to + whichever happened to come first in the document. An ambiguous + reference is not resolved at all — a visible dangle beats a silent + binding to the wrong step. """ - Sanitize job names by removing special characters and normalizing diacritics. - Also sanitizes job references in edges (source and target fields) and edge keys. + if not reference: + return None + + def unambiguous(matches, how): + if len(matches) == 1: + return matches[0] + if matches: + logger.warning( + f"Step reference {reference!r} {how} {len(matches)} jobs " + f"({', '.join(sorted(matches))}); leaving it unresolved rather than guessing", + ) + return None + + # Exact is not automatically unique: two jobs can arrive sharing a name. + exact = [key for key, name in job_names.items() if name == reference] + if exact: + return unambiguous(exact, "exactly matches the name of") + + wanted = normalize_for_lookup(reference) + if not wanted: + return None + + folded = [key for key, name in job_names.items() if normalize_for_lookup(name) == wanted] + return unambiguous(folded, "matches the folded name of") + + #: Token-shaped text. Used for ONE question only: "is this a swap token we + #: never issued?" — the degrade branch. Deliberately not used to find our + #: own tokens: we know exactly which ones we issued, and a pattern can only + #: guess at their shape. + _FOREIGN_TOKEN = re.compile(r"__CODE_BLOCK_\S*?__") + + @staticmethod + def _issued_spans_in(value, preserved_values): + """Where each token we actually issued appears in `value`. + + Matched against the keys of `preserved_values` — the ground truth we + already hold — rather than by a pattern guessing at the token's shape. + + Longest-first alone is not enough, because issued token texts are not + prefix-free: `__CODE_BLOCK_{key}__` makes one token a prefix of another + exactly when the second key is the first plus one or two underscores. + With steps keyed `sync` and `sync_` written adjacently, the longer + token matches *across the boundary*, swallowing the shorter token's + leading underscores — `sync`'s body was lost and the fragment + `CODE_BLOCK_sync___` was left in the user's code. + + So this scans left to right from each token start and prefers a + candidate that leaves a clean remainder: one that does not begin + mid-token. Only 24 of 6,972 ordered key pairs can produce the + collision, all `key2 == key1 + "_"` or `+ "__"`, but a user can name + two steps that way and the uniquifier will not stop them. """ - if not yaml_data: + if not isinstance(value, str): + return [] + + issued = sorted( + (token for token in preserved_values if token.startswith(CODE_PLACEHOLDER_PREFIX)), + key=len, + reverse=True, + ) + if not issued: + return [] + + spans: list[tuple[int, int, str]] = [] + index = 0 + while index < len(value): + if not value.startswith(CODE_PLACEHOLDER_PREFIX, index): + index += 1 + continue + + matches = [token for token in issued if value.startswith(token, index)] + if not matches: + index += 1 + continue + + clean = [ + token + for token in matches + if AnthropicClient._leaves_clean_remainder(value, index + len(token)) + ] + chosen = (clean or matches)[0] + spans.append((index, index + len(chosen), chosen)) + index += len(chosen) + + return spans + + @staticmethod + def _leaves_clean_remainder(value, end): + """True if consuming up to `end` does not cut into a following token. + + The failure it rules out is a match that ate the next token's leading + underscores, which leaves `CODE_BLOCK_...` or `_CODE_BLOCK_...` + stranded at `end`. Ordinary code after a token is clean. + """ + remainder = value[end:] + return not ( + remainder.startswith("CODE_BLOCK_") or remainder.startswith("_CODE_BLOCK_") + ) + + @staticmethod + def _issued_tokens_in(value, preserved_values): + """The tokens we issued that `value` mentions, in the order written.""" + return [token for _, _, token in AnthropicClient._issued_spans_in(value, preserved_values)] + + @staticmethod + def _substitute_issued(value, preserved_values): + """Replace every issued token with the body it stood for. + + Works from the spans rather than `str.replace`, so a token that is a + substring of another cannot be substituted inside it. + """ + spans = AnthropicClient._issued_spans_in(value, preserved_values) + out = [] + cursor = 0 + for start, end, token in spans: + out.append(value[cursor:start]) + out.append(preserved_values[token]) + cursor = end + out.append(value[cursor:]) + return "".join(out) + + @staticmethod + def _is_only_placeholders(value, preserved_values): + """True if `value` is swap tokens and decoration, with no other content. + + This is what separates "the model mangled our token" from "the model + wrote code that mentions one". Restoring on a mere mention replaced the + whole body, so a long body whose last line was a comment naming the + token collapsed to a single statement. + + Issued tokens are removed by span, foreign ones by pattern — the two + questions have different ground truth and are answered differently. + """ + if not isinstance(value, str) or CODE_PLACEHOLDER_PREFIX not in value: + return False + + spans = AnthropicClient._issued_spans_in(value, preserved_values) + remainder, cursor = [], 0 + for start, end, _ in spans: + remainder.append(value[cursor:start]) + cursor = end + remainder.append(value[cursor:]) + text = AnthropicClient._FOREIGN_TOKEN.sub("", "".join(remainder)) + text = re.sub(r"```[a-zA-Z]*", "", text) + text = re.sub(r"(?m)^[ \t]*(?://+|#+|/\*)[ \t]*", "", text) + text = text.replace("*/", "") + return text.strip(" \t\r\n\ufeff\u200b`'\"") == "" + + #: A line that is a comment wrapper and nothing else once the token is + #: taken out. `/* ... */` as well as `//` and `#`: recognising only the + #: latter two turned `/* __CODE_BLOCK_a__ */` into `/* get(...) */`, so the + #: body looked intact and the step did nothing. + _COMMENT_ONLY = re.compile(r"[ \t]*(?://+|\#+|/\*)?[ \t]*(?:\*/)?[ \t]*") + + @staticmethod + def _substitute_issued_by_line(body, preserved_values): + """Substitute every issued token, taking the whole line where the line + is only a comment marker wrapped around it.""" + lines = body.split("\n") + for index, line in enumerate(lines): + spans = AnthropicClient._issued_spans_in(line, preserved_values) + if not spans: + continue + stripped = AnthropicClient._substitute_issued(line, dict.fromkeys( + (token for _, _, token in spans), "", + )) + if len(spans) == 1 and AnthropicClient._COMMENT_ONLY.fullmatch(stripped): + lines[index] = preserved_values[spans[0][2]] + else: + lines[index] = AnthropicClient._substitute_issued(line, preserved_values) + return "\n".join(lines) + + #: The tail a mis-tokenised match leaves behind. Not the full prefix — that + #: is what a clean unresolved token looks like — but the fragment that + #: survives when a match ate another token's leading underscores. + _TOKEN_DEBRIS = re.compile(r"(? 1) + if duplicated: + msg = f"{len(duplicated)} preserved job body/bodies restored into more than one step" + logger.warning(f"{msg}: {', '.join(duplicated)}") + sentry_sdk.capture_message(msg, level="warning") + + unclaimed = sorted( + token + for token in preserved_values + if token.startswith(CODE_PLACEHOLDER_PREFIX) and token not in claims + ) + if unclaimed: + # Log only, deliberately. Deleting a step is an ordinary edit and + # leaves its preserved body unclaimed every time, so capturing this + # to Sentry would fire on routine use — and each event carries the + # request context with it. + logger.info( + f"{len(unclaimed)} preserved job body/bodies were never restored " + f"(ordinary when a step was deleted): {', '.join(unclaimed)}", + ) + + @staticmethod + def _reference_key(value): + """A mapping key that distinguishes `1`, `"1"` and `True`. + + YAML types keys: `1:` is an int, `"1":` a string, `on:` a boolean. + Keying a mapping on `str(value)` makes the first two collide; keying it + on the raw value makes the last two collide, because `hash(True) == + hash(1)`. Pairing the type name with the text avoids both. + """ + return (type(value).__name__, str(value)) + + @staticmethod + def _section(yaml_data, name): + """Return `yaml_data[name]` as a dict of dicts, or {} if it is anything else. + + `jobs:` with nothing under it parses as None, and a single bare entry + (`b:`) gives a None value. Both are valid YAML and both used to raise + somewhere in this pipeline, where the exception was swallowed and the + user got prose and no workflow. + """ + if not isinstance(yaml_data, dict): + return {} + section = yaml_data.get(name) + if not isinstance(section, dict): + return {} + for key, value in list(section.items()): + if not isinstance(value, dict): + section[key] = {} + return section + + #: Stand-in for a reference that sanitizes away to nothing. Uniquified + #: against the workflow's own keys at sanitize time, because a user can + #: perfectly well name a step "unresolved-step" — keys are uniquified + #: against each other, not against this. An edge carrying the sentinel + #: stays visibly broken rather than silently binding to a real step. + UNRESOLVED_REFERENCE = "unresolved-step" + + #: Key for an edge whose own key sanitizes away to nothing and which has no + #: endpoints to derive a label from. + UNNAMED_EDGE = "edge" + + @staticmethod + def _unique_name(candidate: str, taken: set, fallback: str) -> str: + """Return `candidate` (or `fallback` if it sanitized away) made unique against `taken`. + + Job names and job keys must both be unique within a workflow. Two names + that differ only in characters the rule strips — `Résumé` and `Resume` + under the ASCII rule — would otherwise collapse onto each other and the + second job would overwrite the first. + + The suffix is added inside the length cap, not on top of it: appending + `-2` to a name that is already at the limit would push it over, and + Lightning would reject the result. + """ + candidate = candidate or fallback + if candidate not in taken: + taken.add(candidate) + return candidate + + suffix = 2 + while True: + tail = f"-{suffix}" + trimmed = truncate_graphemes(candidate, MAX_NAME_LENGTH - grapheme_length(tail)) + unique = f"{trimmed}{tail}" + if unique not in taken: + taken.add(unique) + return unique + suffix += 1 + + @staticmethod + def _edge_label(edge_key: str, edge_data: object, remap_reference: object) -> str: + """Derive an edge's `source->target` label after its endpoints were renamed. + + The label comes from the edge's own `source_*`/`target_*` fields + wherever it has them, rather than from splitting the old label on "->". + Under the permissive rule "->" is a legal run of characters inside a + step name, which makes that split ambiguous — and the fields are the + real identity anyway; the key is only a label. + + An edge whose endpoints are both known always gets the derived label, + whatever its old key looked like. Deriving it for `a->b` but leaving + `e1` alone would mean the sanitizer emits keys its own test assertion + rejects. Only an edge with no usable endpoints keeps its old key, and + then it is split on the first "->" if it has one. + """ + # YAML gives an unquoted `on:` as the boolean True, not a string. + edge_key = str(edge_key) + + if isinstance(edge_data, dict): + source = edge_data.get("source_job") or edge_data.get("source_trigger") + target = edge_data.get("target_job") or edge_data.get("target_trigger") + if source and target: + return f"{source}->{target}" + + if "->" not in edge_key: + # Nothing to derive a label from and no arrow to split on. Still + # sanitize it — a key carrying a NUL crashes the insert on + # Lightning's side just as surely as a name would. + return sanitize_name(edge_key, unicode_names_enabled()) or AnthropicClient.UNNAMED_EDGE + + source_part, target_part = edge_key.split("->", 1) + return f"{remap_reference(source_part)}->{remap_reference(target_part)}" + + @staticmethod + def sanitize_job_names(yaml_data: object) -> None: + """ + Bring every job key, job name, trigger key and edge reference in the + workflow into line with the active step-name rule (see `name_rules`). + + Keys are rewritten alongside names, and edges are rewritten through the + resulting key mapping rather than sanitized independently. Sanitizing + the two separately is how edges used to end up pointing at jobs that no + longer existed. + """ + if not isinstance(yaml_data, dict): + # A non-dict payload is not a workflow. One caller swallows every + # exception from this, so raising here would silently drop YAML. return - - def sanitize_single_name(name): - if not name or not isinstance(name, str): - return name - # Normalize unicode characters (removes diacritics) - normalized = unicodedata.normalize('NFKD', name) - ascii_name = normalized.encode('ascii', 'ignore').decode('ascii') - # Keep only alphanumeric, spaces, hyphens, and underscores - return re.sub(r'[^a-zA-Z0-9\s\-_]', '', ascii_name) - - if "jobs" in yaml_data: - jobs = yaml_data["jobs"] - name_mapping = {} - + + unicode_mode = unicode_names_enabled() + + # One mapping per section, never shared. A workflow may legitimately + # have a trigger and a job whose original keys are the same string, and + # a single mapping keyed on that string would let the jobs pass + # overwrite the trigger's entry — rewriting the edge's source_trigger + # to point at a job and orphaning the trigger. + key_mappings = {"jobs": {}, "triggers": {}} + + def sanitize_section(section: str, fallback_prefix: str, label: str) -> dict | None: + """Sanitize the keys of `jobs:` or `triggers:`, recording the renames.""" + entries = yaml_data.get(section) + if not isinstance(entries, dict): + return None + + mapping = key_mappings[section] + taken = set() + rebuilt = {} + renamed = [] + for index, (key, data) in enumerate(entries.items()): + original = str(key) + new_key = AnthropicClient._unique_name( + sanitize_name(original, unicode_mode), taken, f"{fallback_prefix}-{index + 1}", + ) + # Keyed on type *and* text; see `_reference_key`. + mapping[AnthropicClient._reference_key(key)] = new_key + rebuilt[new_key] = data + if original != new_key: + renamed.append(f"{original!r} -> {new_key!r}") + + if renamed: + logger.info(f"Sanitized {len(renamed)} {label} key(s): {', '.join(renamed)}") + + yaml_data[section] = rebuilt + return rebuilt + + triggers = sanitize_section("triggers", "trigger", "trigger") + jobs = sanitize_section("jobs", "step", "job") + + # Captured before the renaming loop below, so a by-name reference is + # matched against what the model actually wrote. + # `str(...)`, not a string-only filter. A model writing `name: 2024`, + # `name: on` or `name: 01` is ordinary output, and YAML hands those over + # as an int, a bool and an int. Filtering them out left them unsanitized + # and unrenamed, and Ecto rejects a `:string` cast from an integer, so a + # workflow that used to save stopped saving. The `None` case the filter + # was written for is handled by excluding None explicitly. + original_job_names = { + job_key: str(job_data["name"]) + for job_key, job_data in (jobs or {}).items() + if isinstance(job_data, dict) + and job_data.get("name") is not None + and str(job_data["name"]).strip() + } + + taken_names = set() + if jobs: + renamed = [] for job_key, job_data in jobs.items(): - if "name" in job_data: + if isinstance(job_data, dict) and job_data.get("name") is not None: original_name = str(job_data["name"]) - sanitized_name = sanitize_single_name(original_name) - - job_data["name"] = sanitized_name - name_mapping[original_name] = sanitized_name - - if original_name != sanitized_name: - logger.info(f"Sanitized job name: '{original_name}' -> '{sanitized_name}'") - - if "edges" in yaml_data: + new_name = AnthropicClient._unique_name( + sanitize_name(original_name, unicode_mode), taken_names, job_key, + ) + job_data["name"] = new_name + if original_name != new_name: + renamed.append(f"{original_name!r} -> {new_name!r}") + + if renamed: + logger.info(f"Sanitized {len(renamed)} job name(s): {', '.join(renamed)}") + + # The sentinel must not collide with anything a user can type — keys or + # names. Names count because a dangling edge is reported by name, and a + # reader matching it against the step list would be misled. + unresolved = AnthropicClient._unique_name( + AnthropicClient.UNRESOLVED_REFERENCE, + set(jobs or {}) | set(triggers or {}) | taken_names, + AnthropicClient.UNRESOLVED_REFERENCE, + ) + + def remap_reference(reference: object, section: str | None = None) -> str: + """Map a reference through the mapping for `section` (or either, for a key part). + + `source_job` resolves against jobs and `source_trigger` against + triggers. An edge *key* part has no field to say which it is, so it + tries jobs first and then triggers. + """ + sections = (section,) if section else ("jobs", "triggers") + for name in sections: + new_key = key_mappings[name].get(AnthropicClient._reference_key(reference)) + if new_key is not None: + return new_key + + # Not a key. The likeliest model mistake is referring to a step by + # its *name* instead of its key, which otherwise ships as a + # well-formed edge pointing at nothing. + if "jobs" in sections and reference is not None: + by_name = AnthropicClient._resolve_by_name(str(reference), original_job_names) + if by_name is not None: + logger.info( + f"Edge referred to step by name {str(reference)!r}; " + f"resolved to job key {by_name!r}", + ) + return by_name + + # Genuinely unresolvable. Sanitize it so it at least obeys the rule; + # if nothing survives, say so rather than leaking the raw value out. + resolved = sanitize_name(str(reference), unicode_mode) or unresolved + + # If the sanitized form is a real key, that is usually the right + # answer and not a coincidence: a key with a trailing space, a tab, + # a NUL, or one written in a different normal form all sanitize to + # exactly what the model wrote. Only treat it as a collision when + # the *original* key it belongs to was something else entirely. + owner = _sanitized_key_owner(resolved, sections) + if owner is not None: + if _is_the_same_reference(owner, reference): + return resolved + logger.warning( + f"Unresolvable reference {str(reference)!r} sanitizes to {resolved!r}, " + f"which belongs to a different step ({owner!r}); using the unresolved " + f"marker rather than binding to it", + ) + resolved = unresolved + + dangling.add(resolved) + return resolved + + def _sanitized_key_owner(resolved: str, sections: tuple) -> object: + """Return the original key that `resolved` is the sanitized form of.""" + for name in sections: + for original, new_key in key_mappings[name].items(): + if new_key == resolved: + return original[1] + return None + + def _is_the_same_reference(original_key: str, reference: object) -> bool: + """True if `original_key` and `reference` are the same name written differently. + + Whitespace, control characters and normal form are all differences a + reader would not see. A genuinely different name is not. + + The length cap is *not* one of them: `normalize_for_lookup` does not + truncate, so a 150-character key sanitizes to a 100-character one + that a 100-character reference matches, and this returns False — + the edge goes to the sentinel. That is a real gap, and it is here + rather than hidden because the fix belongs in whichever of the two + should stop caring about length. + """ + return normalize_for_lookup(original_key) == normalize_for_lookup(str(reference)) + + dangling = set() + + edges = yaml_data.get("edges") + if isinstance(edges, dict): sanitized_edges = {} - - for edge_key, edge_data in yaml_data["edges"].items(): - if "source_job" in edge_data: - original_source = str(edge_data["source_job"]) - edge_data["source_job"] = sanitize_single_name(original_source) - if original_source != edge_data["source_job"]: - logger.info(f"Sanitized edge source_job: '{original_source}' -> '{edge_data['source_job']}'") - - if "target_job" in edge_data: - original_target = str(edge_data["target_job"]) - edge_data["target_job"] = sanitize_single_name(original_target) - if original_target != edge_data["target_job"]: - logger.info(f"Sanitized edge target_job: '{original_target}' -> '{edge_data['target_job']}'") - - if "->" in edge_key: - source_part, target_part = edge_key.split("->", 1) - sanitized_source = sanitize_single_name(source_part) - sanitized_target = sanitize_single_name(target_part) - sanitized_edge_key = f"{sanitized_source}->{sanitized_target}" - - if sanitized_edge_key != edge_key: - logger.info(f"Sanitized edge key: '{edge_key}' -> '{sanitized_edge_key}'") - - sanitized_edges[sanitized_edge_key] = edge_data - else: - # If there's no arrow, just keep the original key - sanitized_edges[edge_key] = edge_data - + + remapped_fields = 0 + + for edge_key, edge_data in edges.items(): + if isinstance(edge_data, dict): + for field, section in ( + ("source_job", "jobs"), + ("target_job", "jobs"), + ("source_trigger", "triggers"), + ("target_trigger", "triggers"), + ): + if field in edge_data: + original_reference = edge_data[field] + edge_data[field] = remap_reference(original_reference, section) + if str(original_reference) != edge_data[field]: + remapped_fields += 1 + + label = AnthropicClient._edge_label(edge_key, edge_data, remap_reference) + + # The label is not unique on its own: two edges may join the + # same pair of steps (an on_success and an on_failure edge is an + # ordinary workflow). Keying on the bare label would drop one of + # them, so disambiguate instead of overwriting, with the suffix + # *inside* the cap, the same rule `_unique_name` follows. + sanitized_edge_key = truncate_graphemes(label, MAX_EDGE_KEY_LENGTH) + suffix = 2 + while sanitized_edge_key in sanitized_edges: + tail = f"-{suffix}" + trimmed = truncate_graphemes(label, MAX_EDGE_KEY_LENGTH - grapheme_length(tail)) + sanitized_edge_key = f"{trimmed}{tail}" + suffix += 1 + + sanitized_edges[sanitized_edge_key] = edge_data + + if remapped_fields: + logger.info(f"Remapped {remapped_fields} edge endpoint reference(s)") + + if len(sanitized_edges) != len(edges): # pragma: no cover - defensive + logger.error( + f"Edge count changed while sanitizing: {len(edges)} in, {len(sanitized_edges)} out", + ) + yaml_data["edges"] = sanitized_edges + if dangling: + # A well-formed edge pointing at nothing looks fine to every + # character check, so it used to ship in silence. It is still + # emitted — dropping the edge would lose more than it saves — but + # it is no longer invisible. Only the count goes to Sentry; the + # names are the caller's own, so they go to the log. + logger.warning( + f"Workflow has edge endpoints that match no step or trigger: " + f"{', '.join(sorted(dangling))}", + ) + sentry_sdk.capture_message( + f"Workflow has {len(dangling)} edge endpoint(s) matching no step or trigger", + level="warning", + ) + def finalize_yaml(self, parsed_yaml, preserved_values=None): """ Apply the full post-processing pipeline to a parsed workflow dict and @@ -472,7 +1002,31 @@ def finalize_yaml(self, parsed_yaml, preserved_values=None): self.sanitize_job_names(parsed_yaml) with sentry_sdk.start_span(description="restore_components"): self.restore_components(parsed_yaml, preserved_values) - return yaml.dump(parsed_yaml, sort_keys=False) + + dumped = yaml.dump(parsed_yaml, sort_keys=False, allow_unicode=True) + + # There is deliberately no remediation pass here. `restore_components` + # already degrades every unresolvable placeholder, so anything reaching + # this point in a body is *restored code* — and "contains the prefix + # anywhere" then means real code that happens to mention the token. + # That is reachable: `gen_project_prompts.yaml` shows the model the + # literal `__CODE_BLOCK_jobname__`, so a model quoting it back in a + # comment would have had that step's body replaced with the empty + # marker. The pass had no true-positive path and one way to destroy + # code, so it is gone. The id check below looks at ids only, not at + # bodies, for the same reason. + stray_ids = [ + value + for holder in iter_id_holders(parsed_yaml) + for value in (holder.get("id"),) + if isinstance(value, str) and value.startswith("__ID_") + ] + if stray_ids: + msg = f"{len(stray_ids)} id placeholder(s) survived finalize_yaml" + logger.error(msg) + sentry_sdk.capture_message(msg, level="error") + + return dumped def split_format_yaml(self, response, preserved_values=None, stream_manager=None): """Split text and YAML in response and format the YAML.""" @@ -574,36 +1128,58 @@ def extract_and_preserve_components(yaml_data): preserved_values = {} - if "jobs" in yaml_data: - for job_key, job_data in yaml_data["jobs"].items(): - if "body" in job_data: - body_content = job_data["body"].strip() - if body_content and body_content != "// Add operations here": - placeholder = f"__CODE_BLOCK_{job_key}__" - preserved_values[placeholder] = body_content - job_data["body"] = placeholder + for job_key, job_data in AnthropicClient._section(yaml_data, "jobs").items(): + if isinstance(job_data.get("body"), str): + body_content = job_data["body"].strip() + if body_content and body_content != "// Add operations here": + placeholder = f"{CODE_PLACEHOLDER_PREFIX}{job_key}__" + preserved_values[placeholder] = body_content + job_data["body"] = placeholder - if "id" in job_data: - placeholder = f"__ID_JOB_{job_key}__" - preserved_values[placeholder] = job_data["id"] - job_data["id"] = placeholder - - if "triggers" in yaml_data: - for trigger_key, trigger_data in yaml_data["triggers"].items(): - if "id" in trigger_data: - # Store the trigger ID directly without placeholder - preserved_values["trigger_id"] = trigger_data["id"] - # Remove the id key from what we send to the model - del trigger_data["id"] + if "id" in job_data: + placeholder = f"__ID_JOB_{job_key}__" + preserved_values[placeholder] = job_data["id"] + job_data["id"] = placeholder - if "edges" in yaml_data: - for edge_key, edge_data in yaml_data["edges"].items(): - if "id" in edge_data: - placeholder = f"__ID_EDGE_{edge_key}__" - preserved_values[placeholder] = edge_data["id"] - edge_data["id"] = placeholder - - return preserved_values, yaml.dump(yaml_data, sort_keys=False) + for trigger_data in AnthropicClient._section(yaml_data, "triggers").values(): + if "id" in trigger_data: + # Store the trigger ID directly without placeholder + preserved_values["trigger_id"] = trigger_data["id"] + # Remove the id key from what we send to the model + del trigger_data["id"] + + for edge_key, edge_data in AnthropicClient._section(yaml_data, "edges").items(): + if "id" in edge_data: + placeholder = f"__ID_EDGE_{edge_key}__" + preserved_values[placeholder] = edge_data["id"] + edge_data["id"] = placeholder + + # Backstop, through the same walker the redactor uses. The loop above + # only sees a top-level `jobs:`; a Lightning project export nests them + # under `workflows: -> : -> jobs:`, so nothing matched, nothing + # was swapped, and the dump below put every body into the system + # prompt. Anything the structured pass missed gets a placeholder here. + for index, holder in enumerate(iter_body_holders(yaml_data)): + if not has_unredacted_body({BODY_KEY: holder[BODY_KEY]}): + continue + # Both loops key into one namespace, and the structured pass above + # uses the job key verbatim — `__CODE_BLOCK___` is the form the + # prompt documents to the model, so it cannot change. Bump until the + # token is free instead: a job keyed `nested_1` would otherwise + # collide with backstop index 1 and carry another step's code. + suffix = index + placeholder = f"{CODE_PLACEHOLDER_PREFIX}nested_{suffix}__" + while placeholder in preserved_values: + suffix += 1 + placeholder = f"{CODE_PLACEHOLDER_PREFIX}nested_{suffix}__" + preserved_values[placeholder] = holder[BODY_KEY] + holder[BODY_KEY] = placeholder + + if has_unredacted_body(yaml_data): # pragma: no cover - defensive + logger.error("A job body survived component extraction; withholding the workflow") + return preserved_values, WITHHELD_NOTICE + + return preserved_values, yaml.dump(yaml_data, sort_keys=False, allow_unicode=True) def restore_components(self, yaml_data, preserved_values=None): """ @@ -613,54 +1189,125 @@ def restore_components(self, yaml_data, preserved_values=None): return preserved_values = preserved_values or {} - - if "jobs" in yaml_data: - for job_key, job_data in yaml_data["jobs"].items(): - if "body" in job_data: - current_body = job_data["body"] - if isinstance(current_body, str) and current_body in preserved_values: - job_data["body"] = preserved_values[current_body] - else: - job_data["body"] = "// Add operations here" - else: - job_data["body"] = "// Add operations here" + + # Bodies are restored through the same walker that swapped them. The + # swap walks the whole tree and this used to walk only a top-level + # `jobs:`, so a nested document went out to the user with + # `body: __CODE_BLOCK_nested_0__` where their code had been — the + # prompt was correctly redacted and the workflow was destroyed. + claims: dict[str, int] = {} + + for holder in iter_body_holders(yaml_data): + current_body = holder[BODY_KEY] + # Strip first. The model writing a placeholder back as a block + # scalar — the natural style for a `body:` — parses as + # `'__CODE_BLOCK_a__\n'`, which matched nothing, so the token + # shipped to the user in place of their code. + lookup = current_body.strip() if isinstance(current_body, str) else current_body + if isinstance(lookup, str) and lookup in preserved_values: + holder[BODY_KEY] = preserved_values[lookup] + claims[lookup] = claims.get(lookup, 0) + 1 + continue + + if not isinstance(current_body, str): + # A list or mapping body, which the `jobs:` pass below does + # not reach. + if CODE_PLACEHOLDER_PREFIX in str(current_body): + msg = "A non-string job body carries a code placeholder; replacing it" + logger.warning(msg) + sentry_sdk.capture_message(msg, level="warning") + holder[BODY_KEY] = "// Add operations here" + continue + + issued = AnthropicClient._issued_tokens_in(current_body, preserved_values) + if not issued and CODE_PLACEHOLDER_PREFIX not in current_body: + continue + + only_placeholders = AnthropicClient._is_only_placeholders( + current_body, preserved_values, + ) + + if issued and only_placeholders: + # The body is our token(s) and decoration, nothing else. Join + # them in the order written: "merge step a and step b" produces + # exactly `__CODE_BLOCK_a__\n__CODE_BLOCK_b__`, and returning + # only one of them, or neither, loses a body we are holding. + holder[BODY_KEY] = "\n".join(preserved_values[token] for token in issued) + for token in issued: + claims[token] = claims.get(token, 0) + 1 + logger.warning(f"Recovered {len(issued)} decorated code placeholder(s)") + + elif issued: + # A token embedded in other content. Substitute in place rather + # than replacing the whole body: a 500-line body whose last line + # is a comment naming the token used to collapse to the one + # statement the token stood for, which reads as working code. + holder[BODY_KEY] = AnthropicClient._substitute_issued_by_line( + current_body, preserved_values, + ) + for token in dict.fromkeys(issued): + claims[token] = claims.get(token, 0) + 1 + logger.warning( + f"Substituted {len(set(issued))} code placeholder(s) embedded in other content", + ) + + elif only_placeholders: + # Token-shaped and nothing else, but not one we issued — a stale + # token from an earlier turn. Nothing to restore it from, and + # shipping it puts a swap token in front of the user as if it + # were their code. + msg = "Unresolvable code placeholder in a job body, replacing with the empty-job marker" + logger.warning(msg) + sentry_sdk.capture_message(msg, level="warning") + holder[BODY_KEY] = "// Add operations here" + + else: + # Token-shaped text inside real code. `gen_project_prompts.yaml` + # shows the model the literal `__CODE_BLOCK_jobname__`, so a + # model quoting it back is ordinary output and must survive. + logger.info("A job body mentions a placeholder-shaped string; leaving it as written") + + AnthropicClient._report_claims(claims, preserved_values) + AnthropicClient._report_token_debris(yaml_data) + + for job_data in self._section(yaml_data, "jobs").values(): + if not isinstance(job_data.get("body"), str) or not job_data["body"].strip(): + job_data["body"] = "// Add operations here" - if "id" in job_data: - current_id = job_data["id"] + if "id" in job_data: + current_id = job_data["id"] - if isinstance(current_id, str) and current_id in preserved_values: - job_data["id"] = preserved_values[current_id] - elif isinstance(current_id, str) and current_id.startswith("__ID_") and current_id.endswith("__"): - msg = f"Unknown placeholder {current_id}, generating new ID" - logger.warning(msg) - sentry_sdk.capture_message(msg, level="warning") - job_data["id"] = str(uuid.uuid4()) - else: + if isinstance(current_id, str) and current_id in preserved_values: + job_data["id"] = preserved_values[current_id] + elif isinstance(current_id, str) and current_id.startswith("__ID_") and current_id.endswith("__"): + msg = f"Unknown placeholder {current_id}, generating new ID" + logger.warning(msg) + sentry_sdk.capture_message(msg, level="warning") job_data["id"] = str(uuid.uuid4()) + else: + job_data["id"] = str(uuid.uuid4()) - if "triggers" in yaml_data: - for trigger_key, trigger_data in yaml_data["triggers"].items(): - if "trigger_id" in preserved_values: - # Directly restore the preserved trigger ID - trigger_data["id"] = preserved_values["trigger_id"] - elif "id" not in trigger_data: - # Generate new ID if no preserved ID exists - trigger_data["id"] = str(uuid.uuid4()) - - if "edges" in yaml_data: - for edge_key, edge_data in yaml_data["edges"].items(): - if "id" in edge_data: - current_id = edge_data["id"] + for trigger_data in self._section(yaml_data, "triggers").values(): + if "trigger_id" in preserved_values: + # Directly restore the preserved trigger ID + trigger_data["id"] = preserved_values["trigger_id"] + elif "id" not in trigger_data: + # Generate new ID if no preserved ID exists + trigger_data["id"] = str(uuid.uuid4()) + + for edge_data in self._section(yaml_data, "edges").values(): + if "id" in edge_data: + current_id = edge_data["id"] - if isinstance(current_id, str) and current_id in preserved_values: - edge_data["id"] = preserved_values[current_id] - elif isinstance(current_id, str) and current_id.startswith("__ID_") and current_id.endswith("__"): - msg = f"Unknown placeholder {current_id}, generating new ID" - logger.warning(msg) - sentry_sdk.capture_message(msg, level="warning") - edge_data["id"] = str(uuid.uuid4()) - else: + if isinstance(current_id, str) and current_id in preserved_values: + edge_data["id"] = preserved_values[current_id] + elif isinstance(current_id, str) and current_id.startswith("__ID_") and current_id.endswith("__"): + msg = f"Unknown placeholder {current_id}, generating new ID" + logger.warning(msg) + sentry_sdk.capture_message(msg, level="warning") edge_data["id"] = str(uuid.uuid4()) + else: + edge_data["id"] = str(uuid.uuid4()) def process_stream_event(self, event, accumulated_response, text_started, sent_length, stream_manager, preserved_values=None): """ @@ -779,7 +1426,7 @@ def main(data_dict: dict) -> dict: page_name = data.context.get("page_name") current_page = { "type": "workflow", - "name": page_name + "name": page_name, } config = ChatConfig(api_key=data.api_key) if data.api_key else None @@ -826,7 +1473,7 @@ def main(data_dict: dict) -> dict: "response_yaml": result.content_yaml, "history": result.history, "usage": result.usage, - "meta": {"apollo_version": APOLLO_VERSION} + "meta": {"apollo_version": APOLLO_VERSION}, } if result.handover: @@ -851,7 +1498,7 @@ def main(data_dict: dict) -> dict: raise ApolloError(401, "Authentication failed", type="AUTH_ERROR") except RateLimitError as e: raise ApolloError( - 429, "Rate limit exceeded, please try again later", type="RATE_LIMIT", details={"retry_after": 60} + 429, "Rate limit exceeded, please try again later", type="RATE_LIMIT", details={"retry_after": 60}, ) except BadRequestError as e: # Not `str(e)`: Anthropic echoes the offending request, which is the prompt. diff --git a/services/yaml_utils.py b/services/yaml_utils.py index 940cd530..e623f170 100644 --- a/services/yaml_utils.py +++ b/services/yaml_utils.py @@ -4,10 +4,10 @@ Used by global_chat (router, planner, subagent caller) and by job_chat in subagent mode for job extraction, code stitching, and step inspection. """ -import re from collections.abc import Iterator import yaml +from name_rules import normalize_for_lookup from util import create_logger logger = create_logger("yaml_utils") @@ -23,20 +23,24 @@ def get_page_view(page: str | None) -> tuple[str | None, str | None]: workflows/ -> ("overview", None) workflow canvas settings / absent / anything else -> (None, None) - Because a name may itself contain "/", the returned step name is a - best-effort candidate — the caller must validate it against the workflow - YAML rather than trust it. + A step name may itself contain "/", so everything after the workflow + segment is taken as the step name rather than just the third segment — + otherwise "workflows/wf/Import A/B" loses the step focus entirely. The + split between workflow and step is still a guess when the *workflow* name + contains a "/", so the returned step name is a best-effort candidate: the + caller must validate it against the workflow YAML rather than trust it. """ if not page: return None, None parts = page.strip("/").split("/") - if parts[0] != "workflows": + if parts[0] != "workflows" or len(parts) < 2: return None, None if len(parts) == 2: return "overview", None - if len(parts) == 3 and parts[2] != "settings": - return "step", parts[2] - return None, None + step = "/".join(parts[2:]) + if step == "settings": + return None, None + return "step", step def get_step_name_from_page(page: str | None) -> str | None: @@ -54,43 +58,80 @@ def get_step_name_from_page(page: str | None) -> str | None: def normalize_name(name: str) -> str: - """Normalize a name for fuzzy matching: lowercase, non-alphanumeric chars become hyphens.""" - return re.sub(r'[^a-z0-9]', '-', name.lower()).strip('-') + """Normalize a name for fuzzy matching: lowercase, non-alphanumeric chars become hyphens. + + Unicode-aware — see ``name_rules.normalize_for_lookup``. "Alphanumeric" + means a letter, mark or digit in any script, so a non-Latin name folds to + itself rather than to the empty string. + """ + return normalize_for_lookup(name) def find_job_in_yaml(yaml_str: str, step_name: str) -> tuple[str | None, dict | None]: """ Find a job in the workflow YAML by step name. - Tries direct key match first, then normalized name comparison against - both the job key and the job's name field. + Resolution order, strictest first: an exact key, an exact name, then the + normalized fold — and the fold resolves only when it picks out exactly one + job. Anything ambiguous returns (None, None). + + The order matters because the result is *written* to: `router` and + `planner` hand the key straight to `stitch_job_code`, which replaces that + step's body. Taking the first fold hit meant an earlier job's *key* fold + could beat a later job's *exact name* — steps keyed `upload-data` + ("Legacy uploader") and `upload-data-2` ("Upload Data"), a lookup for + "Upload Data", and the model's generated code landed on the legacy step. + A miss costs a retry; a wrong hit destroys work. Returns: - (job_key, job_data) or (None, None) if not found or on parse error + (job_key, job_data) or (None, None) if not found, ambiguous, or on + parse error """ try: yaml_data = yaml.safe_load(yaml_str) except Exception: return None, None - if not yaml_data or "jobs" not in yaml_data: + if not isinstance(yaml_data, dict) or not isinstance(yaml_data.get("jobs"), dict): return None, None jobs = yaml_data["jobs"] - # Direct key match if step_name in jobs: return step_name, jobs[step_name] - # Normalized match: compare against job key and name field + exact_names = [ + key for key, data in jobs.items() if (data or {}).get("name") == step_name + ] + if exact_names: + return _only_match(exact_names, jobs, step_name, "name") + + # An empty normalization carries no information (the name was all + # punctuation), so never match on it. normalized_step = normalize_name(step_name) - for job_key, job_data in jobs.items(): - if normalize_name(job_key) == normalized_step: - return job_key, job_data - job_name = job_data.get("name", "") - if normalize_name(job_name) == normalized_step: - return job_key, job_data + if not normalized_step: + return None, None + folded = [ + key + for key, data in jobs.items() + if normalize_name(key) == normalized_step + or ((data or {}).get("name") and normalize_name(data["name"]) == normalized_step) + ] + return _only_match(folded, jobs, step_name, "folded name") + + +def _only_match( + matches: list, jobs: dict, step_name: str, how: str, +) -> tuple[str | None, dict | None]: + """Return the single match, or nothing when more than one job qualifies.""" + if len(matches) == 1: + return matches[0], jobs[matches[0]] + logger.warning( + f"Step reference {step_name!r} matches the {how} of {len(matches)} jobs " + f"({', '.join(sorted(str(match) for match in matches))}); leaving it " + f"unresolved rather than guessing, because the caller writes to it", + ) return None, None @@ -109,7 +150,7 @@ def workflow_has_job_code(yaml_str: str | None) -> bool: yaml_data = yaml.safe_load(yaml_str) except Exception: return False - if not yaml_data or "jobs" not in yaml_data: + if not isinstance(yaml_data, dict) or not isinstance(yaml_data.get("jobs"), dict): return False for job_data in yaml_data["jobs"].values(): body = (job_data or {}).get("body") @@ -316,11 +357,17 @@ def stitch_job_code(yaml_str: str, job_key: str, new_code: str) -> str: """ try: yaml_data = yaml.safe_load(yaml_str) - if yaml_data and "jobs" in yaml_data and job_key in yaml_data["jobs"]: - yaml_data["jobs"][job_key]["body"] = new_code - return yaml.dump(yaml_data, sort_keys=False) - except Exception: - pass + jobs = yaml_data.get("jobs") if isinstance(yaml_data, dict) else None + if isinstance(jobs, dict) and isinstance(jobs.get(job_key), dict): + jobs[job_key]["body"] = new_code + return yaml.dump(yaml_data, sort_keys=False, allow_unicode=True) + logger.error( + f"Could not stitch job code: no job keyed '{job_key}' in the workflow. " + f"The generated code has been discarded.", + ) + except Exception as error: + # Not `logger.exception`: a PyYAML error mark carries document text. + logger.error(f"Could not stitch job code into the workflow YAML ({type(error).__name__})") return yaml_str diff --git a/tools/unicode_parity/.gitignore b/tools/unicode_parity/.gitignore new file mode 100644 index 00000000..89f9ac04 --- /dev/null +++ b/tools/unicode_parity/.gitignore @@ -0,0 +1 @@ +out/ diff --git a/tools/unicode_parity/check.py b/tools/unicode_parity/check.py new file mode 100644 index 00000000..48f4e091 --- /dev/null +++ b/tools/unicode_parity/check.py @@ -0,0 +1,316 @@ +"""Compare services/name_rules.py against the Elixir ground truth. + +Run `elixir probe.exs` first (see its header). This script does two things: + + * reports every disagreement between Apollo's clustering and Elixir's, in + both the per-codepoint classification and the derived tables; + * prints the table literals to paste back into `name_rules` when a Unicode + version has moved. + +Exit status is non-zero if anything disagrees, so it can be wired into CI on a +runner that has Elixir. + +Usage, from this directory: + + elixir probe.exs + python3 check.py # report + python3 check.py --tables # also print the table literals +""" + +# This is a developer CLI: printing is its output, and it is all about raw +# codepoint values, so the "magic value" and "no print" rules do not apply. +# ruff: noqa: T201, PLR2004 + +from __future__ import annotations + +import sys +import unicodedata +from pathlib import Path + +sys.path.insert(0, str(Path(__file__).resolve().parents[2] / "services")) + +import name_rules as nr + +OUT = Path(__file__).parent / "out" + + +def _codepoints(path: Path) -> set[int]: + return {int(line.split()[0], 16) for line in path.read_text().split("\n") if line.strip()} + + +def _ranges(codes: set[int]) -> list[tuple[int, int]]: + out: list[list[int]] = [] + for code in sorted(codes): + if out and code == out[-1][1] + 1: + out[-1][1] = code + else: + out.append([code, code]) + return [(a, b) for a, b in out] + + +def _literal(name: str, ranges: list[tuple[int, int]], per_line: int = 3) -> str: + rows = [ + " " + " ".join(f"(0x{a:04X}, 0x{b:04X})," for a, b in ranges[i : i + per_line]) + for i in range(0, len(ranges), per_line) + ] + return f"{name} = (\n" + "\n".join(rows) + "\n)\n" + + +def check_classes() -> tuple[int, dict[str, list[int]]]: + """Every codepoint must land in the same break-class bucket as Elixir.""" + elixir: dict[int, str] = {} + for line in (OUT / "classmap.txt").read_text().split("\n"): + if line.strip(): + code, bucket = line.split() + elixir[int(code, 16)] = bucket + + buckets = {nr._EXTEND: "A", nr._SPACING: "A", nr._PREP: "P", nr._CONTROL: "C", nr._JOIN: "J"} + wrong: dict[str, list[int]] = {"A": [], "P": [], "C": [], "O": []} + + for code in range(0x110000): + if 0xD800 <= code <= 0xDFFF: + continue + mine = buckets.get(nr._break_class(chr(code)), "O") + if mine == "J": + continue + theirs = elixir.get(code, "O") + if mine != theirs: + wrong[theirs].append(code) + + return sum(len(v) for v in wrong.values()), wrong + + +def check_extpict() -> set[int]: + """Extended_Pictographic is not a break class, so it needs its own check. + + This is the one the codepoint sweep structurally cannot make. An over-broad + set here silently changes GB11 and nothing else notices. + """ + theirs = _codepoints(OUT / "extpict.txt") + mine = {c for c in range(0x110000) if not (0xD800 <= c <= 0xDFFF) and nr._is_ext_pict(c)} + return mine ^ theirs + + +def check_trim() -> set[str]: + theirs = {chr(c) for c in _codepoints(OUT / "trim.txt")} + return theirs ^ set(nr._TRIM_CHARS) + + +def check_lookback() -> set[int]: + """What a GB11 emoji run may be separated from its ZWJ by.""" + theirs = _codepoints(OUT / "lookback.txt") + mine = { + c + for c in range(0x110000) + if not (0xD800 <= c <= 0xDFFF) and nr._break_class(chr(c)) in nr._RUN_CONTINUES + } + return mine ^ theirs + + +def check_ccc() -> dict[int, int]: + """Canonical combining class, which drives NFC ordering and blocking. + + Its own check because ccc is independent of the break class: the codepoint + sweep above can pass while ccc is wrong, which is exactly what happened — + ten codepoints had their break class corrected in `_LAG_EXTEND` and their + combining class rode along wrong, unseen. + """ + wrong = {} + theirs = {} + for line in (OUT / "ccc.txt").read_text().split("\n"): + if line.strip(): + code, value = line.split() + theirs[int(code, 16)] = int(value) + + for code in range(0x110000): + if 0xD800 <= code <= 0xDFFF: + continue + mine = nr._combining_class(chr(code)) + if mine != theirs.get(code, 0): + wrong[code] = theirs.get(code, 0) + return wrong + + +def check_nfc_strings() -> tuple[int, int, list]: + """Whole-string NFC against OTP. + + The per-codepoint checks above are structurally blind to this: OTP's + composition rule only differs from the spec at three characters or more, + so nothing that looks at one codepoint at a time can see it. + """ + path = OUT / "nfc_strings.txt" + if not path.exists(): + # No escape hatch. This is the only check that can catch a `_compose` + # regression, so "input missing" must not read as "passed" — every + # other check hard-fails on a missing file and so does this one. + raise FileNotFoundError( + f"{path} is missing. Run `elixir probe.exs` before check.py; a silent pass here " + f"is worse than no check at all.", + ) + + known_rows = _load_known() + mismatches = [] + seen_known: set[str] = set() + total = 0 + for line in path.read_text().split("\n"): + if not line.strip(): + continue + total += 1 + raw, expected = line.split("\t") + text = "".join(chr(int(c, 16)) for c in raw.split(",")) + want = "".join(chr(int(c, 16)) for c in expected.split(",")) + got = nr.normalize_nfc(text) + if got == want: + continue + # Keyed on the input *and the output we expect to produce for it*, so + # a changed output fails even for a row already on the list. + signature = f"{raw.strip()}\t{','.join(f'{ord(c):X}' for c in got)}" + if signature in known_rows: + # Counted as a set: the corpus contains a shape more than once + # where two generators overlap, and the allowlist lists it once. + seen_known.add(signature) + else: + mismatches.append((text, want, got)) + return len(mismatches), total, mismatches, seen_known + + +#: The exact inputs `normalize_nfc` is documented as getting wrong. See that +#: file's header for the format and for what each group is. +KNOWN_DIVERGENCES = Path(__file__).parent / "known_nfc_divergences.txt" + + +def _load_known() -> set[str]: + """Each entry is `inputoutput-we-produce`, so a changed output fails.""" + if not KNOWN_DIVERGENCES.exists(): + return set() + return { + line.split(" #")[0].strip() + for line in KNOWN_DIVERGENCES.read_text().split("\n") + if line.strip() and not line.lstrip().startswith("#") + } + + +def check_clusters() -> tuple[int, int, list]: + """Cluster boundaries against Elixir, not just cluster counts. + + Nothing else here can see the clusterer's rules: the per-codepoint sweep + buckets Hangul and regional indicators to "other", so the GB12/GB13 parity + rule and the CR-LF rule were untested by every check in this file. + """ + path = OUT / "clusters.txt" + mismatches = [] + total = 0 + for line in path.read_text().split("\n"): + if not line.strip(): + continue + total += 1 + raw, expected = line.split("\t") + text = "".join(chr(int(c, 16)) for c in raw.split(",")) + want = [ + "".join(chr(int(c, 16)) for c in group.split("+")) + for group in expected.split(",") + ] + got = nr.grapheme_clusters(text) + if got != want: + mismatches.append((text, want, got)) + return len(mismatches), total, mismatches + + +#: Everything probe.exs writes. Checked up front so a partial or stale run is +#: an error rather than a quiet subset. +EXPECTED_OUTPUTS = ( + "classmap.txt", "extpict.txt", "trim.txt", "lookback.txt", + "ccc.txt", "nfc_strings.txt", "clusters.txt", "range_edges.txt", "version.txt", +) + + +def main() -> int: + if not OUT.exists(): + print(f"No probe output at {OUT}. Run `elixir probe.exs` first.") + return 2 + + missing = [name for name in EXPECTED_OUTPUTS if not (OUT / name).exists()] + if missing: + print(f"Probe output incomplete: {', '.join(missing)}. Re-run `elixir probe.exs`.") + return 2 + + stale = [p.name for p in OUT.iterdir() if p.is_file() and p.name not in EXPECTED_OUTPUTS] + if stale: + print(f"Stale files in {OUT}: {', '.join(sorted(stale))}. Delete them; this directory " + f"accumulates and an unread file is a check nobody is running.") + return 2 + + print((OUT / "version.txt").read_text().strip()) + print(f"python unicodedata {unicodedata.unidata_version}\n") + + failures = 0 + + total, wrong = check_classes() + print(f"break classes {'OK' if not total else f'{total} DISAGREEMENTS'}") + failures += total + + for bucket, codes in wrong.items(): + if codes: + print(f" Elixir says {bucket} for {len(codes)} codepoints we call something else") + + ccc_wrong = check_ccc() + print(f"combining classes {'OK' if not ccc_wrong else f'{len(ccc_wrong)} DISAGREEMENTS'}") + failures += len(ccc_wrong) + + for label, diff in ( + ("ExtPict", check_extpict()), + ("trim set", check_trim()), + ("GB11 lookback", check_lookback()), + ): + print(f"{label:18} {'OK' if not diff else f'{len(diff)} DISAGREEMENTS'}") + failures += len(diff) + + bad, total, examples = check_clusters() + print(f"cluster boundaries {'OK' if not bad else f'{bad} of {total} DISAGREE'}") + failures += bad + for text, want, got in examples[:5]: + print(f" in {[hex(ord(c)) for c in text]}") + print(f" otp {want}") + print(f" py {got}") + + bad, total, examples, seen_known = check_nfc_strings() + known = len(seen_known) + note = f" ({known} known-divergent rows skipped)" if known else "" + print(f"NFC (whole strings) {'OK' if not bad else f'{bad} of {total} DISAGREE'}{note}") + failures += bad + + # Assert the count rather than print it. A row that stops diverging is as + # important as one that starts: it means the allowlist is stale, and a + # stale allowlist is how a widened sweep stays green while the gap grows. + listed = len(_load_known()) + if known != listed: + print( + f"allowlist {listed} rows listed but {known} diverged. " + f"Delete the rows that no longer diverge, or add the ones that now do " + f"(re-run with --tables to see them).", + ) + failures += abs(listed - known) + for text, want, got in examples[:5]: + print(f" in {[hex(ord(c)) for c in text]}") + print(f" otp {[hex(ord(c)) for c in want]}") + print(f" py {[hex(ord(c)) for c in got]}") + + if "--tables" in sys.argv: + print("\n# --- paste into services/name_rules.py ---\n") + print(_literal("_EXT_PICT_RANGES", _ranges(_codepoints(OUT / "extpict.txt")))) + print(_literal("_LAG_EXTEND", _ranges(set(wrong["A"])))) + print(_literal("_LAG_CONTROL", _ranges(set(wrong["C"])))) + if ccc_wrong: + body = ",\n".join(f" 0x{c:04X}: {v}," for c, v in sorted(ccc_wrong.items())) + print("_LAG_CCC = {\n" + body + "\n}") + + if failures: + print( + f"\n{failures} disagreement(s). Re-run with --tables and paste the literals into " + f"name_rules, then re-run the unit suite.", + ) + return 1 if failures else 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/tools/unicode_parity/edges.py b/tools/unicode_parity/edges.py new file mode 100644 index 00000000..9902e132 --- /dev/null +++ b/tools/unicode_parity/edges.py @@ -0,0 +1,80 @@ +"""Emit the edge codepoints of every range table in `services/name_rules.py`. + +`probe.exs` used to sweep a hand-picked slice of each range, which never steps +across a boundary: U+1160 HANGUL JUNGSEONG FILLER is assigned and GCB=V, and +narrowing `_HANGUL_V` to start at U+1161 left the harness at exit 0. + +So the probe reads this file rather than naming codepoints itself. Every range +in the tables contributes its first and last member and one either side, which +is where an off-by-one lives. Add a range to `name_rules` and it is swept +automatically; that is the point. + +Run before `probe.exs`: + + python3 edges.py && elixir probe.exs && python3 check.py +""" + +# A developer CLI: printing is its output, and it is all about raw codepoint +# values. +# ruff: noqa: T201, PLR2004 + +from __future__ import annotations + +import sys +from pathlib import Path + +sys.path.insert(0, str(Path(__file__).resolve().parents[2] / "services")) + +import name_rules as nr + +OUT = Path(__file__).parent / "out" + +#: Every range-shaped table. `_LAG_*` and `_EXT_PICT_RANGES` are tuples of +#: (low, high) pairs; the Hangul ones are tuples of `range` objects. +RANGE_TABLES = { + "_HANGUL_L": nr._HANGUL_L, + "_HANGUL_V": nr._HANGUL_V, + "_HANGUL_T": nr._HANGUL_T, + "_HANGUL_SYLLABLES": (nr._HANGUL_SYLLABLES,), + "_REGIONAL_INDICATOR": (nr._REGIONAL_INDICATOR,), + "_TAGS": (nr._TAGS,), + "_SKIN_TONES": (nr._SKIN_TONES,), + "_C0": (nr._C0,), + "_C1": (nr._C1,), + "_SURROGATES": (nr._SURROGATES,), + "_LAG_EXTEND": nr._LAG_EXTEND, + "_LAG_CONTROL": nr._LAG_CONTROL, + "_EXT_PICT_RANGES": nr._EXT_PICT_RANGES, +} + + +def _bounds(entry: object) -> tuple[int, int]: + if isinstance(entry, range): + return entry.start, entry.stop - 1 + low, high = entry + return low, high + + +def main() -> int: + edges: set[int] = set() + for table in RANGE_TABLES.values(): + for entry in table: + low, high = _bounds(entry) + # The boundary and one step outside it, both ends. Inside-the-range + # values are already covered by the sweeps; it is the step across + # the edge that a hand-picked slice never makes. + edges.update({low - 1, low, high, high + 1}) + + edges = {code for code in edges if 0 <= code <= 0x10FFFF and not 0xD800 <= code <= 0xDFFF} + + OUT.mkdir(exist_ok=True) + (OUT / "range_edges.txt").write_text( + "\n".join(f"{code:X}" for code in sorted(edges)) + "\n", + ) + print(f"wrote out/range_edges.txt: {len(edges)} edge codepoints " + f"from {sum(len(t) for t in RANGE_TABLES.values())} ranges") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/tools/unicode_parity/known_nfc_divergences.txt b/tools/unicode_parity/known_nfc_divergences.txt new file mode 100644 index 00000000..9a497e6c --- /dev/null +++ b/tools/unicode_parity/known_nfc_divergences.txt @@ -0,0 +1,17500 @@ +# Inputs `services/name_rules.normalize_nfc` normalises differently from OTP. +# Each line is `INPUTWHAT-WE-PRODUCE`, both comma-separated hex. +# +# Keyed on the OUTPUT as well as the input. Keying on the input alone exempted +# a quarter of the corpus from output checking entirely: deleting the +# `previous_ccc == 0` clause from `_compose` — the whole point of that function +# — left `check.py` at exit 0, because the rows it broke were already listed +# for a different reason. `check.py` also asserts this file's row count. +# +# Rows are DEDUPED. An earlier revision listed 24 signatures twice, every one +# `1100..1117,AC00,11A7`, produced where two generators in probe.exs overlap. +# `check.py` compares deduped to deduped, so it could not see a row listed +# twice. The count in the banner below is the unique one, and is the figure +# `check.py` asserts against. +# +# ========================================================================== +# 17423 unique diverging signatures out of 72269 corpus rows. +# +# group 1 32 composition rule (base, mark, class-zero, lower mark) +# group 2A 616 jamo lead + non-Hangul two-part vowel +# group 2B 15652 jamo lead + precomposed Hangul syllable +# group 2C 126 jamo lead + bare jamo (REVERSE direction of 2B) +# group 2D 997 OTP deletes U+11A7 after an LV syllable or L+V pair +# ========================================================================== +# +# READ THIS BEFORE CHANGING `_compose`: +# +# * 2C IS THE REVERSE DIRECTION FROM 2B. A fix aimed only at 2B makes 2C +# worse. This is the trap in this artefact. +# * 2D is PURE HANGUL — no second script involved — so do not describe the +# gap as cross-script. It was invisible until the trailers were extended +# down to U+11A7; they started at U+11A8. +# * These counts are NOT the size of the gap. They are the size of the +# intersection between the gap and this corpus. Measured exhaustively +# rather than over the probe, groups 1, 2A and 2C are 91,200 / >=3,604 / +# 10,773 — three orders of magnitude apart from what the probe finds for +# group 1. They looked steady across earlier widenings only because those +# widenings moved the axis 2B feeds on and left the others alone. +# * 2B does not converge. It diverges for 106 of 125 jamo leads (84.8%). +# +# --- what these are --- +# +# GROUP 1 -- the composition-rule gap documented in `normalize_nfc`: a base, a +# mark, any class-zero character, then a mark of lower class. +# +# GROUPS 2A-2D -- the Hangul routing gap, OpenFn/apollo#655. `_compose` sends +# any cluster containing a Hangul-class character to Python's spec NFC, and OTP +# instead composes onto the cluster lead. That is FOUR mechanisms: +# +# 2A -- a jamo lead followed by a *non-Hangul* two-part vowel (Indic, +# Sinhala, Balinese). No Hangul syllable involved, which is why it is the +# least obvious. +# 2B -- a jamo lead followed by a precomposed Hangul syllable, which OTP +# decomposes because it is not the cluster lead. `U+1113 U+AC00` is +# `1113,1100,1161` in OTP and `1113,AC00` here. +# 2C -- a jamo lead followed by bare jamo, which we compose into a syllable +# and OTP leaves apart. +# 2D -- OTP deletes U+11A7 after an LV syllable or an L+V pair, for 100% of +# the 399 LV syllables. We keep it. +# +# The corpus sweeps the boundary of every range in `name_rules`, plus one +# either side, generated by edges.py — a hand-picked slice never steps across +# an edge, and three rounds running that is where the surviving mutant was. +# It also sweeps the extended jamo blocks (U+A960-A97C lead, +# U+D7B0-D7C6 vowel, U+D7CB-D7FB trailing). It had zero codepoints from all +# three, so narrowing any of the `_HANGUL_*` ranges in `name_rules` left this +# harness at exit 0 while `U+A960 U+1161` went from one grapheme to two. +# +# Ordinary Korean text is unaffected: `한국어`, `안녕하세요` and `환자 등록` all +# round-trip. But 2D is pure Hangul, so do not describe the gap as cross-script. +# +# If you have fixed a group, delete its rows and re-run check.py. +# --- group 1: composition rule (32 rows) --- +41,302,200C,323 1EAC,200C +41,302,200D,323 1EAC,200D +41,302,FE00,323 1EAC,FE00 +41,302,FE0F,323 1EAC,FE0F +41,302,34F,323 1EAC,34F +41,302,1F3FB,323 1EAC,1F3FB +41,302,1F3FF,323 1EAC,1F3FF +41,302,E0067,323 1EAC,E0067 +61,302,200C,323 1EAD,200C +61,302,200D,323 1EAD,200D +61,302,FE00,323 1EAD,FE00 +61,302,FE0F,323 1EAD,FE0F +61,302,34F,323 1EAD,34F +61,302,1F3FB,323 1EAD,1F3FB +61,302,1F3FF,323 1EAD,1F3FF +61,302,E0067,323 1EAD,E0067 +4F,302,200C,323 1ED8,200C +4F,302,200D,323 1ED8,200D +4F,302,FE00,323 1ED8,FE00 +4F,302,FE0F,323 1ED8,FE0F +4F,302,34F,323 1ED8,34F +4F,302,1F3FB,323 1ED8,1F3FB +4F,302,1F3FF,323 1ED8,1F3FF +4F,302,E0067,323 1ED8,E0067 +45,302,200C,323 1EC6,200C +45,302,200D,323 1EC6,200D +45,302,FE00,323 1EC6,FE00 +45,302,FE0F,323 1EC6,FE0F +45,302,34F,323 1EC6,34F +45,302,1F3FB,323 1EC6,1F3FB +45,302,1F3FF,323 1EC6,1F3FF +45,302,E0067,323 1EC6,E0067 +# --- group 2A: jamo + non-Hangul two-part vowel (616 rows) --- +1113,CC0 1113,CC0 +1113,9CB 1113,9CB +1113,BCA 1113,BCA +1113,D4A 1113,D4A +1113,DDC 1113,DDC +1113,1B40 1113,1B40 +1113,CC7 1113,CC7 +1113,D4C 1113,D4C +1114,CC0 1114,CC0 +1114,9CB 1114,9CB +1114,BCA 1114,BCA +1114,D4A 1114,D4A +1114,DDC 1114,DDC +1114,1B40 1114,1B40 +1114,CC7 1114,CC7 +1114,D4C 1114,D4C +1115,CC0 1115,CC0 +1115,9CB 1115,9CB +1115,BCA 1115,BCA +1115,D4A 1115,D4A +1115,DDC 1115,DDC +1115,1B40 1115,1B40 +1115,CC7 1115,CC7 +1115,D4C 1115,D4C +1116,CC0 1116,CC0 +1116,9CB 1116,9CB +1116,BCA 1116,BCA +1116,D4A 1116,D4A +1116,DDC 1116,DDC +1116,1B40 1116,1B40 +1116,CC7 1116,CC7 +1116,D4C 1116,D4C +1117,CC0 1117,CC0 +1117,9CB 1117,9CB +1117,BCA 1117,BCA +1117,D4A 1117,D4A +1117,DDC 1117,DDC +1117,1B40 1117,1B40 +1117,CC7 1117,CC7 +1117,D4C 1117,D4C +1118,CC0 1118,CC0 +1118,9CB 1118,9CB +1118,BCA 1118,BCA +1118,D4A 1118,D4A +1118,DDC 1118,DDC +1118,1B40 1118,1B40 +1118,CC7 1118,CC7 +1118,D4C 1118,D4C +1119,CC0 1119,CC0 +1119,9CB 1119,9CB +1119,BCA 1119,BCA +1119,D4A 1119,D4A +1119,DDC 1119,DDC +1119,1B40 1119,1B40 +1119,CC7 1119,CC7 +1119,D4C 1119,D4C +111A,CC0 111A,CC0 +111A,9CB 111A,9CB +111A,BCA 111A,BCA +111A,D4A 111A,D4A +111A,DDC 111A,DDC +111A,1B40 111A,1B40 +111A,CC7 111A,CC7 +111A,D4C 111A,D4C +111B,CC0 111B,CC0 +111B,9CB 111B,9CB +111B,BCA 111B,BCA +111B,D4A 111B,D4A +111B,DDC 111B,DDC +111B,1B40 111B,1B40 +111B,CC7 111B,CC7 +111B,D4C 111B,D4C +111C,CC0 111C,CC0 +111C,9CB 111C,9CB +111C,BCA 111C,BCA +111C,D4A 111C,D4A +111C,DDC 111C,DDC +111C,1B40 111C,1B40 +111C,CC7 111C,CC7 +111C,D4C 111C,D4C +111D,CC0 111D,CC0 +111D,9CB 111D,9CB +111D,BCA 111D,BCA +111D,D4A 111D,D4A +111D,DDC 111D,DDC +111D,1B40 111D,1B40 +111D,CC7 111D,CC7 +111D,D4C 111D,D4C +111E,CC0 111E,CC0 +111E,9CB 111E,9CB +111E,BCA 111E,BCA +111E,D4A 111E,D4A +111E,DDC 111E,DDC +111E,1B40 111E,1B40 +111E,CC7 111E,CC7 +111E,D4C 111E,D4C +111F,CC0 111F,CC0 +111F,9CB 111F,9CB +111F,BCA 111F,BCA +111F,D4A 111F,D4A +111F,DDC 111F,DDC +111F,1B40 111F,1B40 +111F,CC7 111F,CC7 +111F,D4C 111F,D4C +1120,CC0 1120,CC0 +1120,9CB 1120,9CB +1120,BCA 1120,BCA +1120,D4A 1120,D4A +1120,DDC 1120,DDC +1120,1B40 1120,1B40 +1120,CC7 1120,CC7 +1120,D4C 1120,D4C +1121,CC0 1121,CC0 +1121,9CB 1121,9CB +1121,BCA 1121,BCA +1121,D4A 1121,D4A +1121,DDC 1121,DDC +1121,1B40 1121,1B40 +1121,CC7 1121,CC7 +1121,D4C 1121,D4C +1122,CC0 1122,CC0 +1122,9CB 1122,9CB +1122,BCA 1122,BCA +1122,D4A 1122,D4A +1122,DDC 1122,DDC +1122,1B40 1122,1B40 +1122,CC7 1122,CC7 +1122,D4C 1122,D4C +1123,CC0 1123,CC0 +1123,9CB 1123,9CB +1123,BCA 1123,BCA +1123,D4A 1123,D4A +1123,DDC 1123,DDC +1123,1B40 1123,1B40 +1123,CC7 1123,CC7 +1123,D4C 1123,D4C +1124,CC0 1124,CC0 +1124,9CB 1124,9CB +1124,BCA 1124,BCA +1124,D4A 1124,D4A +1124,DDC 1124,DDC +1124,1B40 1124,1B40 +1124,CC7 1124,CC7 +1124,D4C 1124,D4C +1125,CC0 1125,CC0 +1125,9CB 1125,9CB +1125,BCA 1125,BCA +1125,D4A 1125,D4A +1125,DDC 1125,DDC +1125,1B40 1125,1B40 +1125,CC7 1125,CC7 +1125,D4C 1125,D4C +1126,CC0 1126,CC0 +1126,9CB 1126,9CB +1126,BCA 1126,BCA +1126,D4A 1126,D4A +1126,DDC 1126,DDC +1126,1B40 1126,1B40 +1126,CC7 1126,CC7 +1126,D4C 1126,D4C +1127,CC0 1127,CC0 +1127,9CB 1127,9CB +1127,BCA 1127,BCA +1127,D4A 1127,D4A +1127,DDC 1127,DDC +1127,1B40 1127,1B40 +1127,CC7 1127,CC7 +1127,D4C 1127,D4C +1128,CC0 1128,CC0 +1128,9CB 1128,9CB +1128,BCA 1128,BCA +1128,D4A 1128,D4A +1128,DDC 1128,DDC +1128,1B40 1128,1B40 +1128,CC7 1128,CC7 +1128,D4C 1128,D4C +1129,CC0 1129,CC0 +1129,9CB 1129,9CB +1129,BCA 1129,BCA +1129,D4A 1129,D4A +1129,DDC 1129,DDC +1129,1B40 1129,1B40 +1129,CC7 1129,CC7 +1129,D4C 1129,D4C +112A,CC0 112A,CC0 +112A,9CB 112A,9CB +112A,BCA 112A,BCA +112A,D4A 112A,D4A +112A,DDC 112A,DDC +112A,1B40 112A,1B40 +112A,CC7 112A,CC7 +112A,D4C 112A,D4C +112B,CC0 112B,CC0 +112B,9CB 112B,9CB +112B,BCA 112B,BCA +112B,D4A 112B,D4A +112B,DDC 112B,DDC +112B,1B40 112B,1B40 +112B,CC7 112B,CC7 +112B,D4C 112B,D4C +112C,CC0 112C,CC0 +112C,9CB 112C,9CB +112C,BCA 112C,BCA +112C,D4A 112C,D4A +112C,DDC 112C,DDC +112C,1B40 112C,1B40 +112C,CC7 112C,CC7 +112C,D4C 112C,D4C +112D,CC0 112D,CC0 +112D,9CB 112D,9CB +112D,BCA 112D,BCA +112D,D4A 112D,D4A +112D,DDC 112D,DDC +112D,1B40 112D,1B40 +112D,CC7 112D,CC7 +112D,D4C 112D,D4C +112E,CC0 112E,CC0 +112E,9CB 112E,9CB +112E,BCA 112E,BCA +112E,D4A 112E,D4A +112E,DDC 112E,DDC +112E,1B40 112E,1B40 +112E,CC7 112E,CC7 +112E,D4C 112E,D4C +112F,CC0 112F,CC0 +112F,9CB 112F,9CB +112F,BCA 112F,BCA +112F,D4A 112F,D4A +112F,DDC 112F,DDC +112F,1B40 112F,1B40 +112F,CC7 112F,CC7 +112F,D4C 112F,D4C +1130,CC0 1130,CC0 +1130,9CB 1130,9CB +1130,BCA 1130,BCA +1130,D4A 1130,D4A +1130,DDC 1130,DDC +1130,1B40 1130,1B40 +1130,CC7 1130,CC7 +1130,D4C 1130,D4C +1131,CC0 1131,CC0 +1131,9CB 1131,9CB +1131,BCA 1131,BCA +1131,D4A 1131,D4A +1131,DDC 1131,DDC +1131,1B40 1131,1B40 +1131,CC7 1131,CC7 +1131,D4C 1131,D4C +1132,CC0 1132,CC0 +1132,9CB 1132,9CB +1132,BCA 1132,BCA +1132,D4A 1132,D4A +1132,DDC 1132,DDC +1132,1B40 1132,1B40 +1132,CC7 1132,CC7 +1132,D4C 1132,D4C +1133,CC0 1133,CC0 +1133,9CB 1133,9CB +1133,BCA 1133,BCA +1133,D4A 1133,D4A +1133,DDC 1133,DDC +1133,1B40 1133,1B40 +1133,CC7 1133,CC7 +1133,D4C 1133,D4C +1134,CC0 1134,CC0 +1134,9CB 1134,9CB +1134,BCA 1134,BCA +1134,D4A 1134,D4A +1134,DDC 1134,DDC +1134,1B40 1134,1B40 +1134,CC7 1134,CC7 +1134,D4C 1134,D4C +1135,CC0 1135,CC0 +1135,9CB 1135,9CB +1135,BCA 1135,BCA +1135,D4A 1135,D4A +1135,DDC 1135,DDC +1135,1B40 1135,1B40 +1135,CC7 1135,CC7 +1135,D4C 1135,D4C +1136,CC0 1136,CC0 +1136,9CB 1136,9CB +1136,BCA 1136,BCA +1136,D4A 1136,D4A +1136,DDC 1136,DDC +1136,1B40 1136,1B40 +1136,CC7 1136,CC7 +1136,D4C 1136,D4C +1137,CC0 1137,CC0 +1137,9CB 1137,9CB +1137,BCA 1137,BCA +1137,D4A 1137,D4A +1137,DDC 1137,DDC +1137,1B40 1137,1B40 +1137,CC7 1137,CC7 +1137,D4C 1137,D4C +1138,CC0 1138,CC0 +1138,9CB 1138,9CB +1138,BCA 1138,BCA +1138,D4A 1138,D4A +1138,DDC 1138,DDC +1138,1B40 1138,1B40 +1138,CC7 1138,CC7 +1138,D4C 1138,D4C +1139,CC0 1139,CC0 +1139,9CB 1139,9CB +1139,BCA 1139,BCA +1139,D4A 1139,D4A +1139,DDC 1139,DDC +1139,1B40 1139,1B40 +1139,CC7 1139,CC7 +1139,D4C 1139,D4C +113A,CC0 113A,CC0 +113A,9CB 113A,9CB +113A,BCA 113A,BCA +113A,D4A 113A,D4A +113A,DDC 113A,DDC +113A,1B40 113A,1B40 +113A,CC7 113A,CC7 +113A,D4C 113A,D4C +113B,CC0 113B,CC0 +113B,9CB 113B,9CB +113B,BCA 113B,BCA +113B,D4A 113B,D4A +113B,DDC 113B,DDC +113B,1B40 113B,1B40 +113B,CC7 113B,CC7 +113B,D4C 113B,D4C +113C,CC0 113C,CC0 +113C,9CB 113C,9CB +113C,BCA 113C,BCA +113C,D4A 113C,D4A +113C,DDC 113C,DDC +113C,1B40 113C,1B40 +113C,CC7 113C,CC7 +113C,D4C 113C,D4C +113D,CC0 113D,CC0 +113D,9CB 113D,9CB +113D,BCA 113D,BCA +113D,D4A 113D,D4A +113D,DDC 113D,DDC +113D,1B40 113D,1B40 +113D,CC7 113D,CC7 +113D,D4C 113D,D4C +113E,CC0 113E,CC0 +113E,9CB 113E,9CB +113E,BCA 113E,BCA +113E,D4A 113E,D4A +113E,DDC 113E,DDC +113E,1B40 113E,1B40 +113E,CC7 113E,CC7 +113E,D4C 113E,D4C +113F,CC0 113F,CC0 +113F,9CB 113F,9CB +113F,BCA 113F,BCA +113F,D4A 113F,D4A +113F,DDC 113F,DDC +113F,1B40 113F,1B40 +113F,CC7 113F,CC7 +113F,D4C 113F,D4C +1140,CC0 1140,CC0 +1140,9CB 1140,9CB +1140,BCA 1140,BCA +1140,D4A 1140,D4A +1140,DDC 1140,DDC +1140,1B40 1140,1B40 +1140,CC7 1140,CC7 +1140,D4C 1140,D4C +1141,CC0 1141,CC0 +1141,9CB 1141,9CB +1141,BCA 1141,BCA +1141,D4A 1141,D4A +1141,DDC 1141,DDC +1141,1B40 1141,1B40 +1141,CC7 1141,CC7 +1141,D4C 1141,D4C +1142,CC0 1142,CC0 +1142,9CB 1142,9CB +1142,BCA 1142,BCA +1142,D4A 1142,D4A +1142,DDC 1142,DDC +1142,1B40 1142,1B40 +1142,CC7 1142,CC7 +1142,D4C 1142,D4C +1143,CC0 1143,CC0 +1143,9CB 1143,9CB +1143,BCA 1143,BCA +1143,D4A 1143,D4A +1143,DDC 1143,DDC +1143,1B40 1143,1B40 +1143,CC7 1143,CC7 +1143,D4C 1143,D4C +1144,CC0 1144,CC0 +1144,9CB 1144,9CB +1144,BCA 1144,BCA +1144,D4A 1144,D4A +1144,DDC 1144,DDC +1144,1B40 1144,1B40 +1144,CC7 1144,CC7 +1144,D4C 1144,D4C +1145,CC0 1145,CC0 +1145,9CB 1145,9CB +1145,BCA 1145,BCA +1145,D4A 1145,D4A +1145,DDC 1145,DDC +1145,1B40 1145,1B40 +1145,CC7 1145,CC7 +1145,D4C 1145,D4C +1146,CC0 1146,CC0 +1146,9CB 1146,9CB +1146,BCA 1146,BCA +1146,D4A 1146,D4A +1146,DDC 1146,DDC +1146,1B40 1146,1B40 +1146,CC7 1146,CC7 +1146,D4C 1146,D4C +1147,CC0 1147,CC0 +1147,9CB 1147,9CB +1147,BCA 1147,BCA +1147,D4A 1147,D4A +1147,DDC 1147,DDC +1147,1B40 1147,1B40 +1147,CC7 1147,CC7 +1147,D4C 1147,D4C +1148,CC0 1148,CC0 +1148,9CB 1148,9CB +1148,BCA 1148,BCA +1148,D4A 1148,D4A +1148,DDC 1148,DDC +1148,1B40 1148,1B40 +1148,CC7 1148,CC7 +1148,D4C 1148,D4C +1149,CC0 1149,CC0 +1149,9CB 1149,9CB +1149,BCA 1149,BCA +1149,D4A 1149,D4A +1149,DDC 1149,DDC +1149,1B40 1149,1B40 +1149,CC7 1149,CC7 +1149,D4C 1149,D4C +114A,CC0 114A,CC0 +114A,9CB 114A,9CB +114A,BCA 114A,BCA +114A,D4A 114A,D4A +114A,DDC 114A,DDC +114A,1B40 114A,1B40 +114A,CC7 114A,CC7 +114A,D4C 114A,D4C +114B,CC0 114B,CC0 +114B,9CB 114B,9CB +114B,BCA 114B,BCA +114B,D4A 114B,D4A +114B,DDC 114B,DDC +114B,1B40 114B,1B40 +114B,CC7 114B,CC7 +114B,D4C 114B,D4C +114C,CC0 114C,CC0 +114C,9CB 114C,9CB +114C,BCA 114C,BCA +114C,D4A 114C,D4A +114C,DDC 114C,DDC +114C,1B40 114C,1B40 +114C,CC7 114C,CC7 +114C,D4C 114C,D4C +114D,CC0 114D,CC0 +114D,9CB 114D,9CB +114D,BCA 114D,BCA +114D,D4A 114D,D4A +114D,DDC 114D,DDC +114D,1B40 114D,1B40 +114D,CC7 114D,CC7 +114D,D4C 114D,D4C +114E,CC0 114E,CC0 +114E,9CB 114E,9CB +114E,BCA 114E,BCA +114E,D4A 114E,D4A +114E,DDC 114E,DDC +114E,1B40 114E,1B40 +114E,CC7 114E,CC7 +114E,D4C 114E,D4C +114F,CC0 114F,CC0 +114F,9CB 114F,9CB +114F,BCA 114F,BCA +114F,D4A 114F,D4A +114F,DDC 114F,DDC +114F,1B40 114F,1B40 +114F,CC7 114F,CC7 +114F,D4C 114F,D4C +1150,CC0 1150,CC0 +1150,9CB 1150,9CB +1150,BCA 1150,BCA +1150,D4A 1150,D4A +1150,DDC 1150,DDC +1150,1B40 1150,1B40 +1150,CC7 1150,CC7 +1150,D4C 1150,D4C +1151,CC0 1151,CC0 +1151,9CB 1151,9CB +1151,BCA 1151,BCA +1151,D4A 1151,D4A +1151,DDC 1151,DDC +1151,1B40 1151,1B40 +1151,CC7 1151,CC7 +1151,D4C 1151,D4C +1152,CC0 1152,CC0 +1152,9CB 1152,9CB +1152,BCA 1152,BCA +1152,D4A 1152,D4A +1152,DDC 1152,DDC +1152,1B40 1152,1B40 +1152,CC7 1152,CC7 +1152,D4C 1152,D4C +1153,CC0 1153,CC0 +1153,9CB 1153,9CB +1153,BCA 1153,BCA +1153,D4A 1153,D4A +1153,DDC 1153,DDC +1153,1B40 1153,1B40 +1153,CC7 1153,CC7 +1153,D4C 1153,D4C +1154,CC0 1154,CC0 +1154,9CB 1154,9CB +1154,BCA 1154,BCA +1154,D4A 1154,D4A +1154,DDC 1154,DDC +1154,1B40 1154,1B40 +1154,CC7 1154,CC7 +1154,D4C 1154,D4C +1155,CC0 1155,CC0 +1155,9CB 1155,9CB +1155,BCA 1155,BCA +1155,D4A 1155,D4A +1155,DDC 1155,DDC +1155,1B40 1155,1B40 +1155,CC7 1155,CC7 +1155,D4C 1155,D4C +1156,CC0 1156,CC0 +1156,9CB 1156,9CB +1156,BCA 1156,BCA +1156,D4A 1156,D4A +1156,DDC 1156,DDC +1156,1B40 1156,1B40 +1156,CC7 1156,CC7 +1156,D4C 1156,D4C +1157,CC0 1157,CC0 +1157,9CB 1157,9CB +1157,BCA 1157,BCA +1157,D4A 1157,D4A +1157,DDC 1157,DDC +1157,1B40 1157,1B40 +1157,CC7 1157,CC7 +1157,D4C 1157,D4C +1158,CC0 1158,CC0 +1158,9CB 1158,9CB +1158,BCA 1158,BCA +1158,D4A 1158,D4A +1158,DDC 1158,DDC +1158,1B40 1158,1B40 +1158,CC7 1158,CC7 +1158,D4C 1158,D4C +1159,CC0 1159,CC0 +1159,9CB 1159,9CB +1159,BCA 1159,BCA +1159,D4A 1159,D4A +1159,DDC 1159,DDC +1159,1B40 1159,1B40 +1159,CC7 1159,CC7 +1159,D4C 1159,D4C +115A,CC0 115A,CC0 +115A,9CB 115A,9CB +115A,BCA 115A,BCA +115A,D4A 115A,D4A +115A,DDC 115A,DDC +115A,1B40 115A,1B40 +115A,CC7 115A,CC7 +115A,D4C 115A,D4C +115B,CC0 115B,CC0 +115B,9CB 115B,9CB +115B,BCA 115B,BCA +115B,D4A 115B,D4A +115B,DDC 115B,DDC +115B,1B40 115B,1B40 +115B,CC7 115B,CC7 +115B,D4C 115B,D4C +115C,CC0 115C,CC0 +115C,9CB 115C,9CB +115C,BCA 115C,BCA +115C,D4A 115C,D4A +115C,DDC 115C,DDC +115C,1B40 115C,1B40 +115C,CC7 115C,CC7 +115C,D4C 115C,D4C +115D,CC0 115D,CC0 +115D,9CB 115D,9CB +115D,BCA 115D,BCA +115D,D4A 115D,D4A +115D,DDC 115D,DDC +115D,1B40 115D,1B40 +115D,CC7 115D,CC7 +115D,D4C 115D,D4C +115E,CC0 115E,CC0 +115E,9CB 115E,9CB +115E,BCA 115E,BCA +115E,D4A 115E,D4A +115E,DDC 115E,DDC +115E,1B40 115E,1B40 +115E,CC7 115E,CC7 +115E,D4C 115E,D4C +115F,CC0 115F,CC0 +115F,9CB 115F,9CB +115F,BCA 115F,BCA +115F,D4A 115F,D4A +115F,DDC 115F,DDC +115F,1B40 115F,1B40 +115F,CC7 115F,CC7 +115F,D4C 115F,D4C +# --- group 2B: jamo + precomposed syllable (15652 rows) --- +1113,AC00 1113,AC00 +1113,AC70 1113,AC70 +1113,ACE0 1113,ACE0 +1113,AD50 1113,AD50 +1113,ADC0 1113,ADC0 +1113,AE30 1113,AE30 +1113,AEA0 1113,AEA0 +1113,AF10 1113,AF10 +1113,AF80 1113,AF80 +1113,AFF0 1113,AFF0 +1113,B060 1113,B060 +1113,B0D0 1113,B0D0 +1113,B140 1113,B140 +1113,B1B0 1113,B1B0 +1113,B220 1113,B220 +1113,B290 1113,B290 +1113,B300 1113,B300 +1113,B370 1113,B370 +1113,B3E0 1113,B3E0 +1113,B450 1113,B450 +1113,B4C0 1113,B4C0 +1113,B530 1113,B530 +1113,B5A0 1113,B5A0 +1113,B610 1113,B610 +1113,B680 1113,B680 +1113,B6F0 1113,B6F0 +1113,B760 1113,B760 +1113,B7D0 1113,B7D0 +1113,B840 1113,B840 +1113,B8B0 1113,B8B0 +1113,B920 1113,B920 +1113,B990 1113,B990 +1113,BA00 1113,BA00 +1113,BA70 1113,BA70 +1113,BAE0 1113,BAE0 +1113,BB50 1113,BB50 +1113,BBC0 1113,BBC0 +1113,BC30 1113,BC30 +1113,BCA0 1113,BCA0 +1113,BD10 1113,BD10 +1113,BD80 1113,BD80 +1113,BDF0 1113,BDF0 +1113,BE60 1113,BE60 +1113,BED0 1113,BED0 +1113,BF40 1113,BF40 +1113,BFB0 1113,BFB0 +1113,C020 1113,C020 +1113,C090 1113,C090 +1113,C100 1113,C100 +1113,C170 1113,C170 +1113,C1E0 1113,C1E0 +1113,C250 1113,C250 +1113,C2C0 1113,C2C0 +1113,C330 1113,C330 +1113,C3A0 1113,C3A0 +1113,C410 1113,C410 +1113,C480 1113,C480 +1113,C4F0 1113,C4F0 +1113,C560 1113,C560 +1113,C5D0 1113,C5D0 +1113,C640 1113,C640 +1113,C6B0 1113,C6B0 +1113,C720 1113,C720 +1113,C790 1113,C790 +1113,C800 1113,C800 +1113,C870 1113,C870 +1113,C8E0 1113,C8E0 +1113,C950 1113,C950 +1113,C9C0 1113,C9C0 +1113,CA30 1113,CA30 +1113,CAA0 1113,CAA0 +1113,CB10 1113,CB10 +1113,CB80 1113,CB80 +1113,CBF0 1113,CBF0 +1113,CC60 1113,CC60 +1113,CCD0 1113,CCD0 +1113,CD40 1113,CD40 +1113,CDB0 1113,CDB0 +1113,CE20 1113,CE20 +1113,CE90 1113,CE90 +1113,CF00 1113,CF00 +1113,CF70 1113,CF70 +1113,CFE0 1113,CFE0 +1113,D050 1113,D050 +1113,D0C0 1113,D0C0 +1113,D130 1113,D130 +1113,D1A0 1113,D1A0 +1113,D210 1113,D210 +1113,D280 1113,D280 +1113,D2F0 1113,D2F0 +1113,D360 1113,D360 +1113,D3D0 1113,D3D0 +1113,D440 1113,D440 +1113,D4B0 1113,D4B0 +1113,D520 1113,D520 +1113,D590 1113,D590 +1113,D600 1113,D600 +1113,D670 1113,D670 +1113,D6E0 1113,D6E0 +1113,D750 1113,D750 +1114,AC00 1114,AC00 +1114,AC70 1114,AC70 +1114,ACE0 1114,ACE0 +1114,AD50 1114,AD50 +1114,ADC0 1114,ADC0 +1114,AE30 1114,AE30 +1114,AEA0 1114,AEA0 +1114,AF10 1114,AF10 +1114,AF80 1114,AF80 +1114,AFF0 1114,AFF0 +1114,B060 1114,B060 +1114,B0D0 1114,B0D0 +1114,B140 1114,B140 +1114,B1B0 1114,B1B0 +1114,B220 1114,B220 +1114,B290 1114,B290 +1114,B300 1114,B300 +1114,B370 1114,B370 +1114,B3E0 1114,B3E0 +1114,B450 1114,B450 +1114,B4C0 1114,B4C0 +1114,B530 1114,B530 +1114,B5A0 1114,B5A0 +1114,B610 1114,B610 +1114,B680 1114,B680 +1114,B6F0 1114,B6F0 +1114,B760 1114,B760 +1114,B7D0 1114,B7D0 +1114,B840 1114,B840 +1114,B8B0 1114,B8B0 +1114,B920 1114,B920 +1114,B990 1114,B990 +1114,BA00 1114,BA00 +1114,BA70 1114,BA70 +1114,BAE0 1114,BAE0 +1114,BB50 1114,BB50 +1114,BBC0 1114,BBC0 +1114,BC30 1114,BC30 +1114,BCA0 1114,BCA0 +1114,BD10 1114,BD10 +1114,BD80 1114,BD80 +1114,BDF0 1114,BDF0 +1114,BE60 1114,BE60 +1114,BED0 1114,BED0 +1114,BF40 1114,BF40 +1114,BFB0 1114,BFB0 +1114,C020 1114,C020 +1114,C090 1114,C090 +1114,C100 1114,C100 +1114,C170 1114,C170 +1114,C1E0 1114,C1E0 +1114,C250 1114,C250 +1114,C2C0 1114,C2C0 +1114,C330 1114,C330 +1114,C3A0 1114,C3A0 +1114,C410 1114,C410 +1114,C480 1114,C480 +1114,C4F0 1114,C4F0 +1114,C560 1114,C560 +1114,C5D0 1114,C5D0 +1114,C640 1114,C640 +1114,C6B0 1114,C6B0 +1114,C720 1114,C720 +1114,C790 1114,C790 +1114,C800 1114,C800 +1114,C870 1114,C870 +1114,C8E0 1114,C8E0 +1114,C950 1114,C950 +1114,C9C0 1114,C9C0 +1114,CA30 1114,CA30 +1114,CAA0 1114,CAA0 +1114,CB10 1114,CB10 +1114,CB80 1114,CB80 +1114,CBF0 1114,CBF0 +1114,CC60 1114,CC60 +1114,CCD0 1114,CCD0 +1114,CD40 1114,CD40 +1114,CDB0 1114,CDB0 +1114,CE20 1114,CE20 +1114,CE90 1114,CE90 +1114,CF00 1114,CF00 +1114,CF70 1114,CF70 +1114,CFE0 1114,CFE0 +1114,D050 1114,D050 +1114,D0C0 1114,D0C0 +1114,D130 1114,D130 +1114,D1A0 1114,D1A0 +1114,D210 1114,D210 +1114,D280 1114,D280 +1114,D2F0 1114,D2F0 +1114,D360 1114,D360 +1114,D3D0 1114,D3D0 +1114,D440 1114,D440 +1114,D4B0 1114,D4B0 +1114,D520 1114,D520 +1114,D590 1114,D590 +1114,D600 1114,D600 +1114,D670 1114,D670 +1114,D6E0 1114,D6E0 +1114,D750 1114,D750 +1115,AC00 1115,AC00 +1115,AC70 1115,AC70 +1115,ACE0 1115,ACE0 +1115,AD50 1115,AD50 +1115,ADC0 1115,ADC0 +1115,AE30 1115,AE30 +1115,AEA0 1115,AEA0 +1115,AF10 1115,AF10 +1115,AF80 1115,AF80 +1115,AFF0 1115,AFF0 +1115,B060 1115,B060 +1115,B0D0 1115,B0D0 +1115,B140 1115,B140 +1115,B1B0 1115,B1B0 +1115,B220 1115,B220 +1115,B290 1115,B290 +1115,B300 1115,B300 +1115,B370 1115,B370 +1115,B3E0 1115,B3E0 +1115,B450 1115,B450 +1115,B4C0 1115,B4C0 +1115,B530 1115,B530 +1115,B5A0 1115,B5A0 +1115,B610 1115,B610 +1115,B680 1115,B680 +1115,B6F0 1115,B6F0 +1115,B760 1115,B760 +1115,B7D0 1115,B7D0 +1115,B840 1115,B840 +1115,B8B0 1115,B8B0 +1115,B920 1115,B920 +1115,B990 1115,B990 +1115,BA00 1115,BA00 +1115,BA70 1115,BA70 +1115,BAE0 1115,BAE0 +1115,BB50 1115,BB50 +1115,BBC0 1115,BBC0 +1115,BC30 1115,BC30 +1115,BCA0 1115,BCA0 +1115,BD10 1115,BD10 +1115,BD80 1115,BD80 +1115,BDF0 1115,BDF0 +1115,BE60 1115,BE60 +1115,BED0 1115,BED0 +1115,BF40 1115,BF40 +1115,BFB0 1115,BFB0 +1115,C020 1115,C020 +1115,C090 1115,C090 +1115,C100 1115,C100 +1115,C170 1115,C170 +1115,C1E0 1115,C1E0 +1115,C250 1115,C250 +1115,C2C0 1115,C2C0 +1115,C330 1115,C330 +1115,C3A0 1115,C3A0 +1115,C410 1115,C410 +1115,C480 1115,C480 +1115,C4F0 1115,C4F0 +1115,C560 1115,C560 +1115,C5D0 1115,C5D0 +1115,C640 1115,C640 +1115,C6B0 1115,C6B0 +1115,C720 1115,C720 +1115,C790 1115,C790 +1115,C800 1115,C800 +1115,C870 1115,C870 +1115,C8E0 1115,C8E0 +1115,C950 1115,C950 +1115,C9C0 1115,C9C0 +1115,CA30 1115,CA30 +1115,CAA0 1115,CAA0 +1115,CB10 1115,CB10 +1115,CB80 1115,CB80 +1115,CBF0 1115,CBF0 +1115,CC60 1115,CC60 +1115,CCD0 1115,CCD0 +1115,CD40 1115,CD40 +1115,CDB0 1115,CDB0 +1115,CE20 1115,CE20 +1115,CE90 1115,CE90 +1115,CF00 1115,CF00 +1115,CF70 1115,CF70 +1115,CFE0 1115,CFE0 +1115,D050 1115,D050 +1115,D0C0 1115,D0C0 +1115,D130 1115,D130 +1115,D1A0 1115,D1A0 +1115,D210 1115,D210 +1115,D280 1115,D280 +1115,D2F0 1115,D2F0 +1115,D360 1115,D360 +1115,D3D0 1115,D3D0 +1115,D440 1115,D440 +1115,D4B0 1115,D4B0 +1115,D520 1115,D520 +1115,D590 1115,D590 +1115,D600 1115,D600 +1115,D670 1115,D670 +1115,D6E0 1115,D6E0 +1115,D750 1115,D750 +1116,AC00 1116,AC00 +1116,AC70 1116,AC70 +1116,ACE0 1116,ACE0 +1116,AD50 1116,AD50 +1116,ADC0 1116,ADC0 +1116,AE30 1116,AE30 +1116,AEA0 1116,AEA0 +1116,AF10 1116,AF10 +1116,AF80 1116,AF80 +1116,AFF0 1116,AFF0 +1116,B060 1116,B060 +1116,B0D0 1116,B0D0 +1116,B140 1116,B140 +1116,B1B0 1116,B1B0 +1116,B220 1116,B220 +1116,B290 1116,B290 +1116,B300 1116,B300 +1116,B370 1116,B370 +1116,B3E0 1116,B3E0 +1116,B450 1116,B450 +1116,B4C0 1116,B4C0 +1116,B530 1116,B530 +1116,B5A0 1116,B5A0 +1116,B610 1116,B610 +1116,B680 1116,B680 +1116,B6F0 1116,B6F0 +1116,B760 1116,B760 +1116,B7D0 1116,B7D0 +1116,B840 1116,B840 +1116,B8B0 1116,B8B0 +1116,B920 1116,B920 +1116,B990 1116,B990 +1116,BA00 1116,BA00 +1116,BA70 1116,BA70 +1116,BAE0 1116,BAE0 +1116,BB50 1116,BB50 +1116,BBC0 1116,BBC0 +1116,BC30 1116,BC30 +1116,BCA0 1116,BCA0 +1116,BD10 1116,BD10 +1116,BD80 1116,BD80 +1116,BDF0 1116,BDF0 +1116,BE60 1116,BE60 +1116,BED0 1116,BED0 +1116,BF40 1116,BF40 +1116,BFB0 1116,BFB0 +1116,C020 1116,C020 +1116,C090 1116,C090 +1116,C100 1116,C100 +1116,C170 1116,C170 +1116,C1E0 1116,C1E0 +1116,C250 1116,C250 +1116,C2C0 1116,C2C0 +1116,C330 1116,C330 +1116,C3A0 1116,C3A0 +1116,C410 1116,C410 +1116,C480 1116,C480 +1116,C4F0 1116,C4F0 +1116,C560 1116,C560 +1116,C5D0 1116,C5D0 +1116,C640 1116,C640 +1116,C6B0 1116,C6B0 +1116,C720 1116,C720 +1116,C790 1116,C790 +1116,C800 1116,C800 +1116,C870 1116,C870 +1116,C8E0 1116,C8E0 +1116,C950 1116,C950 +1116,C9C0 1116,C9C0 +1116,CA30 1116,CA30 +1116,CAA0 1116,CAA0 +1116,CB10 1116,CB10 +1116,CB80 1116,CB80 +1116,CBF0 1116,CBF0 +1116,CC60 1116,CC60 +1116,CCD0 1116,CCD0 +1116,CD40 1116,CD40 +1116,CDB0 1116,CDB0 +1116,CE20 1116,CE20 +1116,CE90 1116,CE90 +1116,CF00 1116,CF00 +1116,CF70 1116,CF70 +1116,CFE0 1116,CFE0 +1116,D050 1116,D050 +1116,D0C0 1116,D0C0 +1116,D130 1116,D130 +1116,D1A0 1116,D1A0 +1116,D210 1116,D210 +1116,D280 1116,D280 +1116,D2F0 1116,D2F0 +1116,D360 1116,D360 +1116,D3D0 1116,D3D0 +1116,D440 1116,D440 +1116,D4B0 1116,D4B0 +1116,D520 1116,D520 +1116,D590 1116,D590 +1116,D600 1116,D600 +1116,D670 1116,D670 +1116,D6E0 1116,D6E0 +1116,D750 1116,D750 +1117,AC00 1117,AC00 +1117,AC70 1117,AC70 +1117,ACE0 1117,ACE0 +1117,AD50 1117,AD50 +1117,ADC0 1117,ADC0 +1117,AE30 1117,AE30 +1117,AEA0 1117,AEA0 +1117,AF10 1117,AF10 +1117,AF80 1117,AF80 +1117,AFF0 1117,AFF0 +1117,B060 1117,B060 +1117,B0D0 1117,B0D0 +1117,B140 1117,B140 +1117,B1B0 1117,B1B0 +1117,B220 1117,B220 +1117,B290 1117,B290 +1117,B300 1117,B300 +1117,B370 1117,B370 +1117,B3E0 1117,B3E0 +1117,B450 1117,B450 +1117,B4C0 1117,B4C0 +1117,B530 1117,B530 +1117,B5A0 1117,B5A0 +1117,B610 1117,B610 +1117,B680 1117,B680 +1117,B6F0 1117,B6F0 +1117,B760 1117,B760 +1117,B7D0 1117,B7D0 +1117,B840 1117,B840 +1117,B8B0 1117,B8B0 +1117,B920 1117,B920 +1117,B990 1117,B990 +1117,BA00 1117,BA00 +1117,BA70 1117,BA70 +1117,BAE0 1117,BAE0 +1117,BB50 1117,BB50 +1117,BBC0 1117,BBC0 +1117,BC30 1117,BC30 +1117,BCA0 1117,BCA0 +1117,BD10 1117,BD10 +1117,BD80 1117,BD80 +1117,BDF0 1117,BDF0 +1117,BE60 1117,BE60 +1117,BED0 1117,BED0 +1117,BF40 1117,BF40 +1117,BFB0 1117,BFB0 +1117,C020 1117,C020 +1117,C090 1117,C090 +1117,C100 1117,C100 +1117,C170 1117,C170 +1117,C1E0 1117,C1E0 +1117,C250 1117,C250 +1117,C2C0 1117,C2C0 +1117,C330 1117,C330 +1117,C3A0 1117,C3A0 +1117,C410 1117,C410 +1117,C480 1117,C480 +1117,C4F0 1117,C4F0 +1117,C560 1117,C560 +1117,C5D0 1117,C5D0 +1117,C640 1117,C640 +1117,C6B0 1117,C6B0 +1117,C720 1117,C720 +1117,C790 1117,C790 +1117,C800 1117,C800 +1117,C870 1117,C870 +1117,C8E0 1117,C8E0 +1117,C950 1117,C950 +1117,C9C0 1117,C9C0 +1117,CA30 1117,CA30 +1117,CAA0 1117,CAA0 +1117,CB10 1117,CB10 +1117,CB80 1117,CB80 +1117,CBF0 1117,CBF0 +1117,CC60 1117,CC60 +1117,CCD0 1117,CCD0 +1117,CD40 1117,CD40 +1117,CDB0 1117,CDB0 +1117,CE20 1117,CE20 +1117,CE90 1117,CE90 +1117,CF00 1117,CF00 +1117,CF70 1117,CF70 +1117,CFE0 1117,CFE0 +1117,D050 1117,D050 +1117,D0C0 1117,D0C0 +1117,D130 1117,D130 +1117,D1A0 1117,D1A0 +1117,D210 1117,D210 +1117,D280 1117,D280 +1117,D2F0 1117,D2F0 +1117,D360 1117,D360 +1117,D3D0 1117,D3D0 +1117,D440 1117,D440 +1117,D4B0 1117,D4B0 +1117,D520 1117,D520 +1117,D590 1117,D590 +1117,D600 1117,D600 +1117,D670 1117,D670 +1117,D6E0 1117,D6E0 +1117,D750 1117,D750 +1118,AC00 1118,AC00 +1118,AC70 1118,AC70 +1118,ACE0 1118,ACE0 +1118,AD50 1118,AD50 +1118,ADC0 1118,ADC0 +1118,AE30 1118,AE30 +1118,AEA0 1118,AEA0 +1118,AF10 1118,AF10 +1118,AF80 1118,AF80 +1118,AFF0 1118,AFF0 +1118,B060 1118,B060 +1118,B0D0 1118,B0D0 +1118,B140 1118,B140 +1118,B1B0 1118,B1B0 +1118,B220 1118,B220 +1118,B290 1118,B290 +1118,B300 1118,B300 +1118,B370 1118,B370 +1118,B3E0 1118,B3E0 +1118,B450 1118,B450 +1118,B4C0 1118,B4C0 +1118,B530 1118,B530 +1118,B5A0 1118,B5A0 +1118,B610 1118,B610 +1118,B680 1118,B680 +1118,B6F0 1118,B6F0 +1118,B760 1118,B760 +1118,B7D0 1118,B7D0 +1118,B840 1118,B840 +1118,B8B0 1118,B8B0 +1118,B920 1118,B920 +1118,B990 1118,B990 +1118,BA00 1118,BA00 +1118,BA70 1118,BA70 +1118,BAE0 1118,BAE0 +1118,BB50 1118,BB50 +1118,BBC0 1118,BBC0 +1118,BC30 1118,BC30 +1118,BCA0 1118,BCA0 +1118,BD10 1118,BD10 +1118,BD80 1118,BD80 +1118,BDF0 1118,BDF0 +1118,BE60 1118,BE60 +1118,BED0 1118,BED0 +1118,BF40 1118,BF40 +1118,BFB0 1118,BFB0 +1118,C020 1118,C020 +1118,C090 1118,C090 +1118,C100 1118,C100 +1118,C170 1118,C170 +1118,C1E0 1118,C1E0 +1118,C250 1118,C250 +1118,C2C0 1118,C2C0 +1118,C330 1118,C330 +1118,C3A0 1118,C3A0 +1118,C410 1118,C410 +1118,C480 1118,C480 +1118,C4F0 1118,C4F0 +1118,C560 1118,C560 +1118,C5D0 1118,C5D0 +1118,C640 1118,C640 +1118,C6B0 1118,C6B0 +1118,C720 1118,C720 +1118,C790 1118,C790 +1118,C800 1118,C800 +1118,C870 1118,C870 +1118,C8E0 1118,C8E0 +1118,C950 1118,C950 +1118,C9C0 1118,C9C0 +1118,CA30 1118,CA30 +1118,CAA0 1118,CAA0 +1118,CB10 1118,CB10 +1118,CB80 1118,CB80 +1118,CBF0 1118,CBF0 +1118,CC60 1118,CC60 +1118,CCD0 1118,CCD0 +1118,CD40 1118,CD40 +1118,CDB0 1118,CDB0 +1118,CE20 1118,CE20 +1118,CE90 1118,CE90 +1118,CF00 1118,CF00 +1118,CF70 1118,CF70 +1118,CFE0 1118,CFE0 +1118,D050 1118,D050 +1118,D0C0 1118,D0C0 +1118,D130 1118,D130 +1118,D1A0 1118,D1A0 +1118,D210 1118,D210 +1118,D280 1118,D280 +1118,D2F0 1118,D2F0 +1118,D360 1118,D360 +1118,D3D0 1118,D3D0 +1118,D440 1118,D440 +1118,D4B0 1118,D4B0 +1118,D520 1118,D520 +1118,D590 1118,D590 +1118,D600 1118,D600 +1118,D670 1118,D670 +1118,D6E0 1118,D6E0 +1118,D750 1118,D750 +1119,AC00 1119,AC00 +1119,AC70 1119,AC70 +1119,ACE0 1119,ACE0 +1119,AD50 1119,AD50 +1119,ADC0 1119,ADC0 +1119,AE30 1119,AE30 +1119,AEA0 1119,AEA0 +1119,AF10 1119,AF10 +1119,AF80 1119,AF80 +1119,AFF0 1119,AFF0 +1119,B060 1119,B060 +1119,B0D0 1119,B0D0 +1119,B140 1119,B140 +1119,B1B0 1119,B1B0 +1119,B220 1119,B220 +1119,B290 1119,B290 +1119,B300 1119,B300 +1119,B370 1119,B370 +1119,B3E0 1119,B3E0 +1119,B450 1119,B450 +1119,B4C0 1119,B4C0 +1119,B530 1119,B530 +1119,B5A0 1119,B5A0 +1119,B610 1119,B610 +1119,B680 1119,B680 +1119,B6F0 1119,B6F0 +1119,B760 1119,B760 +1119,B7D0 1119,B7D0 +1119,B840 1119,B840 +1119,B8B0 1119,B8B0 +1119,B920 1119,B920 +1119,B990 1119,B990 +1119,BA00 1119,BA00 +1119,BA70 1119,BA70 +1119,BAE0 1119,BAE0 +1119,BB50 1119,BB50 +1119,BBC0 1119,BBC0 +1119,BC30 1119,BC30 +1119,BCA0 1119,BCA0 +1119,BD10 1119,BD10 +1119,BD80 1119,BD80 +1119,BDF0 1119,BDF0 +1119,BE60 1119,BE60 +1119,BED0 1119,BED0 +1119,BF40 1119,BF40 +1119,BFB0 1119,BFB0 +1119,C020 1119,C020 +1119,C090 1119,C090 +1119,C100 1119,C100 +1119,C170 1119,C170 +1119,C1E0 1119,C1E0 +1119,C250 1119,C250 +1119,C2C0 1119,C2C0 +1119,C330 1119,C330 +1119,C3A0 1119,C3A0 +1119,C410 1119,C410 +1119,C480 1119,C480 +1119,C4F0 1119,C4F0 +1119,C560 1119,C560 +1119,C5D0 1119,C5D0 +1119,C640 1119,C640 +1119,C6B0 1119,C6B0 +1119,C720 1119,C720 +1119,C790 1119,C790 +1119,C800 1119,C800 +1119,C870 1119,C870 +1119,C8E0 1119,C8E0 +1119,C950 1119,C950 +1119,C9C0 1119,C9C0 +1119,CA30 1119,CA30 +1119,CAA0 1119,CAA0 +1119,CB10 1119,CB10 +1119,CB80 1119,CB80 +1119,CBF0 1119,CBF0 +1119,CC60 1119,CC60 +1119,CCD0 1119,CCD0 +1119,CD40 1119,CD40 +1119,CDB0 1119,CDB0 +1119,CE20 1119,CE20 +1119,CE90 1119,CE90 +1119,CF00 1119,CF00 +1119,CF70 1119,CF70 +1119,CFE0 1119,CFE0 +1119,D050 1119,D050 +1119,D0C0 1119,D0C0 +1119,D130 1119,D130 +1119,D1A0 1119,D1A0 +1119,D210 1119,D210 +1119,D280 1119,D280 +1119,D2F0 1119,D2F0 +1119,D360 1119,D360 +1119,D3D0 1119,D3D0 +1119,D440 1119,D440 +1119,D4B0 1119,D4B0 +1119,D520 1119,D520 +1119,D590 1119,D590 +1119,D600 1119,D600 +1119,D670 1119,D670 +1119,D6E0 1119,D6E0 +1119,D750 1119,D750 +111A,AC00 111A,AC00 +111A,AC70 111A,AC70 +111A,ACE0 111A,ACE0 +111A,AD50 111A,AD50 +111A,ADC0 111A,ADC0 +111A,AE30 111A,AE30 +111A,AEA0 111A,AEA0 +111A,AF10 111A,AF10 +111A,AF80 111A,AF80 +111A,AFF0 111A,AFF0 +111A,B060 111A,B060 +111A,B0D0 111A,B0D0 +111A,B140 111A,B140 +111A,B1B0 111A,B1B0 +111A,B220 111A,B220 +111A,B290 111A,B290 +111A,B300 111A,B300 +111A,B370 111A,B370 +111A,B3E0 111A,B3E0 +111A,B450 111A,B450 +111A,B4C0 111A,B4C0 +111A,B530 111A,B530 +111A,B5A0 111A,B5A0 +111A,B610 111A,B610 +111A,B680 111A,B680 +111A,B6F0 111A,B6F0 +111A,B760 111A,B760 +111A,B7D0 111A,B7D0 +111A,B840 111A,B840 +111A,B8B0 111A,B8B0 +111A,B920 111A,B920 +111A,B990 111A,B990 +111A,BA00 111A,BA00 +111A,BA70 111A,BA70 +111A,BAE0 111A,BAE0 +111A,BB50 111A,BB50 +111A,BBC0 111A,BBC0 +111A,BC30 111A,BC30 +111A,BCA0 111A,BCA0 +111A,BD10 111A,BD10 +111A,BD80 111A,BD80 +111A,BDF0 111A,BDF0 +111A,BE60 111A,BE60 +111A,BED0 111A,BED0 +111A,BF40 111A,BF40 +111A,BFB0 111A,BFB0 +111A,C020 111A,C020 +111A,C090 111A,C090 +111A,C100 111A,C100 +111A,C170 111A,C170 +111A,C1E0 111A,C1E0 +111A,C250 111A,C250 +111A,C2C0 111A,C2C0 +111A,C330 111A,C330 +111A,C3A0 111A,C3A0 +111A,C410 111A,C410 +111A,C480 111A,C480 +111A,C4F0 111A,C4F0 +111A,C560 111A,C560 +111A,C5D0 111A,C5D0 +111A,C640 111A,C640 +111A,C6B0 111A,C6B0 +111A,C720 111A,C720 +111A,C790 111A,C790 +111A,C800 111A,C800 +111A,C870 111A,C870 +111A,C8E0 111A,C8E0 +111A,C950 111A,C950 +111A,C9C0 111A,C9C0 +111A,CA30 111A,CA30 +111A,CAA0 111A,CAA0 +111A,CB10 111A,CB10 +111A,CB80 111A,CB80 +111A,CBF0 111A,CBF0 +111A,CC60 111A,CC60 +111A,CCD0 111A,CCD0 +111A,CD40 111A,CD40 +111A,CDB0 111A,CDB0 +111A,CE20 111A,CE20 +111A,CE90 111A,CE90 +111A,CF00 111A,CF00 +111A,CF70 111A,CF70 +111A,CFE0 111A,CFE0 +111A,D050 111A,D050 +111A,D0C0 111A,D0C0 +111A,D130 111A,D130 +111A,D1A0 111A,D1A0 +111A,D210 111A,D210 +111A,D280 111A,D280 +111A,D2F0 111A,D2F0 +111A,D360 111A,D360 +111A,D3D0 111A,D3D0 +111A,D440 111A,D440 +111A,D4B0 111A,D4B0 +111A,D520 111A,D520 +111A,D590 111A,D590 +111A,D600 111A,D600 +111A,D670 111A,D670 +111A,D6E0 111A,D6E0 +111A,D750 111A,D750 +111B,AC00 111B,AC00 +111B,AC70 111B,AC70 +111B,ACE0 111B,ACE0 +111B,AD50 111B,AD50 +111B,ADC0 111B,ADC0 +111B,AE30 111B,AE30 +111B,AEA0 111B,AEA0 +111B,AF10 111B,AF10 +111B,AF80 111B,AF80 +111B,AFF0 111B,AFF0 +111B,B060 111B,B060 +111B,B0D0 111B,B0D0 +111B,B140 111B,B140 +111B,B1B0 111B,B1B0 +111B,B220 111B,B220 +111B,B290 111B,B290 +111B,B300 111B,B300 +111B,B370 111B,B370 +111B,B3E0 111B,B3E0 +111B,B450 111B,B450 +111B,B4C0 111B,B4C0 +111B,B530 111B,B530 +111B,B5A0 111B,B5A0 +111B,B610 111B,B610 +111B,B680 111B,B680 +111B,B6F0 111B,B6F0 +111B,B760 111B,B760 +111B,B7D0 111B,B7D0 +111B,B840 111B,B840 +111B,B8B0 111B,B8B0 +111B,B920 111B,B920 +111B,B990 111B,B990 +111B,BA00 111B,BA00 +111B,BA70 111B,BA70 +111B,BAE0 111B,BAE0 +111B,BB50 111B,BB50 +111B,BBC0 111B,BBC0 +111B,BC30 111B,BC30 +111B,BCA0 111B,BCA0 +111B,BD10 111B,BD10 +111B,BD80 111B,BD80 +111B,BDF0 111B,BDF0 +111B,BE60 111B,BE60 +111B,BED0 111B,BED0 +111B,BF40 111B,BF40 +111B,BFB0 111B,BFB0 +111B,C020 111B,C020 +111B,C090 111B,C090 +111B,C100 111B,C100 +111B,C170 111B,C170 +111B,C1E0 111B,C1E0 +111B,C250 111B,C250 +111B,C2C0 111B,C2C0 +111B,C330 111B,C330 +111B,C3A0 111B,C3A0 +111B,C410 111B,C410 +111B,C480 111B,C480 +111B,C4F0 111B,C4F0 +111B,C560 111B,C560 +111B,C5D0 111B,C5D0 +111B,C640 111B,C640 +111B,C6B0 111B,C6B0 +111B,C720 111B,C720 +111B,C790 111B,C790 +111B,C800 111B,C800 +111B,C870 111B,C870 +111B,C8E0 111B,C8E0 +111B,C950 111B,C950 +111B,C9C0 111B,C9C0 +111B,CA30 111B,CA30 +111B,CAA0 111B,CAA0 +111B,CB10 111B,CB10 +111B,CB80 111B,CB80 +111B,CBF0 111B,CBF0 +111B,CC60 111B,CC60 +111B,CCD0 111B,CCD0 +111B,CD40 111B,CD40 +111B,CDB0 111B,CDB0 +111B,CE20 111B,CE20 +111B,CE90 111B,CE90 +111B,CF00 111B,CF00 +111B,CF70 111B,CF70 +111B,CFE0 111B,CFE0 +111B,D050 111B,D050 +111B,D0C0 111B,D0C0 +111B,D130 111B,D130 +111B,D1A0 111B,D1A0 +111B,D210 111B,D210 +111B,D280 111B,D280 +111B,D2F0 111B,D2F0 +111B,D360 111B,D360 +111B,D3D0 111B,D3D0 +111B,D440 111B,D440 +111B,D4B0 111B,D4B0 +111B,D520 111B,D520 +111B,D590 111B,D590 +111B,D600 111B,D600 +111B,D670 111B,D670 +111B,D6E0 111B,D6E0 +111B,D750 111B,D750 +111C,AC00 111C,AC00 +111C,AC70 111C,AC70 +111C,ACE0 111C,ACE0 +111C,AD50 111C,AD50 +111C,ADC0 111C,ADC0 +111C,AE30 111C,AE30 +111C,AEA0 111C,AEA0 +111C,AF10 111C,AF10 +111C,AF80 111C,AF80 +111C,AFF0 111C,AFF0 +111C,B060 111C,B060 +111C,B0D0 111C,B0D0 +111C,B140 111C,B140 +111C,B1B0 111C,B1B0 +111C,B220 111C,B220 +111C,B290 111C,B290 +111C,B300 111C,B300 +111C,B370 111C,B370 +111C,B3E0 111C,B3E0 +111C,B450 111C,B450 +111C,B4C0 111C,B4C0 +111C,B530 111C,B530 +111C,B5A0 111C,B5A0 +111C,B610 111C,B610 +111C,B680 111C,B680 +111C,B6F0 111C,B6F0 +111C,B760 111C,B760 +111C,B7D0 111C,B7D0 +111C,B840 111C,B840 +111C,B8B0 111C,B8B0 +111C,B920 111C,B920 +111C,B990 111C,B990 +111C,BA00 111C,BA00 +111C,BA70 111C,BA70 +111C,BAE0 111C,BAE0 +111C,BB50 111C,BB50 +111C,BBC0 111C,BBC0 +111C,BC30 111C,BC30 +111C,BCA0 111C,BCA0 +111C,BD10 111C,BD10 +111C,BD80 111C,BD80 +111C,BDF0 111C,BDF0 +111C,BE60 111C,BE60 +111C,BED0 111C,BED0 +111C,BF40 111C,BF40 +111C,BFB0 111C,BFB0 +111C,C020 111C,C020 +111C,C090 111C,C090 +111C,C100 111C,C100 +111C,C170 111C,C170 +111C,C1E0 111C,C1E0 +111C,C250 111C,C250 +111C,C2C0 111C,C2C0 +111C,C330 111C,C330 +111C,C3A0 111C,C3A0 +111C,C410 111C,C410 +111C,C480 111C,C480 +111C,C4F0 111C,C4F0 +111C,C560 111C,C560 +111C,C5D0 111C,C5D0 +111C,C640 111C,C640 +111C,C6B0 111C,C6B0 +111C,C720 111C,C720 +111C,C790 111C,C790 +111C,C800 111C,C800 +111C,C870 111C,C870 +111C,C8E0 111C,C8E0 +111C,C950 111C,C950 +111C,C9C0 111C,C9C0 +111C,CA30 111C,CA30 +111C,CAA0 111C,CAA0 +111C,CB10 111C,CB10 +111C,CB80 111C,CB80 +111C,CBF0 111C,CBF0 +111C,CC60 111C,CC60 +111C,CCD0 111C,CCD0 +111C,CD40 111C,CD40 +111C,CDB0 111C,CDB0 +111C,CE20 111C,CE20 +111C,CE90 111C,CE90 +111C,CF00 111C,CF00 +111C,CF70 111C,CF70 +111C,CFE0 111C,CFE0 +111C,D050 111C,D050 +111C,D0C0 111C,D0C0 +111C,D130 111C,D130 +111C,D1A0 111C,D1A0 +111C,D210 111C,D210 +111C,D280 111C,D280 +111C,D2F0 111C,D2F0 +111C,D360 111C,D360 +111C,D3D0 111C,D3D0 +111C,D440 111C,D440 +111C,D4B0 111C,D4B0 +111C,D520 111C,D520 +111C,D590 111C,D590 +111C,D600 111C,D600 +111C,D670 111C,D670 +111C,D6E0 111C,D6E0 +111C,D750 111C,D750 +111D,AC00 111D,AC00 +111D,AC70 111D,AC70 +111D,ACE0 111D,ACE0 +111D,AD50 111D,AD50 +111D,ADC0 111D,ADC0 +111D,AE30 111D,AE30 +111D,AEA0 111D,AEA0 +111D,AF10 111D,AF10 +111D,AF80 111D,AF80 +111D,AFF0 111D,AFF0 +111D,B060 111D,B060 +111D,B0D0 111D,B0D0 +111D,B140 111D,B140 +111D,B1B0 111D,B1B0 +111D,B220 111D,B220 +111D,B290 111D,B290 +111D,B300 111D,B300 +111D,B370 111D,B370 +111D,B3E0 111D,B3E0 +111D,B450 111D,B450 +111D,B4C0 111D,B4C0 +111D,B530 111D,B530 +111D,B5A0 111D,B5A0 +111D,B610 111D,B610 +111D,B680 111D,B680 +111D,B6F0 111D,B6F0 +111D,B760 111D,B760 +111D,B7D0 111D,B7D0 +111D,B840 111D,B840 +111D,B8B0 111D,B8B0 +111D,B920 111D,B920 +111D,B990 111D,B990 +111D,BA00 111D,BA00 +111D,BA70 111D,BA70 +111D,BAE0 111D,BAE0 +111D,BB50 111D,BB50 +111D,BBC0 111D,BBC0 +111D,BC30 111D,BC30 +111D,BCA0 111D,BCA0 +111D,BD10 111D,BD10 +111D,BD80 111D,BD80 +111D,BDF0 111D,BDF0 +111D,BE60 111D,BE60 +111D,BED0 111D,BED0 +111D,BF40 111D,BF40 +111D,BFB0 111D,BFB0 +111D,C020 111D,C020 +111D,C090 111D,C090 +111D,C100 111D,C100 +111D,C170 111D,C170 +111D,C1E0 111D,C1E0 +111D,C250 111D,C250 +111D,C2C0 111D,C2C0 +111D,C330 111D,C330 +111D,C3A0 111D,C3A0 +111D,C410 111D,C410 +111D,C480 111D,C480 +111D,C4F0 111D,C4F0 +111D,C560 111D,C560 +111D,C5D0 111D,C5D0 +111D,C640 111D,C640 +111D,C6B0 111D,C6B0 +111D,C720 111D,C720 +111D,C790 111D,C790 +111D,C800 111D,C800 +111D,C870 111D,C870 +111D,C8E0 111D,C8E0 +111D,C950 111D,C950 +111D,C9C0 111D,C9C0 +111D,CA30 111D,CA30 +111D,CAA0 111D,CAA0 +111D,CB10 111D,CB10 +111D,CB80 111D,CB80 +111D,CBF0 111D,CBF0 +111D,CC60 111D,CC60 +111D,CCD0 111D,CCD0 +111D,CD40 111D,CD40 +111D,CDB0 111D,CDB0 +111D,CE20 111D,CE20 +111D,CE90 111D,CE90 +111D,CF00 111D,CF00 +111D,CF70 111D,CF70 +111D,CFE0 111D,CFE0 +111D,D050 111D,D050 +111D,D0C0 111D,D0C0 +111D,D130 111D,D130 +111D,D1A0 111D,D1A0 +111D,D210 111D,D210 +111D,D280 111D,D280 +111D,D2F0 111D,D2F0 +111D,D360 111D,D360 +111D,D3D0 111D,D3D0 +111D,D440 111D,D440 +111D,D4B0 111D,D4B0 +111D,D520 111D,D520 +111D,D590 111D,D590 +111D,D600 111D,D600 +111D,D670 111D,D670 +111D,D6E0 111D,D6E0 +111D,D750 111D,D750 +111E,AC00 111E,AC00 +111E,AC70 111E,AC70 +111E,ACE0 111E,ACE0 +111E,AD50 111E,AD50 +111E,ADC0 111E,ADC0 +111E,AE30 111E,AE30 +111E,AEA0 111E,AEA0 +111E,AF10 111E,AF10 +111E,AF80 111E,AF80 +111E,AFF0 111E,AFF0 +111E,B060 111E,B060 +111E,B0D0 111E,B0D0 +111E,B140 111E,B140 +111E,B1B0 111E,B1B0 +111E,B220 111E,B220 +111E,B290 111E,B290 +111E,B300 111E,B300 +111E,B370 111E,B370 +111E,B3E0 111E,B3E0 +111E,B450 111E,B450 +111E,B4C0 111E,B4C0 +111E,B530 111E,B530 +111E,B5A0 111E,B5A0 +111E,B610 111E,B610 +111E,B680 111E,B680 +111E,B6F0 111E,B6F0 +111E,B760 111E,B760 +111E,B7D0 111E,B7D0 +111E,B840 111E,B840 +111E,B8B0 111E,B8B0 +111E,B920 111E,B920 +111E,B990 111E,B990 +111E,BA00 111E,BA00 +111E,BA70 111E,BA70 +111E,BAE0 111E,BAE0 +111E,BB50 111E,BB50 +111E,BBC0 111E,BBC0 +111E,BC30 111E,BC30 +111E,BCA0 111E,BCA0 +111E,BD10 111E,BD10 +111E,BD80 111E,BD80 +111E,BDF0 111E,BDF0 +111E,BE60 111E,BE60 +111E,BED0 111E,BED0 +111E,BF40 111E,BF40 +111E,BFB0 111E,BFB0 +111E,C020 111E,C020 +111E,C090 111E,C090 +111E,C100 111E,C100 +111E,C170 111E,C170 +111E,C1E0 111E,C1E0 +111E,C250 111E,C250 +111E,C2C0 111E,C2C0 +111E,C330 111E,C330 +111E,C3A0 111E,C3A0 +111E,C410 111E,C410 +111E,C480 111E,C480 +111E,C4F0 111E,C4F0 +111E,C560 111E,C560 +111E,C5D0 111E,C5D0 +111E,C640 111E,C640 +111E,C6B0 111E,C6B0 +111E,C720 111E,C720 +111E,C790 111E,C790 +111E,C800 111E,C800 +111E,C870 111E,C870 +111E,C8E0 111E,C8E0 +111E,C950 111E,C950 +111E,C9C0 111E,C9C0 +111E,CA30 111E,CA30 +111E,CAA0 111E,CAA0 +111E,CB10 111E,CB10 +111E,CB80 111E,CB80 +111E,CBF0 111E,CBF0 +111E,CC60 111E,CC60 +111E,CCD0 111E,CCD0 +111E,CD40 111E,CD40 +111E,CDB0 111E,CDB0 +111E,CE20 111E,CE20 +111E,CE90 111E,CE90 +111E,CF00 111E,CF00 +111E,CF70 111E,CF70 +111E,CFE0 111E,CFE0 +111E,D050 111E,D050 +111E,D0C0 111E,D0C0 +111E,D130 111E,D130 +111E,D1A0 111E,D1A0 +111E,D210 111E,D210 +111E,D280 111E,D280 +111E,D2F0 111E,D2F0 +111E,D360 111E,D360 +111E,D3D0 111E,D3D0 +111E,D440 111E,D440 +111E,D4B0 111E,D4B0 +111E,D520 111E,D520 +111E,D590 111E,D590 +111E,D600 111E,D600 +111E,D670 111E,D670 +111E,D6E0 111E,D6E0 +111E,D750 111E,D750 +111F,AC00 111F,AC00 +111F,AC70 111F,AC70 +111F,ACE0 111F,ACE0 +111F,AD50 111F,AD50 +111F,ADC0 111F,ADC0 +111F,AE30 111F,AE30 +111F,AEA0 111F,AEA0 +111F,AF10 111F,AF10 +111F,AF80 111F,AF80 +111F,AFF0 111F,AFF0 +111F,B060 111F,B060 +111F,B0D0 111F,B0D0 +111F,B140 111F,B140 +111F,B1B0 111F,B1B0 +111F,B220 111F,B220 +111F,B290 111F,B290 +111F,B300 111F,B300 +111F,B370 111F,B370 +111F,B3E0 111F,B3E0 +111F,B450 111F,B450 +111F,B4C0 111F,B4C0 +111F,B530 111F,B530 +111F,B5A0 111F,B5A0 +111F,B610 111F,B610 +111F,B680 111F,B680 +111F,B6F0 111F,B6F0 +111F,B760 111F,B760 +111F,B7D0 111F,B7D0 +111F,B840 111F,B840 +111F,B8B0 111F,B8B0 +111F,B920 111F,B920 +111F,B990 111F,B990 +111F,BA00 111F,BA00 +111F,BA70 111F,BA70 +111F,BAE0 111F,BAE0 +111F,BB50 111F,BB50 +111F,BBC0 111F,BBC0 +111F,BC30 111F,BC30 +111F,BCA0 111F,BCA0 +111F,BD10 111F,BD10 +111F,BD80 111F,BD80 +111F,BDF0 111F,BDF0 +111F,BE60 111F,BE60 +111F,BED0 111F,BED0 +111F,BF40 111F,BF40 +111F,BFB0 111F,BFB0 +111F,C020 111F,C020 +111F,C090 111F,C090 +111F,C100 111F,C100 +111F,C170 111F,C170 +111F,C1E0 111F,C1E0 +111F,C250 111F,C250 +111F,C2C0 111F,C2C0 +111F,C330 111F,C330 +111F,C3A0 111F,C3A0 +111F,C410 111F,C410 +111F,C480 111F,C480 +111F,C4F0 111F,C4F0 +111F,C560 111F,C560 +111F,C5D0 111F,C5D0 +111F,C640 111F,C640 +111F,C6B0 111F,C6B0 +111F,C720 111F,C720 +111F,C790 111F,C790 +111F,C800 111F,C800 +111F,C870 111F,C870 +111F,C8E0 111F,C8E0 +111F,C950 111F,C950 +111F,C9C0 111F,C9C0 +111F,CA30 111F,CA30 +111F,CAA0 111F,CAA0 +111F,CB10 111F,CB10 +111F,CB80 111F,CB80 +111F,CBF0 111F,CBF0 +111F,CC60 111F,CC60 +111F,CCD0 111F,CCD0 +111F,CD40 111F,CD40 +111F,CDB0 111F,CDB0 +111F,CE20 111F,CE20 +111F,CE90 111F,CE90 +111F,CF00 111F,CF00 +111F,CF70 111F,CF70 +111F,CFE0 111F,CFE0 +111F,D050 111F,D050 +111F,D0C0 111F,D0C0 +111F,D130 111F,D130 +111F,D1A0 111F,D1A0 +111F,D210 111F,D210 +111F,D280 111F,D280 +111F,D2F0 111F,D2F0 +111F,D360 111F,D360 +111F,D3D0 111F,D3D0 +111F,D440 111F,D440 +111F,D4B0 111F,D4B0 +111F,D520 111F,D520 +111F,D590 111F,D590 +111F,D600 111F,D600 +111F,D670 111F,D670 +111F,D6E0 111F,D6E0 +111F,D750 111F,D750 +1120,AC00 1120,AC00 +1120,AC70 1120,AC70 +1120,ACE0 1120,ACE0 +1120,AD50 1120,AD50 +1120,ADC0 1120,ADC0 +1120,AE30 1120,AE30 +1120,AEA0 1120,AEA0 +1120,AF10 1120,AF10 +1120,AF80 1120,AF80 +1120,AFF0 1120,AFF0 +1120,B060 1120,B060 +1120,B0D0 1120,B0D0 +1120,B140 1120,B140 +1120,B1B0 1120,B1B0 +1120,B220 1120,B220 +1120,B290 1120,B290 +1120,B300 1120,B300 +1120,B370 1120,B370 +1120,B3E0 1120,B3E0 +1120,B450 1120,B450 +1120,B4C0 1120,B4C0 +1120,B530 1120,B530 +1120,B5A0 1120,B5A0 +1120,B610 1120,B610 +1120,B680 1120,B680 +1120,B6F0 1120,B6F0 +1120,B760 1120,B760 +1120,B7D0 1120,B7D0 +1120,B840 1120,B840 +1120,B8B0 1120,B8B0 +1120,B920 1120,B920 +1120,B990 1120,B990 +1120,BA00 1120,BA00 +1120,BA70 1120,BA70 +1120,BAE0 1120,BAE0 +1120,BB50 1120,BB50 +1120,BBC0 1120,BBC0 +1120,BC30 1120,BC30 +1120,BCA0 1120,BCA0 +1120,BD10 1120,BD10 +1120,BD80 1120,BD80 +1120,BDF0 1120,BDF0 +1120,BE60 1120,BE60 +1120,BED0 1120,BED0 +1120,BF40 1120,BF40 +1120,BFB0 1120,BFB0 +1120,C020 1120,C020 +1120,C090 1120,C090 +1120,C100 1120,C100 +1120,C170 1120,C170 +1120,C1E0 1120,C1E0 +1120,C250 1120,C250 +1120,C2C0 1120,C2C0 +1120,C330 1120,C330 +1120,C3A0 1120,C3A0 +1120,C410 1120,C410 +1120,C480 1120,C480 +1120,C4F0 1120,C4F0 +1120,C560 1120,C560 +1120,C5D0 1120,C5D0 +1120,C640 1120,C640 +1120,C6B0 1120,C6B0 +1120,C720 1120,C720 +1120,C790 1120,C790 +1120,C800 1120,C800 +1120,C870 1120,C870 +1120,C8E0 1120,C8E0 +1120,C950 1120,C950 +1120,C9C0 1120,C9C0 +1120,CA30 1120,CA30 +1120,CAA0 1120,CAA0 +1120,CB10 1120,CB10 +1120,CB80 1120,CB80 +1120,CBF0 1120,CBF0 +1120,CC60 1120,CC60 +1120,CCD0 1120,CCD0 +1120,CD40 1120,CD40 +1120,CDB0 1120,CDB0 +1120,CE20 1120,CE20 +1120,CE90 1120,CE90 +1120,CF00 1120,CF00 +1120,CF70 1120,CF70 +1120,CFE0 1120,CFE0 +1120,D050 1120,D050 +1120,D0C0 1120,D0C0 +1120,D130 1120,D130 +1120,D1A0 1120,D1A0 +1120,D210 1120,D210 +1120,D280 1120,D280 +1120,D2F0 1120,D2F0 +1120,D360 1120,D360 +1120,D3D0 1120,D3D0 +1120,D440 1120,D440 +1120,D4B0 1120,D4B0 +1120,D520 1120,D520 +1120,D590 1120,D590 +1120,D600 1120,D600 +1120,D670 1120,D670 +1120,D6E0 1120,D6E0 +1120,D750 1120,D750 +1121,AC00 1121,AC00 +1121,AC70 1121,AC70 +1121,ACE0 1121,ACE0 +1121,AD50 1121,AD50 +1121,ADC0 1121,ADC0 +1121,AE30 1121,AE30 +1121,AEA0 1121,AEA0 +1121,AF10 1121,AF10 +1121,AF80 1121,AF80 +1121,AFF0 1121,AFF0 +1121,B060 1121,B060 +1121,B0D0 1121,B0D0 +1121,B140 1121,B140 +1121,B1B0 1121,B1B0 +1121,B220 1121,B220 +1121,B290 1121,B290 +1121,B300 1121,B300 +1121,B370 1121,B370 +1121,B3E0 1121,B3E0 +1121,B450 1121,B450 +1121,B4C0 1121,B4C0 +1121,B530 1121,B530 +1121,B5A0 1121,B5A0 +1121,B610 1121,B610 +1121,B680 1121,B680 +1121,B6F0 1121,B6F0 +1121,B760 1121,B760 +1121,B7D0 1121,B7D0 +1121,B840 1121,B840 +1121,B8B0 1121,B8B0 +1121,B920 1121,B920 +1121,B990 1121,B990 +1121,BA00 1121,BA00 +1121,BA70 1121,BA70 +1121,BAE0 1121,BAE0 +1121,BB50 1121,BB50 +1121,BBC0 1121,BBC0 +1121,BC30 1121,BC30 +1121,BCA0 1121,BCA0 +1121,BD10 1121,BD10 +1121,BD80 1121,BD80 +1121,BDF0 1121,BDF0 +1121,BE60 1121,BE60 +1121,BED0 1121,BED0 +1121,BF40 1121,BF40 +1121,BFB0 1121,BFB0 +1121,C020 1121,C020 +1121,C090 1121,C090 +1121,C100 1121,C100 +1121,C170 1121,C170 +1121,C1E0 1121,C1E0 +1121,C250 1121,C250 +1121,C2C0 1121,C2C0 +1121,C330 1121,C330 +1121,C3A0 1121,C3A0 +1121,C410 1121,C410 +1121,C480 1121,C480 +1121,C4F0 1121,C4F0 +1121,C560 1121,C560 +1121,C5D0 1121,C5D0 +1121,C640 1121,C640 +1121,C6B0 1121,C6B0 +1121,C720 1121,C720 +1121,C790 1121,C790 +1121,C800 1121,C800 +1121,C870 1121,C870 +1121,C8E0 1121,C8E0 +1121,C950 1121,C950 +1121,C9C0 1121,C9C0 +1121,CA30 1121,CA30 +1121,CAA0 1121,CAA0 +1121,CB10 1121,CB10 +1121,CB80 1121,CB80 +1121,CBF0 1121,CBF0 +1121,CC60 1121,CC60 +1121,CCD0 1121,CCD0 +1121,CD40 1121,CD40 +1121,CDB0 1121,CDB0 +1121,CE20 1121,CE20 +1121,CE90 1121,CE90 +1121,CF00 1121,CF00 +1121,CF70 1121,CF70 +1121,CFE0 1121,CFE0 +1121,D050 1121,D050 +1121,D0C0 1121,D0C0 +1121,D130 1121,D130 +1121,D1A0 1121,D1A0 +1121,D210 1121,D210 +1121,D280 1121,D280 +1121,D2F0 1121,D2F0 +1121,D360 1121,D360 +1121,D3D0 1121,D3D0 +1121,D440 1121,D440 +1121,D4B0 1121,D4B0 +1121,D520 1121,D520 +1121,D590 1121,D590 +1121,D600 1121,D600 +1121,D670 1121,D670 +1121,D6E0 1121,D6E0 +1121,D750 1121,D750 +1122,AC00 1122,AC00 +1122,AC70 1122,AC70 +1122,ACE0 1122,ACE0 +1122,AD50 1122,AD50 +1122,ADC0 1122,ADC0 +1122,AE30 1122,AE30 +1122,AEA0 1122,AEA0 +1122,AF10 1122,AF10 +1122,AF80 1122,AF80 +1122,AFF0 1122,AFF0 +1122,B060 1122,B060 +1122,B0D0 1122,B0D0 +1122,B140 1122,B140 +1122,B1B0 1122,B1B0 +1122,B220 1122,B220 +1122,B290 1122,B290 +1122,B300 1122,B300 +1122,B370 1122,B370 +1122,B3E0 1122,B3E0 +1122,B450 1122,B450 +1122,B4C0 1122,B4C0 +1122,B530 1122,B530 +1122,B5A0 1122,B5A0 +1122,B610 1122,B610 +1122,B680 1122,B680 +1122,B6F0 1122,B6F0 +1122,B760 1122,B760 +1122,B7D0 1122,B7D0 +1122,B840 1122,B840 +1122,B8B0 1122,B8B0 +1122,B920 1122,B920 +1122,B990 1122,B990 +1122,BA00 1122,BA00 +1122,BA70 1122,BA70 +1122,BAE0 1122,BAE0 +1122,BB50 1122,BB50 +1122,BBC0 1122,BBC0 +1122,BC30 1122,BC30 +1122,BCA0 1122,BCA0 +1122,BD10 1122,BD10 +1122,BD80 1122,BD80 +1122,BDF0 1122,BDF0 +1122,BE60 1122,BE60 +1122,BED0 1122,BED0 +1122,BF40 1122,BF40 +1122,BFB0 1122,BFB0 +1122,C020 1122,C020 +1122,C090 1122,C090 +1122,C100 1122,C100 +1122,C170 1122,C170 +1122,C1E0 1122,C1E0 +1122,C250 1122,C250 +1122,C2C0 1122,C2C0 +1122,C330 1122,C330 +1122,C3A0 1122,C3A0 +1122,C410 1122,C410 +1122,C480 1122,C480 +1122,C4F0 1122,C4F0 +1122,C560 1122,C560 +1122,C5D0 1122,C5D0 +1122,C640 1122,C640 +1122,C6B0 1122,C6B0 +1122,C720 1122,C720 +1122,C790 1122,C790 +1122,C800 1122,C800 +1122,C870 1122,C870 +1122,C8E0 1122,C8E0 +1122,C950 1122,C950 +1122,C9C0 1122,C9C0 +1122,CA30 1122,CA30 +1122,CAA0 1122,CAA0 +1122,CB10 1122,CB10 +1122,CB80 1122,CB80 +1122,CBF0 1122,CBF0 +1122,CC60 1122,CC60 +1122,CCD0 1122,CCD0 +1122,CD40 1122,CD40 +1122,CDB0 1122,CDB0 +1122,CE20 1122,CE20 +1122,CE90 1122,CE90 +1122,CF00 1122,CF00 +1122,CF70 1122,CF70 +1122,CFE0 1122,CFE0 +1122,D050 1122,D050 +1122,D0C0 1122,D0C0 +1122,D130 1122,D130 +1122,D1A0 1122,D1A0 +1122,D210 1122,D210 +1122,D280 1122,D280 +1122,D2F0 1122,D2F0 +1122,D360 1122,D360 +1122,D3D0 1122,D3D0 +1122,D440 1122,D440 +1122,D4B0 1122,D4B0 +1122,D520 1122,D520 +1122,D590 1122,D590 +1122,D600 1122,D600 +1122,D670 1122,D670 +1122,D6E0 1122,D6E0 +1122,D750 1122,D750 +1123,AC00 1123,AC00 +1123,AC70 1123,AC70 +1123,ACE0 1123,ACE0 +1123,AD50 1123,AD50 +1123,ADC0 1123,ADC0 +1123,AE30 1123,AE30 +1123,AEA0 1123,AEA0 +1123,AF10 1123,AF10 +1123,AF80 1123,AF80 +1123,AFF0 1123,AFF0 +1123,B060 1123,B060 +1123,B0D0 1123,B0D0 +1123,B140 1123,B140 +1123,B1B0 1123,B1B0 +1123,B220 1123,B220 +1123,B290 1123,B290 +1123,B300 1123,B300 +1123,B370 1123,B370 +1123,B3E0 1123,B3E0 +1123,B450 1123,B450 +1123,B4C0 1123,B4C0 +1123,B530 1123,B530 +1123,B5A0 1123,B5A0 +1123,B610 1123,B610 +1123,B680 1123,B680 +1123,B6F0 1123,B6F0 +1123,B760 1123,B760 +1123,B7D0 1123,B7D0 +1123,B840 1123,B840 +1123,B8B0 1123,B8B0 +1123,B920 1123,B920 +1123,B990 1123,B990 +1123,BA00 1123,BA00 +1123,BA70 1123,BA70 +1123,BAE0 1123,BAE0 +1123,BB50 1123,BB50 +1123,BBC0 1123,BBC0 +1123,BC30 1123,BC30 +1123,BCA0 1123,BCA0 +1123,BD10 1123,BD10 +1123,BD80 1123,BD80 +1123,BDF0 1123,BDF0 +1123,BE60 1123,BE60 +1123,BED0 1123,BED0 +1123,BF40 1123,BF40 +1123,BFB0 1123,BFB0 +1123,C020 1123,C020 +1123,C090 1123,C090 +1123,C100 1123,C100 +1123,C170 1123,C170 +1123,C1E0 1123,C1E0 +1123,C250 1123,C250 +1123,C2C0 1123,C2C0 +1123,C330 1123,C330 +1123,C3A0 1123,C3A0 +1123,C410 1123,C410 +1123,C480 1123,C480 +1123,C4F0 1123,C4F0 +1123,C560 1123,C560 +1123,C5D0 1123,C5D0 +1123,C640 1123,C640 +1123,C6B0 1123,C6B0 +1123,C720 1123,C720 +1123,C790 1123,C790 +1123,C800 1123,C800 +1123,C870 1123,C870 +1123,C8E0 1123,C8E0 +1123,C950 1123,C950 +1123,C9C0 1123,C9C0 +1123,CA30 1123,CA30 +1123,CAA0 1123,CAA0 +1123,CB10 1123,CB10 +1123,CB80 1123,CB80 +1123,CBF0 1123,CBF0 +1123,CC60 1123,CC60 +1123,CCD0 1123,CCD0 +1123,CD40 1123,CD40 +1123,CDB0 1123,CDB0 +1123,CE20 1123,CE20 +1123,CE90 1123,CE90 +1123,CF00 1123,CF00 +1123,CF70 1123,CF70 +1123,CFE0 1123,CFE0 +1123,D050 1123,D050 +1123,D0C0 1123,D0C0 +1123,D130 1123,D130 +1123,D1A0 1123,D1A0 +1123,D210 1123,D210 +1123,D280 1123,D280 +1123,D2F0 1123,D2F0 +1123,D360 1123,D360 +1123,D3D0 1123,D3D0 +1123,D440 1123,D440 +1123,D4B0 1123,D4B0 +1123,D520 1123,D520 +1123,D590 1123,D590 +1123,D600 1123,D600 +1123,D670 1123,D670 +1123,D6E0 1123,D6E0 +1123,D750 1123,D750 +1124,AC00 1124,AC00 +1124,AC70 1124,AC70 +1124,ACE0 1124,ACE0 +1124,AD50 1124,AD50 +1124,ADC0 1124,ADC0 +1124,AE30 1124,AE30 +1124,AEA0 1124,AEA0 +1124,AF10 1124,AF10 +1124,AF80 1124,AF80 +1124,AFF0 1124,AFF0 +1124,B060 1124,B060 +1124,B0D0 1124,B0D0 +1124,B140 1124,B140 +1124,B1B0 1124,B1B0 +1124,B220 1124,B220 +1124,B290 1124,B290 +1124,B300 1124,B300 +1124,B370 1124,B370 +1124,B3E0 1124,B3E0 +1124,B450 1124,B450 +1124,B4C0 1124,B4C0 +1124,B530 1124,B530 +1124,B5A0 1124,B5A0 +1124,B610 1124,B610 +1124,B680 1124,B680 +1124,B6F0 1124,B6F0 +1124,B760 1124,B760 +1124,B7D0 1124,B7D0 +1124,B840 1124,B840 +1124,B8B0 1124,B8B0 +1124,B920 1124,B920 +1124,B990 1124,B990 +1124,BA00 1124,BA00 +1124,BA70 1124,BA70 +1124,BAE0 1124,BAE0 +1124,BB50 1124,BB50 +1124,BBC0 1124,BBC0 +1124,BC30 1124,BC30 +1124,BCA0 1124,BCA0 +1124,BD10 1124,BD10 +1124,BD80 1124,BD80 +1124,BDF0 1124,BDF0 +1124,BE60 1124,BE60 +1124,BED0 1124,BED0 +1124,BF40 1124,BF40 +1124,BFB0 1124,BFB0 +1124,C020 1124,C020 +1124,C090 1124,C090 +1124,C100 1124,C100 +1124,C170 1124,C170 +1124,C1E0 1124,C1E0 +1124,C250 1124,C250 +1124,C2C0 1124,C2C0 +1124,C330 1124,C330 +1124,C3A0 1124,C3A0 +1124,C410 1124,C410 +1124,C480 1124,C480 +1124,C4F0 1124,C4F0 +1124,C560 1124,C560 +1124,C5D0 1124,C5D0 +1124,C640 1124,C640 +1124,C6B0 1124,C6B0 +1124,C720 1124,C720 +1124,C790 1124,C790 +1124,C800 1124,C800 +1124,C870 1124,C870 +1124,C8E0 1124,C8E0 +1124,C950 1124,C950 +1124,C9C0 1124,C9C0 +1124,CA30 1124,CA30 +1124,CAA0 1124,CAA0 +1124,CB10 1124,CB10 +1124,CB80 1124,CB80 +1124,CBF0 1124,CBF0 +1124,CC60 1124,CC60 +1124,CCD0 1124,CCD0 +1124,CD40 1124,CD40 +1124,CDB0 1124,CDB0 +1124,CE20 1124,CE20 +1124,CE90 1124,CE90 +1124,CF00 1124,CF00 +1124,CF70 1124,CF70 +1124,CFE0 1124,CFE0 +1124,D050 1124,D050 +1124,D0C0 1124,D0C0 +1124,D130 1124,D130 +1124,D1A0 1124,D1A0 +1124,D210 1124,D210 +1124,D280 1124,D280 +1124,D2F0 1124,D2F0 +1124,D360 1124,D360 +1124,D3D0 1124,D3D0 +1124,D440 1124,D440 +1124,D4B0 1124,D4B0 +1124,D520 1124,D520 +1124,D590 1124,D590 +1124,D600 1124,D600 +1124,D670 1124,D670 +1124,D6E0 1124,D6E0 +1124,D750 1124,D750 +1125,AC00 1125,AC00 +1125,AC70 1125,AC70 +1125,ACE0 1125,ACE0 +1125,AD50 1125,AD50 +1125,ADC0 1125,ADC0 +1125,AE30 1125,AE30 +1125,AEA0 1125,AEA0 +1125,AF10 1125,AF10 +1125,AF80 1125,AF80 +1125,AFF0 1125,AFF0 +1125,B060 1125,B060 +1125,B0D0 1125,B0D0 +1125,B140 1125,B140 +1125,B1B0 1125,B1B0 +1125,B220 1125,B220 +1125,B290 1125,B290 +1125,B300 1125,B300 +1125,B370 1125,B370 +1125,B3E0 1125,B3E0 +1125,B450 1125,B450 +1125,B4C0 1125,B4C0 +1125,B530 1125,B530 +1125,B5A0 1125,B5A0 +1125,B610 1125,B610 +1125,B680 1125,B680 +1125,B6F0 1125,B6F0 +1125,B760 1125,B760 +1125,B7D0 1125,B7D0 +1125,B840 1125,B840 +1125,B8B0 1125,B8B0 +1125,B920 1125,B920 +1125,B990 1125,B990 +1125,BA00 1125,BA00 +1125,BA70 1125,BA70 +1125,BAE0 1125,BAE0 +1125,BB50 1125,BB50 +1125,BBC0 1125,BBC0 +1125,BC30 1125,BC30 +1125,BCA0 1125,BCA0 +1125,BD10 1125,BD10 +1125,BD80 1125,BD80 +1125,BDF0 1125,BDF0 +1125,BE60 1125,BE60 +1125,BED0 1125,BED0 +1125,BF40 1125,BF40 +1125,BFB0 1125,BFB0 +1125,C020 1125,C020 +1125,C090 1125,C090 +1125,C100 1125,C100 +1125,C170 1125,C170 +1125,C1E0 1125,C1E0 +1125,C250 1125,C250 +1125,C2C0 1125,C2C0 +1125,C330 1125,C330 +1125,C3A0 1125,C3A0 +1125,C410 1125,C410 +1125,C480 1125,C480 +1125,C4F0 1125,C4F0 +1125,C560 1125,C560 +1125,C5D0 1125,C5D0 +1125,C640 1125,C640 +1125,C6B0 1125,C6B0 +1125,C720 1125,C720 +1125,C790 1125,C790 +1125,C800 1125,C800 +1125,C870 1125,C870 +1125,C8E0 1125,C8E0 +1125,C950 1125,C950 +1125,C9C0 1125,C9C0 +1125,CA30 1125,CA30 +1125,CAA0 1125,CAA0 +1125,CB10 1125,CB10 +1125,CB80 1125,CB80 +1125,CBF0 1125,CBF0 +1125,CC60 1125,CC60 +1125,CCD0 1125,CCD0 +1125,CD40 1125,CD40 +1125,CDB0 1125,CDB0 +1125,CE20 1125,CE20 +1125,CE90 1125,CE90 +1125,CF00 1125,CF00 +1125,CF70 1125,CF70 +1125,CFE0 1125,CFE0 +1125,D050 1125,D050 +1125,D0C0 1125,D0C0 +1125,D130 1125,D130 +1125,D1A0 1125,D1A0 +1125,D210 1125,D210 +1125,D280 1125,D280 +1125,D2F0 1125,D2F0 +1125,D360 1125,D360 +1125,D3D0 1125,D3D0 +1125,D440 1125,D440 +1125,D4B0 1125,D4B0 +1125,D520 1125,D520 +1125,D590 1125,D590 +1125,D600 1125,D600 +1125,D670 1125,D670 +1125,D6E0 1125,D6E0 +1125,D750 1125,D750 +1126,AC00 1126,AC00 +1126,AC70 1126,AC70 +1126,ACE0 1126,ACE0 +1126,AD50 1126,AD50 +1126,ADC0 1126,ADC0 +1126,AE30 1126,AE30 +1126,AEA0 1126,AEA0 +1126,AF10 1126,AF10 +1126,AF80 1126,AF80 +1126,AFF0 1126,AFF0 +1126,B060 1126,B060 +1126,B0D0 1126,B0D0 +1126,B140 1126,B140 +1126,B1B0 1126,B1B0 +1126,B220 1126,B220 +1126,B290 1126,B290 +1126,B300 1126,B300 +1126,B370 1126,B370 +1126,B3E0 1126,B3E0 +1126,B450 1126,B450 +1126,B4C0 1126,B4C0 +1126,B530 1126,B530 +1126,B5A0 1126,B5A0 +1126,B610 1126,B610 +1126,B680 1126,B680 +1126,B6F0 1126,B6F0 +1126,B760 1126,B760 +1126,B7D0 1126,B7D0 +1126,B840 1126,B840 +1126,B8B0 1126,B8B0 +1126,B920 1126,B920 +1126,B990 1126,B990 +1126,BA00 1126,BA00 +1126,BA70 1126,BA70 +1126,BAE0 1126,BAE0 +1126,BB50 1126,BB50 +1126,BBC0 1126,BBC0 +1126,BC30 1126,BC30 +1126,BCA0 1126,BCA0 +1126,BD10 1126,BD10 +1126,BD80 1126,BD80 +1126,BDF0 1126,BDF0 +1126,BE60 1126,BE60 +1126,BED0 1126,BED0 +1126,BF40 1126,BF40 +1126,BFB0 1126,BFB0 +1126,C020 1126,C020 +1126,C090 1126,C090 +1126,C100 1126,C100 +1126,C170 1126,C170 +1126,C1E0 1126,C1E0 +1126,C250 1126,C250 +1126,C2C0 1126,C2C0 +1126,C330 1126,C330 +1126,C3A0 1126,C3A0 +1126,C410 1126,C410 +1126,C480 1126,C480 +1126,C4F0 1126,C4F0 +1126,C560 1126,C560 +1126,C5D0 1126,C5D0 +1126,C640 1126,C640 +1126,C6B0 1126,C6B0 +1126,C720 1126,C720 +1126,C790 1126,C790 +1126,C800 1126,C800 +1126,C870 1126,C870 +1126,C8E0 1126,C8E0 +1126,C950 1126,C950 +1126,C9C0 1126,C9C0 +1126,CA30 1126,CA30 +1126,CAA0 1126,CAA0 +1126,CB10 1126,CB10 +1126,CB80 1126,CB80 +1126,CBF0 1126,CBF0 +1126,CC60 1126,CC60 +1126,CCD0 1126,CCD0 +1126,CD40 1126,CD40 +1126,CDB0 1126,CDB0 +1126,CE20 1126,CE20 +1126,CE90 1126,CE90 +1126,CF00 1126,CF00 +1126,CF70 1126,CF70 +1126,CFE0 1126,CFE0 +1126,D050 1126,D050 +1126,D0C0 1126,D0C0 +1126,D130 1126,D130 +1126,D1A0 1126,D1A0 +1126,D210 1126,D210 +1126,D280 1126,D280 +1126,D2F0 1126,D2F0 +1126,D360 1126,D360 +1126,D3D0 1126,D3D0 +1126,D440 1126,D440 +1126,D4B0 1126,D4B0 +1126,D520 1126,D520 +1126,D590 1126,D590 +1126,D600 1126,D600 +1126,D670 1126,D670 +1126,D6E0 1126,D6E0 +1126,D750 1126,D750 +1127,AC00 1127,AC00 +1127,AC70 1127,AC70 +1127,ACE0 1127,ACE0 +1127,AD50 1127,AD50 +1127,ADC0 1127,ADC0 +1127,AE30 1127,AE30 +1127,AEA0 1127,AEA0 +1127,AF10 1127,AF10 +1127,AF80 1127,AF80 +1127,AFF0 1127,AFF0 +1127,B060 1127,B060 +1127,B0D0 1127,B0D0 +1127,B140 1127,B140 +1127,B1B0 1127,B1B0 +1127,B220 1127,B220 +1127,B290 1127,B290 +1127,B300 1127,B300 +1127,B370 1127,B370 +1127,B3E0 1127,B3E0 +1127,B450 1127,B450 +1127,B4C0 1127,B4C0 +1127,B530 1127,B530 +1127,B5A0 1127,B5A0 +1127,B610 1127,B610 +1127,B680 1127,B680 +1127,B6F0 1127,B6F0 +1127,B760 1127,B760 +1127,B7D0 1127,B7D0 +1127,B840 1127,B840 +1127,B8B0 1127,B8B0 +1127,B920 1127,B920 +1127,B990 1127,B990 +1127,BA00 1127,BA00 +1127,BA70 1127,BA70 +1127,BAE0 1127,BAE0 +1127,BB50 1127,BB50 +1127,BBC0 1127,BBC0 +1127,BC30 1127,BC30 +1127,BCA0 1127,BCA0 +1127,BD10 1127,BD10 +1127,BD80 1127,BD80 +1127,BDF0 1127,BDF0 +1127,BE60 1127,BE60 +1127,BED0 1127,BED0 +1127,BF40 1127,BF40 +1127,BFB0 1127,BFB0 +1127,C020 1127,C020 +1127,C090 1127,C090 +1127,C100 1127,C100 +1127,C170 1127,C170 +1127,C1E0 1127,C1E0 +1127,C250 1127,C250 +1127,C2C0 1127,C2C0 +1127,C330 1127,C330 +1127,C3A0 1127,C3A0 +1127,C410 1127,C410 +1127,C480 1127,C480 +1127,C4F0 1127,C4F0 +1127,C560 1127,C560 +1127,C5D0 1127,C5D0 +1127,C640 1127,C640 +1127,C6B0 1127,C6B0 +1127,C720 1127,C720 +1127,C790 1127,C790 +1127,C800 1127,C800 +1127,C870 1127,C870 +1127,C8E0 1127,C8E0 +1127,C950 1127,C950 +1127,C9C0 1127,C9C0 +1127,CA30 1127,CA30 +1127,CAA0 1127,CAA0 +1127,CB10 1127,CB10 +1127,CB80 1127,CB80 +1127,CBF0 1127,CBF0 +1127,CC60 1127,CC60 +1127,CCD0 1127,CCD0 +1127,CD40 1127,CD40 +1127,CDB0 1127,CDB0 +1127,CE20 1127,CE20 +1127,CE90 1127,CE90 +1127,CF00 1127,CF00 +1127,CF70 1127,CF70 +1127,CFE0 1127,CFE0 +1127,D050 1127,D050 +1127,D0C0 1127,D0C0 +1127,D130 1127,D130 +1127,D1A0 1127,D1A0 +1127,D210 1127,D210 +1127,D280 1127,D280 +1127,D2F0 1127,D2F0 +1127,D360 1127,D360 +1127,D3D0 1127,D3D0 +1127,D440 1127,D440 +1127,D4B0 1127,D4B0 +1127,D520 1127,D520 +1127,D590 1127,D590 +1127,D600 1127,D600 +1127,D670 1127,D670 +1127,D6E0 1127,D6E0 +1127,D750 1127,D750 +1128,AC00 1128,AC00 +1128,AC70 1128,AC70 +1128,ACE0 1128,ACE0 +1128,AD50 1128,AD50 +1128,ADC0 1128,ADC0 +1128,AE30 1128,AE30 +1128,AEA0 1128,AEA0 +1128,AF10 1128,AF10 +1128,AF80 1128,AF80 +1128,AFF0 1128,AFF0 +1128,B060 1128,B060 +1128,B0D0 1128,B0D0 +1128,B140 1128,B140 +1128,B1B0 1128,B1B0 +1128,B220 1128,B220 +1128,B290 1128,B290 +1128,B300 1128,B300 +1128,B370 1128,B370 +1128,B3E0 1128,B3E0 +1128,B450 1128,B450 +1128,B4C0 1128,B4C0 +1128,B530 1128,B530 +1128,B5A0 1128,B5A0 +1128,B610 1128,B610 +1128,B680 1128,B680 +1128,B6F0 1128,B6F0 +1128,B760 1128,B760 +1128,B7D0 1128,B7D0 +1128,B840 1128,B840 +1128,B8B0 1128,B8B0 +1128,B920 1128,B920 +1128,B990 1128,B990 +1128,BA00 1128,BA00 +1128,BA70 1128,BA70 +1128,BAE0 1128,BAE0 +1128,BB50 1128,BB50 +1128,BBC0 1128,BBC0 +1128,BC30 1128,BC30 +1128,BCA0 1128,BCA0 +1128,BD10 1128,BD10 +1128,BD80 1128,BD80 +1128,BDF0 1128,BDF0 +1128,BE60 1128,BE60 +1128,BED0 1128,BED0 +1128,BF40 1128,BF40 +1128,BFB0 1128,BFB0 +1128,C020 1128,C020 +1128,C090 1128,C090 +1128,C100 1128,C100 +1128,C170 1128,C170 +1128,C1E0 1128,C1E0 +1128,C250 1128,C250 +1128,C2C0 1128,C2C0 +1128,C330 1128,C330 +1128,C3A0 1128,C3A0 +1128,C410 1128,C410 +1128,C480 1128,C480 +1128,C4F0 1128,C4F0 +1128,C560 1128,C560 +1128,C5D0 1128,C5D0 +1128,C640 1128,C640 +1128,C6B0 1128,C6B0 +1128,C720 1128,C720 +1128,C790 1128,C790 +1128,C800 1128,C800 +1128,C870 1128,C870 +1128,C8E0 1128,C8E0 +1128,C950 1128,C950 +1128,C9C0 1128,C9C0 +1128,CA30 1128,CA30 +1128,CAA0 1128,CAA0 +1128,CB10 1128,CB10 +1128,CB80 1128,CB80 +1128,CBF0 1128,CBF0 +1128,CC60 1128,CC60 +1128,CCD0 1128,CCD0 +1128,CD40 1128,CD40 +1128,CDB0 1128,CDB0 +1128,CE20 1128,CE20 +1128,CE90 1128,CE90 +1128,CF00 1128,CF00 +1128,CF70 1128,CF70 +1128,CFE0 1128,CFE0 +1128,D050 1128,D050 +1128,D0C0 1128,D0C0 +1128,D130 1128,D130 +1128,D1A0 1128,D1A0 +1128,D210 1128,D210 +1128,D280 1128,D280 +1128,D2F0 1128,D2F0 +1128,D360 1128,D360 +1128,D3D0 1128,D3D0 +1128,D440 1128,D440 +1128,D4B0 1128,D4B0 +1128,D520 1128,D520 +1128,D590 1128,D590 +1128,D600 1128,D600 +1128,D670 1128,D670 +1128,D6E0 1128,D6E0 +1128,D750 1128,D750 +1129,AC00 1129,AC00 +1129,AC70 1129,AC70 +1129,ACE0 1129,ACE0 +1129,AD50 1129,AD50 +1129,ADC0 1129,ADC0 +1129,AE30 1129,AE30 +1129,AEA0 1129,AEA0 +1129,AF10 1129,AF10 +1129,AF80 1129,AF80 +1129,AFF0 1129,AFF0 +1129,B060 1129,B060 +1129,B0D0 1129,B0D0 +1129,B140 1129,B140 +1129,B1B0 1129,B1B0 +1129,B220 1129,B220 +1129,B290 1129,B290 +1129,B300 1129,B300 +1129,B370 1129,B370 +1129,B3E0 1129,B3E0 +1129,B450 1129,B450 +1129,B4C0 1129,B4C0 +1129,B530 1129,B530 +1129,B5A0 1129,B5A0 +1129,B610 1129,B610 +1129,B680 1129,B680 +1129,B6F0 1129,B6F0 +1129,B760 1129,B760 +1129,B7D0 1129,B7D0 +1129,B840 1129,B840 +1129,B8B0 1129,B8B0 +1129,B920 1129,B920 +1129,B990 1129,B990 +1129,BA00 1129,BA00 +1129,BA70 1129,BA70 +1129,BAE0 1129,BAE0 +1129,BB50 1129,BB50 +1129,BBC0 1129,BBC0 +1129,BC30 1129,BC30 +1129,BCA0 1129,BCA0 +1129,BD10 1129,BD10 +1129,BD80 1129,BD80 +1129,BDF0 1129,BDF0 +1129,BE60 1129,BE60 +1129,BED0 1129,BED0 +1129,BF40 1129,BF40 +1129,BFB0 1129,BFB0 +1129,C020 1129,C020 +1129,C090 1129,C090 +1129,C100 1129,C100 +1129,C170 1129,C170 +1129,C1E0 1129,C1E0 +1129,C250 1129,C250 +1129,C2C0 1129,C2C0 +1129,C330 1129,C330 +1129,C3A0 1129,C3A0 +1129,C410 1129,C410 +1129,C480 1129,C480 +1129,C4F0 1129,C4F0 +1129,C560 1129,C560 +1129,C5D0 1129,C5D0 +1129,C640 1129,C640 +1129,C6B0 1129,C6B0 +1129,C720 1129,C720 +1129,C790 1129,C790 +1129,C800 1129,C800 +1129,C870 1129,C870 +1129,C8E0 1129,C8E0 +1129,C950 1129,C950 +1129,C9C0 1129,C9C0 +1129,CA30 1129,CA30 +1129,CAA0 1129,CAA0 +1129,CB10 1129,CB10 +1129,CB80 1129,CB80 +1129,CBF0 1129,CBF0 +1129,CC60 1129,CC60 +1129,CCD0 1129,CCD0 +1129,CD40 1129,CD40 +1129,CDB0 1129,CDB0 +1129,CE20 1129,CE20 +1129,CE90 1129,CE90 +1129,CF00 1129,CF00 +1129,CF70 1129,CF70 +1129,CFE0 1129,CFE0 +1129,D050 1129,D050 +1129,D0C0 1129,D0C0 +1129,D130 1129,D130 +1129,D1A0 1129,D1A0 +1129,D210 1129,D210 +1129,D280 1129,D280 +1129,D2F0 1129,D2F0 +1129,D360 1129,D360 +1129,D3D0 1129,D3D0 +1129,D440 1129,D440 +1129,D4B0 1129,D4B0 +1129,D520 1129,D520 +1129,D590 1129,D590 +1129,D600 1129,D600 +1129,D670 1129,D670 +1129,D6E0 1129,D6E0 +1129,D750 1129,D750 +112A,AC00 112A,AC00 +112A,AC70 112A,AC70 +112A,ACE0 112A,ACE0 +112A,AD50 112A,AD50 +112A,ADC0 112A,ADC0 +112A,AE30 112A,AE30 +112A,AEA0 112A,AEA0 +112A,AF10 112A,AF10 +112A,AF80 112A,AF80 +112A,AFF0 112A,AFF0 +112A,B060 112A,B060 +112A,B0D0 112A,B0D0 +112A,B140 112A,B140 +112A,B1B0 112A,B1B0 +112A,B220 112A,B220 +112A,B290 112A,B290 +112A,B300 112A,B300 +112A,B370 112A,B370 +112A,B3E0 112A,B3E0 +112A,B450 112A,B450 +112A,B4C0 112A,B4C0 +112A,B530 112A,B530 +112A,B5A0 112A,B5A0 +112A,B610 112A,B610 +112A,B680 112A,B680 +112A,B6F0 112A,B6F0 +112A,B760 112A,B760 +112A,B7D0 112A,B7D0 +112A,B840 112A,B840 +112A,B8B0 112A,B8B0 +112A,B920 112A,B920 +112A,B990 112A,B990 +112A,BA00 112A,BA00 +112A,BA70 112A,BA70 +112A,BAE0 112A,BAE0 +112A,BB50 112A,BB50 +112A,BBC0 112A,BBC0 +112A,BC30 112A,BC30 +112A,BCA0 112A,BCA0 +112A,BD10 112A,BD10 +112A,BD80 112A,BD80 +112A,BDF0 112A,BDF0 +112A,BE60 112A,BE60 +112A,BED0 112A,BED0 +112A,BF40 112A,BF40 +112A,BFB0 112A,BFB0 +112A,C020 112A,C020 +112A,C090 112A,C090 +112A,C100 112A,C100 +112A,C170 112A,C170 +112A,C1E0 112A,C1E0 +112A,C250 112A,C250 +112A,C2C0 112A,C2C0 +112A,C330 112A,C330 +112A,C3A0 112A,C3A0 +112A,C410 112A,C410 +112A,C480 112A,C480 +112A,C4F0 112A,C4F0 +112A,C560 112A,C560 +112A,C5D0 112A,C5D0 +112A,C640 112A,C640 +112A,C6B0 112A,C6B0 +112A,C720 112A,C720 +112A,C790 112A,C790 +112A,C800 112A,C800 +112A,C870 112A,C870 +112A,C8E0 112A,C8E0 +112A,C950 112A,C950 +112A,C9C0 112A,C9C0 +112A,CA30 112A,CA30 +112A,CAA0 112A,CAA0 +112A,CB10 112A,CB10 +112A,CB80 112A,CB80 +112A,CBF0 112A,CBF0 +112A,CC60 112A,CC60 +112A,CCD0 112A,CCD0 +112A,CD40 112A,CD40 +112A,CDB0 112A,CDB0 +112A,CE20 112A,CE20 +112A,CE90 112A,CE90 +112A,CF00 112A,CF00 +112A,CF70 112A,CF70 +112A,CFE0 112A,CFE0 +112A,D050 112A,D050 +112A,D0C0 112A,D0C0 +112A,D130 112A,D130 +112A,D1A0 112A,D1A0 +112A,D210 112A,D210 +112A,D280 112A,D280 +112A,D2F0 112A,D2F0 +112A,D360 112A,D360 +112A,D3D0 112A,D3D0 +112A,D440 112A,D440 +112A,D4B0 112A,D4B0 +112A,D520 112A,D520 +112A,D590 112A,D590 +112A,D600 112A,D600 +112A,D670 112A,D670 +112A,D6E0 112A,D6E0 +112A,D750 112A,D750 +112B,AC00 112B,AC00 +112B,AC70 112B,AC70 +112B,ACE0 112B,ACE0 +112B,AD50 112B,AD50 +112B,ADC0 112B,ADC0 +112B,AE30 112B,AE30 +112B,AEA0 112B,AEA0 +112B,AF10 112B,AF10 +112B,AF80 112B,AF80 +112B,AFF0 112B,AFF0 +112B,B060 112B,B060 +112B,B0D0 112B,B0D0 +112B,B140 112B,B140 +112B,B1B0 112B,B1B0 +112B,B220 112B,B220 +112B,B290 112B,B290 +112B,B300 112B,B300 +112B,B370 112B,B370 +112B,B3E0 112B,B3E0 +112B,B450 112B,B450 +112B,B4C0 112B,B4C0 +112B,B530 112B,B530 +112B,B5A0 112B,B5A0 +112B,B610 112B,B610 +112B,B680 112B,B680 +112B,B6F0 112B,B6F0 +112B,B760 112B,B760 +112B,B7D0 112B,B7D0 +112B,B840 112B,B840 +112B,B8B0 112B,B8B0 +112B,B920 112B,B920 +112B,B990 112B,B990 +112B,BA00 112B,BA00 +112B,BA70 112B,BA70 +112B,BAE0 112B,BAE0 +112B,BB50 112B,BB50 +112B,BBC0 112B,BBC0 +112B,BC30 112B,BC30 +112B,BCA0 112B,BCA0 +112B,BD10 112B,BD10 +112B,BD80 112B,BD80 +112B,BDF0 112B,BDF0 +112B,BE60 112B,BE60 +112B,BED0 112B,BED0 +112B,BF40 112B,BF40 +112B,BFB0 112B,BFB0 +112B,C020 112B,C020 +112B,C090 112B,C090 +112B,C100 112B,C100 +112B,C170 112B,C170 +112B,C1E0 112B,C1E0 +112B,C250 112B,C250 +112B,C2C0 112B,C2C0 +112B,C330 112B,C330 +112B,C3A0 112B,C3A0 +112B,C410 112B,C410 +112B,C480 112B,C480 +112B,C4F0 112B,C4F0 +112B,C560 112B,C560 +112B,C5D0 112B,C5D0 +112B,C640 112B,C640 +112B,C6B0 112B,C6B0 +112B,C720 112B,C720 +112B,C790 112B,C790 +112B,C800 112B,C800 +112B,C870 112B,C870 +112B,C8E0 112B,C8E0 +112B,C950 112B,C950 +112B,C9C0 112B,C9C0 +112B,CA30 112B,CA30 +112B,CAA0 112B,CAA0 +112B,CB10 112B,CB10 +112B,CB80 112B,CB80 +112B,CBF0 112B,CBF0 +112B,CC60 112B,CC60 +112B,CCD0 112B,CCD0 +112B,CD40 112B,CD40 +112B,CDB0 112B,CDB0 +112B,CE20 112B,CE20 +112B,CE90 112B,CE90 +112B,CF00 112B,CF00 +112B,CF70 112B,CF70 +112B,CFE0 112B,CFE0 +112B,D050 112B,D050 +112B,D0C0 112B,D0C0 +112B,D130 112B,D130 +112B,D1A0 112B,D1A0 +112B,D210 112B,D210 +112B,D280 112B,D280 +112B,D2F0 112B,D2F0 +112B,D360 112B,D360 +112B,D3D0 112B,D3D0 +112B,D440 112B,D440 +112B,D4B0 112B,D4B0 +112B,D520 112B,D520 +112B,D590 112B,D590 +112B,D600 112B,D600 +112B,D670 112B,D670 +112B,D6E0 112B,D6E0 +112B,D750 112B,D750 +112C,AC00 112C,AC00 +112C,AC70 112C,AC70 +112C,ACE0 112C,ACE0 +112C,AD50 112C,AD50 +112C,ADC0 112C,ADC0 +112C,AE30 112C,AE30 +112C,AEA0 112C,AEA0 +112C,AF10 112C,AF10 +112C,AF80 112C,AF80 +112C,AFF0 112C,AFF0 +112C,B060 112C,B060 +112C,B0D0 112C,B0D0 +112C,B140 112C,B140 +112C,B1B0 112C,B1B0 +112C,B220 112C,B220 +112C,B290 112C,B290 +112C,B300 112C,B300 +112C,B370 112C,B370 +112C,B3E0 112C,B3E0 +112C,B450 112C,B450 +112C,B4C0 112C,B4C0 +112C,B530 112C,B530 +112C,B5A0 112C,B5A0 +112C,B610 112C,B610 +112C,B680 112C,B680 +112C,B6F0 112C,B6F0 +112C,B760 112C,B760 +112C,B7D0 112C,B7D0 +112C,B840 112C,B840 +112C,B8B0 112C,B8B0 +112C,B920 112C,B920 +112C,B990 112C,B990 +112C,BA00 112C,BA00 +112C,BA70 112C,BA70 +112C,BAE0 112C,BAE0 +112C,BB50 112C,BB50 +112C,BBC0 112C,BBC0 +112C,BC30 112C,BC30 +112C,BCA0 112C,BCA0 +112C,BD10 112C,BD10 +112C,BD80 112C,BD80 +112C,BDF0 112C,BDF0 +112C,BE60 112C,BE60 +112C,BED0 112C,BED0 +112C,BF40 112C,BF40 +112C,BFB0 112C,BFB0 +112C,C020 112C,C020 +112C,C090 112C,C090 +112C,C100 112C,C100 +112C,C170 112C,C170 +112C,C1E0 112C,C1E0 +112C,C250 112C,C250 +112C,C2C0 112C,C2C0 +112C,C330 112C,C330 +112C,C3A0 112C,C3A0 +112C,C410 112C,C410 +112C,C480 112C,C480 +112C,C4F0 112C,C4F0 +112C,C560 112C,C560 +112C,C5D0 112C,C5D0 +112C,C640 112C,C640 +112C,C6B0 112C,C6B0 +112C,C720 112C,C720 +112C,C790 112C,C790 +112C,C800 112C,C800 +112C,C870 112C,C870 +112C,C8E0 112C,C8E0 +112C,C950 112C,C950 +112C,C9C0 112C,C9C0 +112C,CA30 112C,CA30 +112C,CAA0 112C,CAA0 +112C,CB10 112C,CB10 +112C,CB80 112C,CB80 +112C,CBF0 112C,CBF0 +112C,CC60 112C,CC60 +112C,CCD0 112C,CCD0 +112C,CD40 112C,CD40 +112C,CDB0 112C,CDB0 +112C,CE20 112C,CE20 +112C,CE90 112C,CE90 +112C,CF00 112C,CF00 +112C,CF70 112C,CF70 +112C,CFE0 112C,CFE0 +112C,D050 112C,D050 +112C,D0C0 112C,D0C0 +112C,D130 112C,D130 +112C,D1A0 112C,D1A0 +112C,D210 112C,D210 +112C,D280 112C,D280 +112C,D2F0 112C,D2F0 +112C,D360 112C,D360 +112C,D3D0 112C,D3D0 +112C,D440 112C,D440 +112C,D4B0 112C,D4B0 +112C,D520 112C,D520 +112C,D590 112C,D590 +112C,D600 112C,D600 +112C,D670 112C,D670 +112C,D6E0 112C,D6E0 +112C,D750 112C,D750 +112D,AC00 112D,AC00 +112D,AC70 112D,AC70 +112D,ACE0 112D,ACE0 +112D,AD50 112D,AD50 +112D,ADC0 112D,ADC0 +112D,AE30 112D,AE30 +112D,AEA0 112D,AEA0 +112D,AF10 112D,AF10 +112D,AF80 112D,AF80 +112D,AFF0 112D,AFF0 +112D,B060 112D,B060 +112D,B0D0 112D,B0D0 +112D,B140 112D,B140 +112D,B1B0 112D,B1B0 +112D,B220 112D,B220 +112D,B290 112D,B290 +112D,B300 112D,B300 +112D,B370 112D,B370 +112D,B3E0 112D,B3E0 +112D,B450 112D,B450 +112D,B4C0 112D,B4C0 +112D,B530 112D,B530 +112D,B5A0 112D,B5A0 +112D,B610 112D,B610 +112D,B680 112D,B680 +112D,B6F0 112D,B6F0 +112D,B760 112D,B760 +112D,B7D0 112D,B7D0 +112D,B840 112D,B840 +112D,B8B0 112D,B8B0 +112D,B920 112D,B920 +112D,B990 112D,B990 +112D,BA00 112D,BA00 +112D,BA70 112D,BA70 +112D,BAE0 112D,BAE0 +112D,BB50 112D,BB50 +112D,BBC0 112D,BBC0 +112D,BC30 112D,BC30 +112D,BCA0 112D,BCA0 +112D,BD10 112D,BD10 +112D,BD80 112D,BD80 +112D,BDF0 112D,BDF0 +112D,BE60 112D,BE60 +112D,BED0 112D,BED0 +112D,BF40 112D,BF40 +112D,BFB0 112D,BFB0 +112D,C020 112D,C020 +112D,C090 112D,C090 +112D,C100 112D,C100 +112D,C170 112D,C170 +112D,C1E0 112D,C1E0 +112D,C250 112D,C250 +112D,C2C0 112D,C2C0 +112D,C330 112D,C330 +112D,C3A0 112D,C3A0 +112D,C410 112D,C410 +112D,C480 112D,C480 +112D,C4F0 112D,C4F0 +112D,C560 112D,C560 +112D,C5D0 112D,C5D0 +112D,C640 112D,C640 +112D,C6B0 112D,C6B0 +112D,C720 112D,C720 +112D,C790 112D,C790 +112D,C800 112D,C800 +112D,C870 112D,C870 +112D,C8E0 112D,C8E0 +112D,C950 112D,C950 +112D,C9C0 112D,C9C0 +112D,CA30 112D,CA30 +112D,CAA0 112D,CAA0 +112D,CB10 112D,CB10 +112D,CB80 112D,CB80 +112D,CBF0 112D,CBF0 +112D,CC60 112D,CC60 +112D,CCD0 112D,CCD0 +112D,CD40 112D,CD40 +112D,CDB0 112D,CDB0 +112D,CE20 112D,CE20 +112D,CE90 112D,CE90 +112D,CF00 112D,CF00 +112D,CF70 112D,CF70 +112D,CFE0 112D,CFE0 +112D,D050 112D,D050 +112D,D0C0 112D,D0C0 +112D,D130 112D,D130 +112D,D1A0 112D,D1A0 +112D,D210 112D,D210 +112D,D280 112D,D280 +112D,D2F0 112D,D2F0 +112D,D360 112D,D360 +112D,D3D0 112D,D3D0 +112D,D440 112D,D440 +112D,D4B0 112D,D4B0 +112D,D520 112D,D520 +112D,D590 112D,D590 +112D,D600 112D,D600 +112D,D670 112D,D670 +112D,D6E0 112D,D6E0 +112D,D750 112D,D750 +112E,AC00 112E,AC00 +112E,AC70 112E,AC70 +112E,ACE0 112E,ACE0 +112E,AD50 112E,AD50 +112E,ADC0 112E,ADC0 +112E,AE30 112E,AE30 +112E,AEA0 112E,AEA0 +112E,AF10 112E,AF10 +112E,AF80 112E,AF80 +112E,AFF0 112E,AFF0 +112E,B060 112E,B060 +112E,B0D0 112E,B0D0 +112E,B140 112E,B140 +112E,B1B0 112E,B1B0 +112E,B220 112E,B220 +112E,B290 112E,B290 +112E,B300 112E,B300 +112E,B370 112E,B370 +112E,B3E0 112E,B3E0 +112E,B450 112E,B450 +112E,B4C0 112E,B4C0 +112E,B530 112E,B530 +112E,B5A0 112E,B5A0 +112E,B610 112E,B610 +112E,B680 112E,B680 +112E,B6F0 112E,B6F0 +112E,B760 112E,B760 +112E,B7D0 112E,B7D0 +112E,B840 112E,B840 +112E,B8B0 112E,B8B0 +112E,B920 112E,B920 +112E,B990 112E,B990 +112E,BA00 112E,BA00 +112E,BA70 112E,BA70 +112E,BAE0 112E,BAE0 +112E,BB50 112E,BB50 +112E,BBC0 112E,BBC0 +112E,BC30 112E,BC30 +112E,BCA0 112E,BCA0 +112E,BD10 112E,BD10 +112E,BD80 112E,BD80 +112E,BDF0 112E,BDF0 +112E,BE60 112E,BE60 +112E,BED0 112E,BED0 +112E,BF40 112E,BF40 +112E,BFB0 112E,BFB0 +112E,C020 112E,C020 +112E,C090 112E,C090 +112E,C100 112E,C100 +112E,C170 112E,C170 +112E,C1E0 112E,C1E0 +112E,C250 112E,C250 +112E,C2C0 112E,C2C0 +112E,C330 112E,C330 +112E,C3A0 112E,C3A0 +112E,C410 112E,C410 +112E,C480 112E,C480 +112E,C4F0 112E,C4F0 +112E,C560 112E,C560 +112E,C5D0 112E,C5D0 +112E,C640 112E,C640 +112E,C6B0 112E,C6B0 +112E,C720 112E,C720 +112E,C790 112E,C790 +112E,C800 112E,C800 +112E,C870 112E,C870 +112E,C8E0 112E,C8E0 +112E,C950 112E,C950 +112E,C9C0 112E,C9C0 +112E,CA30 112E,CA30 +112E,CAA0 112E,CAA0 +112E,CB10 112E,CB10 +112E,CB80 112E,CB80 +112E,CBF0 112E,CBF0 +112E,CC60 112E,CC60 +112E,CCD0 112E,CCD0 +112E,CD40 112E,CD40 +112E,CDB0 112E,CDB0 +112E,CE20 112E,CE20 +112E,CE90 112E,CE90 +112E,CF00 112E,CF00 +112E,CF70 112E,CF70 +112E,CFE0 112E,CFE0 +112E,D050 112E,D050 +112E,D0C0 112E,D0C0 +112E,D130 112E,D130 +112E,D1A0 112E,D1A0 +112E,D210 112E,D210 +112E,D280 112E,D280 +112E,D2F0 112E,D2F0 +112E,D360 112E,D360 +112E,D3D0 112E,D3D0 +112E,D440 112E,D440 +112E,D4B0 112E,D4B0 +112E,D520 112E,D520 +112E,D590 112E,D590 +112E,D600 112E,D600 +112E,D670 112E,D670 +112E,D6E0 112E,D6E0 +112E,D750 112E,D750 +112F,AC00 112F,AC00 +112F,AC70 112F,AC70 +112F,ACE0 112F,ACE0 +112F,AD50 112F,AD50 +112F,ADC0 112F,ADC0 +112F,AE30 112F,AE30 +112F,AEA0 112F,AEA0 +112F,AF10 112F,AF10 +112F,AF80 112F,AF80 +112F,AFF0 112F,AFF0 +112F,B060 112F,B060 +112F,B0D0 112F,B0D0 +112F,B140 112F,B140 +112F,B1B0 112F,B1B0 +112F,B220 112F,B220 +112F,B290 112F,B290 +112F,B300 112F,B300 +112F,B370 112F,B370 +112F,B3E0 112F,B3E0 +112F,B450 112F,B450 +112F,B4C0 112F,B4C0 +112F,B530 112F,B530 +112F,B5A0 112F,B5A0 +112F,B610 112F,B610 +112F,B680 112F,B680 +112F,B6F0 112F,B6F0 +112F,B760 112F,B760 +112F,B7D0 112F,B7D0 +112F,B840 112F,B840 +112F,B8B0 112F,B8B0 +112F,B920 112F,B920 +112F,B990 112F,B990 +112F,BA00 112F,BA00 +112F,BA70 112F,BA70 +112F,BAE0 112F,BAE0 +112F,BB50 112F,BB50 +112F,BBC0 112F,BBC0 +112F,BC30 112F,BC30 +112F,BCA0 112F,BCA0 +112F,BD10 112F,BD10 +112F,BD80 112F,BD80 +112F,BDF0 112F,BDF0 +112F,BE60 112F,BE60 +112F,BED0 112F,BED0 +112F,BF40 112F,BF40 +112F,BFB0 112F,BFB0 +112F,C020 112F,C020 +112F,C090 112F,C090 +112F,C100 112F,C100 +112F,C170 112F,C170 +112F,C1E0 112F,C1E0 +112F,C250 112F,C250 +112F,C2C0 112F,C2C0 +112F,C330 112F,C330 +112F,C3A0 112F,C3A0 +112F,C410 112F,C410 +112F,C480 112F,C480 +112F,C4F0 112F,C4F0 +112F,C560 112F,C560 +112F,C5D0 112F,C5D0 +112F,C640 112F,C640 +112F,C6B0 112F,C6B0 +112F,C720 112F,C720 +112F,C790 112F,C790 +112F,C800 112F,C800 +112F,C870 112F,C870 +112F,C8E0 112F,C8E0 +112F,C950 112F,C950 +112F,C9C0 112F,C9C0 +112F,CA30 112F,CA30 +112F,CAA0 112F,CAA0 +112F,CB10 112F,CB10 +112F,CB80 112F,CB80 +112F,CBF0 112F,CBF0 +112F,CC60 112F,CC60 +112F,CCD0 112F,CCD0 +112F,CD40 112F,CD40 +112F,CDB0 112F,CDB0 +112F,CE20 112F,CE20 +112F,CE90 112F,CE90 +112F,CF00 112F,CF00 +112F,CF70 112F,CF70 +112F,CFE0 112F,CFE0 +112F,D050 112F,D050 +112F,D0C0 112F,D0C0 +112F,D130 112F,D130 +112F,D1A0 112F,D1A0 +112F,D210 112F,D210 +112F,D280 112F,D280 +112F,D2F0 112F,D2F0 +112F,D360 112F,D360 +112F,D3D0 112F,D3D0 +112F,D440 112F,D440 +112F,D4B0 112F,D4B0 +112F,D520 112F,D520 +112F,D590 112F,D590 +112F,D600 112F,D600 +112F,D670 112F,D670 +112F,D6E0 112F,D6E0 +112F,D750 112F,D750 +1130,AC00 1130,AC00 +1130,AC70 1130,AC70 +1130,ACE0 1130,ACE0 +1130,AD50 1130,AD50 +1130,ADC0 1130,ADC0 +1130,AE30 1130,AE30 +1130,AEA0 1130,AEA0 +1130,AF10 1130,AF10 +1130,AF80 1130,AF80 +1130,AFF0 1130,AFF0 +1130,B060 1130,B060 +1130,B0D0 1130,B0D0 +1130,B140 1130,B140 +1130,B1B0 1130,B1B0 +1130,B220 1130,B220 +1130,B290 1130,B290 +1130,B300 1130,B300 +1130,B370 1130,B370 +1130,B3E0 1130,B3E0 +1130,B450 1130,B450 +1130,B4C0 1130,B4C0 +1130,B530 1130,B530 +1130,B5A0 1130,B5A0 +1130,B610 1130,B610 +1130,B680 1130,B680 +1130,B6F0 1130,B6F0 +1130,B760 1130,B760 +1130,B7D0 1130,B7D0 +1130,B840 1130,B840 +1130,B8B0 1130,B8B0 +1130,B920 1130,B920 +1130,B990 1130,B990 +1130,BA00 1130,BA00 +1130,BA70 1130,BA70 +1130,BAE0 1130,BAE0 +1130,BB50 1130,BB50 +1130,BBC0 1130,BBC0 +1130,BC30 1130,BC30 +1130,BCA0 1130,BCA0 +1130,BD10 1130,BD10 +1130,BD80 1130,BD80 +1130,BDF0 1130,BDF0 +1130,BE60 1130,BE60 +1130,BED0 1130,BED0 +1130,BF40 1130,BF40 +1130,BFB0 1130,BFB0 +1130,C020 1130,C020 +1130,C090 1130,C090 +1130,C100 1130,C100 +1130,C170 1130,C170 +1130,C1E0 1130,C1E0 +1130,C250 1130,C250 +1130,C2C0 1130,C2C0 +1130,C330 1130,C330 +1130,C3A0 1130,C3A0 +1130,C410 1130,C410 +1130,C480 1130,C480 +1130,C4F0 1130,C4F0 +1130,C560 1130,C560 +1130,C5D0 1130,C5D0 +1130,C640 1130,C640 +1130,C6B0 1130,C6B0 +1130,C720 1130,C720 +1130,C790 1130,C790 +1130,C800 1130,C800 +1130,C870 1130,C870 +1130,C8E0 1130,C8E0 +1130,C950 1130,C950 +1130,C9C0 1130,C9C0 +1130,CA30 1130,CA30 +1130,CAA0 1130,CAA0 +1130,CB10 1130,CB10 +1130,CB80 1130,CB80 +1130,CBF0 1130,CBF0 +1130,CC60 1130,CC60 +1130,CCD0 1130,CCD0 +1130,CD40 1130,CD40 +1130,CDB0 1130,CDB0 +1130,CE20 1130,CE20 +1130,CE90 1130,CE90 +1130,CF00 1130,CF00 +1130,CF70 1130,CF70 +1130,CFE0 1130,CFE0 +1130,D050 1130,D050 +1130,D0C0 1130,D0C0 +1130,D130 1130,D130 +1130,D1A0 1130,D1A0 +1130,D210 1130,D210 +1130,D280 1130,D280 +1130,D2F0 1130,D2F0 +1130,D360 1130,D360 +1130,D3D0 1130,D3D0 +1130,D440 1130,D440 +1130,D4B0 1130,D4B0 +1130,D520 1130,D520 +1130,D590 1130,D590 +1130,D600 1130,D600 +1130,D670 1130,D670 +1130,D6E0 1130,D6E0 +1130,D750 1130,D750 +1131,AC00 1131,AC00 +1131,AC70 1131,AC70 +1131,ACE0 1131,ACE0 +1131,AD50 1131,AD50 +1131,ADC0 1131,ADC0 +1131,AE30 1131,AE30 +1131,AEA0 1131,AEA0 +1131,AF10 1131,AF10 +1131,AF80 1131,AF80 +1131,AFF0 1131,AFF0 +1131,B060 1131,B060 +1131,B0D0 1131,B0D0 +1131,B140 1131,B140 +1131,B1B0 1131,B1B0 +1131,B220 1131,B220 +1131,B290 1131,B290 +1131,B300 1131,B300 +1131,B370 1131,B370 +1131,B3E0 1131,B3E0 +1131,B450 1131,B450 +1131,B4C0 1131,B4C0 +1131,B530 1131,B530 +1131,B5A0 1131,B5A0 +1131,B610 1131,B610 +1131,B680 1131,B680 +1131,B6F0 1131,B6F0 +1131,B760 1131,B760 +1131,B7D0 1131,B7D0 +1131,B840 1131,B840 +1131,B8B0 1131,B8B0 +1131,B920 1131,B920 +1131,B990 1131,B990 +1131,BA00 1131,BA00 +1131,BA70 1131,BA70 +1131,BAE0 1131,BAE0 +1131,BB50 1131,BB50 +1131,BBC0 1131,BBC0 +1131,BC30 1131,BC30 +1131,BCA0 1131,BCA0 +1131,BD10 1131,BD10 +1131,BD80 1131,BD80 +1131,BDF0 1131,BDF0 +1131,BE60 1131,BE60 +1131,BED0 1131,BED0 +1131,BF40 1131,BF40 +1131,BFB0 1131,BFB0 +1131,C020 1131,C020 +1131,C090 1131,C090 +1131,C100 1131,C100 +1131,C170 1131,C170 +1131,C1E0 1131,C1E0 +1131,C250 1131,C250 +1131,C2C0 1131,C2C0 +1131,C330 1131,C330 +1131,C3A0 1131,C3A0 +1131,C410 1131,C410 +1131,C480 1131,C480 +1131,C4F0 1131,C4F0 +1131,C560 1131,C560 +1131,C5D0 1131,C5D0 +1131,C640 1131,C640 +1131,C6B0 1131,C6B0 +1131,C720 1131,C720 +1131,C790 1131,C790 +1131,C800 1131,C800 +1131,C870 1131,C870 +1131,C8E0 1131,C8E0 +1131,C950 1131,C950 +1131,C9C0 1131,C9C0 +1131,CA30 1131,CA30 +1131,CAA0 1131,CAA0 +1131,CB10 1131,CB10 +1131,CB80 1131,CB80 +1131,CBF0 1131,CBF0 +1131,CC60 1131,CC60 +1131,CCD0 1131,CCD0 +1131,CD40 1131,CD40 +1131,CDB0 1131,CDB0 +1131,CE20 1131,CE20 +1131,CE90 1131,CE90 +1131,CF00 1131,CF00 +1131,CF70 1131,CF70 +1131,CFE0 1131,CFE0 +1131,D050 1131,D050 +1131,D0C0 1131,D0C0 +1131,D130 1131,D130 +1131,D1A0 1131,D1A0 +1131,D210 1131,D210 +1131,D280 1131,D280 +1131,D2F0 1131,D2F0 +1131,D360 1131,D360 +1131,D3D0 1131,D3D0 +1131,D440 1131,D440 +1131,D4B0 1131,D4B0 +1131,D520 1131,D520 +1131,D590 1131,D590 +1131,D600 1131,D600 +1131,D670 1131,D670 +1131,D6E0 1131,D6E0 +1131,D750 1131,D750 +1132,AC00 1132,AC00 +1132,AC70 1132,AC70 +1132,ACE0 1132,ACE0 +1132,AD50 1132,AD50 +1132,ADC0 1132,ADC0 +1132,AE30 1132,AE30 +1132,AEA0 1132,AEA0 +1132,AF10 1132,AF10 +1132,AF80 1132,AF80 +1132,AFF0 1132,AFF0 +1132,B060 1132,B060 +1132,B0D0 1132,B0D0 +1132,B140 1132,B140 +1132,B1B0 1132,B1B0 +1132,B220 1132,B220 +1132,B290 1132,B290 +1132,B300 1132,B300 +1132,B370 1132,B370 +1132,B3E0 1132,B3E0 +1132,B450 1132,B450 +1132,B4C0 1132,B4C0 +1132,B530 1132,B530 +1132,B5A0 1132,B5A0 +1132,B610 1132,B610 +1132,B680 1132,B680 +1132,B6F0 1132,B6F0 +1132,B760 1132,B760 +1132,B7D0 1132,B7D0 +1132,B840 1132,B840 +1132,B8B0 1132,B8B0 +1132,B920 1132,B920 +1132,B990 1132,B990 +1132,BA00 1132,BA00 +1132,BA70 1132,BA70 +1132,BAE0 1132,BAE0 +1132,BB50 1132,BB50 +1132,BBC0 1132,BBC0 +1132,BC30 1132,BC30 +1132,BCA0 1132,BCA0 +1132,BD10 1132,BD10 +1132,BD80 1132,BD80 +1132,BDF0 1132,BDF0 +1132,BE60 1132,BE60 +1132,BED0 1132,BED0 +1132,BF40 1132,BF40 +1132,BFB0 1132,BFB0 +1132,C020 1132,C020 +1132,C090 1132,C090 +1132,C100 1132,C100 +1132,C170 1132,C170 +1132,C1E0 1132,C1E0 +1132,C250 1132,C250 +1132,C2C0 1132,C2C0 +1132,C330 1132,C330 +1132,C3A0 1132,C3A0 +1132,C410 1132,C410 +1132,C480 1132,C480 +1132,C4F0 1132,C4F0 +1132,C560 1132,C560 +1132,C5D0 1132,C5D0 +1132,C640 1132,C640 +1132,C6B0 1132,C6B0 +1132,C720 1132,C720 +1132,C790 1132,C790 +1132,C800 1132,C800 +1132,C870 1132,C870 +1132,C8E0 1132,C8E0 +1132,C950 1132,C950 +1132,C9C0 1132,C9C0 +1132,CA30 1132,CA30 +1132,CAA0 1132,CAA0 +1132,CB10 1132,CB10 +1132,CB80 1132,CB80 +1132,CBF0 1132,CBF0 +1132,CC60 1132,CC60 +1132,CCD0 1132,CCD0 +1132,CD40 1132,CD40 +1132,CDB0 1132,CDB0 +1132,CE20 1132,CE20 +1132,CE90 1132,CE90 +1132,CF00 1132,CF00 +1132,CF70 1132,CF70 +1132,CFE0 1132,CFE0 +1132,D050 1132,D050 +1132,D0C0 1132,D0C0 +1132,D130 1132,D130 +1132,D1A0 1132,D1A0 +1132,D210 1132,D210 +1132,D280 1132,D280 +1132,D2F0 1132,D2F0 +1132,D360 1132,D360 +1132,D3D0 1132,D3D0 +1132,D440 1132,D440 +1132,D4B0 1132,D4B0 +1132,D520 1132,D520 +1132,D590 1132,D590 +1132,D600 1132,D600 +1132,D670 1132,D670 +1132,D6E0 1132,D6E0 +1132,D750 1132,D750 +1133,AC00 1133,AC00 +1133,AC70 1133,AC70 +1133,ACE0 1133,ACE0 +1133,AD50 1133,AD50 +1133,ADC0 1133,ADC0 +1133,AE30 1133,AE30 +1133,AEA0 1133,AEA0 +1133,AF10 1133,AF10 +1133,AF80 1133,AF80 +1133,AFF0 1133,AFF0 +1133,B060 1133,B060 +1133,B0D0 1133,B0D0 +1133,B140 1133,B140 +1133,B1B0 1133,B1B0 +1133,B220 1133,B220 +1133,B290 1133,B290 +1133,B300 1133,B300 +1133,B370 1133,B370 +1133,B3E0 1133,B3E0 +1133,B450 1133,B450 +1133,B4C0 1133,B4C0 +1133,B530 1133,B530 +1133,B5A0 1133,B5A0 +1133,B610 1133,B610 +1133,B680 1133,B680 +1133,B6F0 1133,B6F0 +1133,B760 1133,B760 +1133,B7D0 1133,B7D0 +1133,B840 1133,B840 +1133,B8B0 1133,B8B0 +1133,B920 1133,B920 +1133,B990 1133,B990 +1133,BA00 1133,BA00 +1133,BA70 1133,BA70 +1133,BAE0 1133,BAE0 +1133,BB50 1133,BB50 +1133,BBC0 1133,BBC0 +1133,BC30 1133,BC30 +1133,BCA0 1133,BCA0 +1133,BD10 1133,BD10 +1133,BD80 1133,BD80 +1133,BDF0 1133,BDF0 +1133,BE60 1133,BE60 +1133,BED0 1133,BED0 +1133,BF40 1133,BF40 +1133,BFB0 1133,BFB0 +1133,C020 1133,C020 +1133,C090 1133,C090 +1133,C100 1133,C100 +1133,C170 1133,C170 +1133,C1E0 1133,C1E0 +1133,C250 1133,C250 +1133,C2C0 1133,C2C0 +1133,C330 1133,C330 +1133,C3A0 1133,C3A0 +1133,C410 1133,C410 +1133,C480 1133,C480 +1133,C4F0 1133,C4F0 +1133,C560 1133,C560 +1133,C5D0 1133,C5D0 +1133,C640 1133,C640 +1133,C6B0 1133,C6B0 +1133,C720 1133,C720 +1133,C790 1133,C790 +1133,C800 1133,C800 +1133,C870 1133,C870 +1133,C8E0 1133,C8E0 +1133,C950 1133,C950 +1133,C9C0 1133,C9C0 +1133,CA30 1133,CA30 +1133,CAA0 1133,CAA0 +1133,CB10 1133,CB10 +1133,CB80 1133,CB80 +1133,CBF0 1133,CBF0 +1133,CC60 1133,CC60 +1133,CCD0 1133,CCD0 +1133,CD40 1133,CD40 +1133,CDB0 1133,CDB0 +1133,CE20 1133,CE20 +1133,CE90 1133,CE90 +1133,CF00 1133,CF00 +1133,CF70 1133,CF70 +1133,CFE0 1133,CFE0 +1133,D050 1133,D050 +1133,D0C0 1133,D0C0 +1133,D130 1133,D130 +1133,D1A0 1133,D1A0 +1133,D210 1133,D210 +1133,D280 1133,D280 +1133,D2F0 1133,D2F0 +1133,D360 1133,D360 +1133,D3D0 1133,D3D0 +1133,D440 1133,D440 +1133,D4B0 1133,D4B0 +1133,D520 1133,D520 +1133,D590 1133,D590 +1133,D600 1133,D600 +1133,D670 1133,D670 +1133,D6E0 1133,D6E0 +1133,D750 1133,D750 +1134,AC00 1134,AC00 +1134,AC70 1134,AC70 +1134,ACE0 1134,ACE0 +1134,AD50 1134,AD50 +1134,ADC0 1134,ADC0 +1134,AE30 1134,AE30 +1134,AEA0 1134,AEA0 +1134,AF10 1134,AF10 +1134,AF80 1134,AF80 +1134,AFF0 1134,AFF0 +1134,B060 1134,B060 +1134,B0D0 1134,B0D0 +1134,B140 1134,B140 +1134,B1B0 1134,B1B0 +1134,B220 1134,B220 +1134,B290 1134,B290 +1134,B300 1134,B300 +1134,B370 1134,B370 +1134,B3E0 1134,B3E0 +1134,B450 1134,B450 +1134,B4C0 1134,B4C0 +1134,B530 1134,B530 +1134,B5A0 1134,B5A0 +1134,B610 1134,B610 +1134,B680 1134,B680 +1134,B6F0 1134,B6F0 +1134,B760 1134,B760 +1134,B7D0 1134,B7D0 +1134,B840 1134,B840 +1134,B8B0 1134,B8B0 +1134,B920 1134,B920 +1134,B990 1134,B990 +1134,BA00 1134,BA00 +1134,BA70 1134,BA70 +1134,BAE0 1134,BAE0 +1134,BB50 1134,BB50 +1134,BBC0 1134,BBC0 +1134,BC30 1134,BC30 +1134,BCA0 1134,BCA0 +1134,BD10 1134,BD10 +1134,BD80 1134,BD80 +1134,BDF0 1134,BDF0 +1134,BE60 1134,BE60 +1134,BED0 1134,BED0 +1134,BF40 1134,BF40 +1134,BFB0 1134,BFB0 +1134,C020 1134,C020 +1134,C090 1134,C090 +1134,C100 1134,C100 +1134,C170 1134,C170 +1134,C1E0 1134,C1E0 +1134,C250 1134,C250 +1134,C2C0 1134,C2C0 +1134,C330 1134,C330 +1134,C3A0 1134,C3A0 +1134,C410 1134,C410 +1134,C480 1134,C480 +1134,C4F0 1134,C4F0 +1134,C560 1134,C560 +1134,C5D0 1134,C5D0 +1134,C640 1134,C640 +1134,C6B0 1134,C6B0 +1134,C720 1134,C720 +1134,C790 1134,C790 +1134,C800 1134,C800 +1134,C870 1134,C870 +1134,C8E0 1134,C8E0 +1134,C950 1134,C950 +1134,C9C0 1134,C9C0 +1134,CA30 1134,CA30 +1134,CAA0 1134,CAA0 +1134,CB10 1134,CB10 +1134,CB80 1134,CB80 +1134,CBF0 1134,CBF0 +1134,CC60 1134,CC60 +1134,CCD0 1134,CCD0 +1134,CD40 1134,CD40 +1134,CDB0 1134,CDB0 +1134,CE20 1134,CE20 +1134,CE90 1134,CE90 +1134,CF00 1134,CF00 +1134,CF70 1134,CF70 +1134,CFE0 1134,CFE0 +1134,D050 1134,D050 +1134,D0C0 1134,D0C0 +1134,D130 1134,D130 +1134,D1A0 1134,D1A0 +1134,D210 1134,D210 +1134,D280 1134,D280 +1134,D2F0 1134,D2F0 +1134,D360 1134,D360 +1134,D3D0 1134,D3D0 +1134,D440 1134,D440 +1134,D4B0 1134,D4B0 +1134,D520 1134,D520 +1134,D590 1134,D590 +1134,D600 1134,D600 +1134,D670 1134,D670 +1134,D6E0 1134,D6E0 +1134,D750 1134,D750 +1135,AC00 1135,AC00 +1135,AC70 1135,AC70 +1135,ACE0 1135,ACE0 +1135,AD50 1135,AD50 +1135,ADC0 1135,ADC0 +1135,AE30 1135,AE30 +1135,AEA0 1135,AEA0 +1135,AF10 1135,AF10 +1135,AF80 1135,AF80 +1135,AFF0 1135,AFF0 +1135,B060 1135,B060 +1135,B0D0 1135,B0D0 +1135,B140 1135,B140 +1135,B1B0 1135,B1B0 +1135,B220 1135,B220 +1135,B290 1135,B290 +1135,B300 1135,B300 +1135,B370 1135,B370 +1135,B3E0 1135,B3E0 +1135,B450 1135,B450 +1135,B4C0 1135,B4C0 +1135,B530 1135,B530 +1135,B5A0 1135,B5A0 +1135,B610 1135,B610 +1135,B680 1135,B680 +1135,B6F0 1135,B6F0 +1135,B760 1135,B760 +1135,B7D0 1135,B7D0 +1135,B840 1135,B840 +1135,B8B0 1135,B8B0 +1135,B920 1135,B920 +1135,B990 1135,B990 +1135,BA00 1135,BA00 +1135,BA70 1135,BA70 +1135,BAE0 1135,BAE0 +1135,BB50 1135,BB50 +1135,BBC0 1135,BBC0 +1135,BC30 1135,BC30 +1135,BCA0 1135,BCA0 +1135,BD10 1135,BD10 +1135,BD80 1135,BD80 +1135,BDF0 1135,BDF0 +1135,BE60 1135,BE60 +1135,BED0 1135,BED0 +1135,BF40 1135,BF40 +1135,BFB0 1135,BFB0 +1135,C020 1135,C020 +1135,C090 1135,C090 +1135,C100 1135,C100 +1135,C170 1135,C170 +1135,C1E0 1135,C1E0 +1135,C250 1135,C250 +1135,C2C0 1135,C2C0 +1135,C330 1135,C330 +1135,C3A0 1135,C3A0 +1135,C410 1135,C410 +1135,C480 1135,C480 +1135,C4F0 1135,C4F0 +1135,C560 1135,C560 +1135,C5D0 1135,C5D0 +1135,C640 1135,C640 +1135,C6B0 1135,C6B0 +1135,C720 1135,C720 +1135,C790 1135,C790 +1135,C800 1135,C800 +1135,C870 1135,C870 +1135,C8E0 1135,C8E0 +1135,C950 1135,C950 +1135,C9C0 1135,C9C0 +1135,CA30 1135,CA30 +1135,CAA0 1135,CAA0 +1135,CB10 1135,CB10 +1135,CB80 1135,CB80 +1135,CBF0 1135,CBF0 +1135,CC60 1135,CC60 +1135,CCD0 1135,CCD0 +1135,CD40 1135,CD40 +1135,CDB0 1135,CDB0 +1135,CE20 1135,CE20 +1135,CE90 1135,CE90 +1135,CF00 1135,CF00 +1135,CF70 1135,CF70 +1135,CFE0 1135,CFE0 +1135,D050 1135,D050 +1135,D0C0 1135,D0C0 +1135,D130 1135,D130 +1135,D1A0 1135,D1A0 +1135,D210 1135,D210 +1135,D280 1135,D280 +1135,D2F0 1135,D2F0 +1135,D360 1135,D360 +1135,D3D0 1135,D3D0 +1135,D440 1135,D440 +1135,D4B0 1135,D4B0 +1135,D520 1135,D520 +1135,D590 1135,D590 +1135,D600 1135,D600 +1135,D670 1135,D670 +1135,D6E0 1135,D6E0 +1135,D750 1135,D750 +1136,AC00 1136,AC00 +1136,AC70 1136,AC70 +1136,ACE0 1136,ACE0 +1136,AD50 1136,AD50 +1136,ADC0 1136,ADC0 +1136,AE30 1136,AE30 +1136,AEA0 1136,AEA0 +1136,AF10 1136,AF10 +1136,AF80 1136,AF80 +1136,AFF0 1136,AFF0 +1136,B060 1136,B060 +1136,B0D0 1136,B0D0 +1136,B140 1136,B140 +1136,B1B0 1136,B1B0 +1136,B220 1136,B220 +1136,B290 1136,B290 +1136,B300 1136,B300 +1136,B370 1136,B370 +1136,B3E0 1136,B3E0 +1136,B450 1136,B450 +1136,B4C0 1136,B4C0 +1136,B530 1136,B530 +1136,B5A0 1136,B5A0 +1136,B610 1136,B610 +1136,B680 1136,B680 +1136,B6F0 1136,B6F0 +1136,B760 1136,B760 +1136,B7D0 1136,B7D0 +1136,B840 1136,B840 +1136,B8B0 1136,B8B0 +1136,B920 1136,B920 +1136,B990 1136,B990 +1136,BA00 1136,BA00 +1136,BA70 1136,BA70 +1136,BAE0 1136,BAE0 +1136,BB50 1136,BB50 +1136,BBC0 1136,BBC0 +1136,BC30 1136,BC30 +1136,BCA0 1136,BCA0 +1136,BD10 1136,BD10 +1136,BD80 1136,BD80 +1136,BDF0 1136,BDF0 +1136,BE60 1136,BE60 +1136,BED0 1136,BED0 +1136,BF40 1136,BF40 +1136,BFB0 1136,BFB0 +1136,C020 1136,C020 +1136,C090 1136,C090 +1136,C100 1136,C100 +1136,C170 1136,C170 +1136,C1E0 1136,C1E0 +1136,C250 1136,C250 +1136,C2C0 1136,C2C0 +1136,C330 1136,C330 +1136,C3A0 1136,C3A0 +1136,C410 1136,C410 +1136,C480 1136,C480 +1136,C4F0 1136,C4F0 +1136,C560 1136,C560 +1136,C5D0 1136,C5D0 +1136,C640 1136,C640 +1136,C6B0 1136,C6B0 +1136,C720 1136,C720 +1136,C790 1136,C790 +1136,C800 1136,C800 +1136,C870 1136,C870 +1136,C8E0 1136,C8E0 +1136,C950 1136,C950 +1136,C9C0 1136,C9C0 +1136,CA30 1136,CA30 +1136,CAA0 1136,CAA0 +1136,CB10 1136,CB10 +1136,CB80 1136,CB80 +1136,CBF0 1136,CBF0 +1136,CC60 1136,CC60 +1136,CCD0 1136,CCD0 +1136,CD40 1136,CD40 +1136,CDB0 1136,CDB0 +1136,CE20 1136,CE20 +1136,CE90 1136,CE90 +1136,CF00 1136,CF00 +1136,CF70 1136,CF70 +1136,CFE0 1136,CFE0 +1136,D050 1136,D050 +1136,D0C0 1136,D0C0 +1136,D130 1136,D130 +1136,D1A0 1136,D1A0 +1136,D210 1136,D210 +1136,D280 1136,D280 +1136,D2F0 1136,D2F0 +1136,D360 1136,D360 +1136,D3D0 1136,D3D0 +1136,D440 1136,D440 +1136,D4B0 1136,D4B0 +1136,D520 1136,D520 +1136,D590 1136,D590 +1136,D600 1136,D600 +1136,D670 1136,D670 +1136,D6E0 1136,D6E0 +1136,D750 1136,D750 +1137,AC00 1137,AC00 +1137,AC70 1137,AC70 +1137,ACE0 1137,ACE0 +1137,AD50 1137,AD50 +1137,ADC0 1137,ADC0 +1137,AE30 1137,AE30 +1137,AEA0 1137,AEA0 +1137,AF10 1137,AF10 +1137,AF80 1137,AF80 +1137,AFF0 1137,AFF0 +1137,B060 1137,B060 +1137,B0D0 1137,B0D0 +1137,B140 1137,B140 +1137,B1B0 1137,B1B0 +1137,B220 1137,B220 +1137,B290 1137,B290 +1137,B300 1137,B300 +1137,B370 1137,B370 +1137,B3E0 1137,B3E0 +1137,B450 1137,B450 +1137,B4C0 1137,B4C0 +1137,B530 1137,B530 +1137,B5A0 1137,B5A0 +1137,B610 1137,B610 +1137,B680 1137,B680 +1137,B6F0 1137,B6F0 +1137,B760 1137,B760 +1137,B7D0 1137,B7D0 +1137,B840 1137,B840 +1137,B8B0 1137,B8B0 +1137,B920 1137,B920 +1137,B990 1137,B990 +1137,BA00 1137,BA00 +1137,BA70 1137,BA70 +1137,BAE0 1137,BAE0 +1137,BB50 1137,BB50 +1137,BBC0 1137,BBC0 +1137,BC30 1137,BC30 +1137,BCA0 1137,BCA0 +1137,BD10 1137,BD10 +1137,BD80 1137,BD80 +1137,BDF0 1137,BDF0 +1137,BE60 1137,BE60 +1137,BED0 1137,BED0 +1137,BF40 1137,BF40 +1137,BFB0 1137,BFB0 +1137,C020 1137,C020 +1137,C090 1137,C090 +1137,C100 1137,C100 +1137,C170 1137,C170 +1137,C1E0 1137,C1E0 +1137,C250 1137,C250 +1137,C2C0 1137,C2C0 +1137,C330 1137,C330 +1137,C3A0 1137,C3A0 +1137,C410 1137,C410 +1137,C480 1137,C480 +1137,C4F0 1137,C4F0 +1137,C560 1137,C560 +1137,C5D0 1137,C5D0 +1137,C640 1137,C640 +1137,C6B0 1137,C6B0 +1137,C720 1137,C720 +1137,C790 1137,C790 +1137,C800 1137,C800 +1137,C870 1137,C870 +1137,C8E0 1137,C8E0 +1137,C950 1137,C950 +1137,C9C0 1137,C9C0 +1137,CA30 1137,CA30 +1137,CAA0 1137,CAA0 +1137,CB10 1137,CB10 +1137,CB80 1137,CB80 +1137,CBF0 1137,CBF0 +1137,CC60 1137,CC60 +1137,CCD0 1137,CCD0 +1137,CD40 1137,CD40 +1137,CDB0 1137,CDB0 +1137,CE20 1137,CE20 +1137,CE90 1137,CE90 +1137,CF00 1137,CF00 +1137,CF70 1137,CF70 +1137,CFE0 1137,CFE0 +1137,D050 1137,D050 +1137,D0C0 1137,D0C0 +1137,D130 1137,D130 +1137,D1A0 1137,D1A0 +1137,D210 1137,D210 +1137,D280 1137,D280 +1137,D2F0 1137,D2F0 +1137,D360 1137,D360 +1137,D3D0 1137,D3D0 +1137,D440 1137,D440 +1137,D4B0 1137,D4B0 +1137,D520 1137,D520 +1137,D590 1137,D590 +1137,D600 1137,D600 +1137,D670 1137,D670 +1137,D6E0 1137,D6E0 +1137,D750 1137,D750 +1138,AC00 1138,AC00 +1138,AC70 1138,AC70 +1138,ACE0 1138,ACE0 +1138,AD50 1138,AD50 +1138,ADC0 1138,ADC0 +1138,AE30 1138,AE30 +1138,AEA0 1138,AEA0 +1138,AF10 1138,AF10 +1138,AF80 1138,AF80 +1138,AFF0 1138,AFF0 +1138,B060 1138,B060 +1138,B0D0 1138,B0D0 +1138,B140 1138,B140 +1138,B1B0 1138,B1B0 +1138,B220 1138,B220 +1138,B290 1138,B290 +1138,B300 1138,B300 +1138,B370 1138,B370 +1138,B3E0 1138,B3E0 +1138,B450 1138,B450 +1138,B4C0 1138,B4C0 +1138,B530 1138,B530 +1138,B5A0 1138,B5A0 +1138,B610 1138,B610 +1138,B680 1138,B680 +1138,B6F0 1138,B6F0 +1138,B760 1138,B760 +1138,B7D0 1138,B7D0 +1138,B840 1138,B840 +1138,B8B0 1138,B8B0 +1138,B920 1138,B920 +1138,B990 1138,B990 +1138,BA00 1138,BA00 +1138,BA70 1138,BA70 +1138,BAE0 1138,BAE0 +1138,BB50 1138,BB50 +1138,BBC0 1138,BBC0 +1138,BC30 1138,BC30 +1138,BCA0 1138,BCA0 +1138,BD10 1138,BD10 +1138,BD80 1138,BD80 +1138,BDF0 1138,BDF0 +1138,BE60 1138,BE60 +1138,BED0 1138,BED0 +1138,BF40 1138,BF40 +1138,BFB0 1138,BFB0 +1138,C020 1138,C020 +1138,C090 1138,C090 +1138,C100 1138,C100 +1138,C170 1138,C170 +1138,C1E0 1138,C1E0 +1138,C250 1138,C250 +1138,C2C0 1138,C2C0 +1138,C330 1138,C330 +1138,C3A0 1138,C3A0 +1138,C410 1138,C410 +1138,C480 1138,C480 +1138,C4F0 1138,C4F0 +1138,C560 1138,C560 +1138,C5D0 1138,C5D0 +1138,C640 1138,C640 +1138,C6B0 1138,C6B0 +1138,C720 1138,C720 +1138,C790 1138,C790 +1138,C800 1138,C800 +1138,C870 1138,C870 +1138,C8E0 1138,C8E0 +1138,C950 1138,C950 +1138,C9C0 1138,C9C0 +1138,CA30 1138,CA30 +1138,CAA0 1138,CAA0 +1138,CB10 1138,CB10 +1138,CB80 1138,CB80 +1138,CBF0 1138,CBF0 +1138,CC60 1138,CC60 +1138,CCD0 1138,CCD0 +1138,CD40 1138,CD40 +1138,CDB0 1138,CDB0 +1138,CE20 1138,CE20 +1138,CE90 1138,CE90 +1138,CF00 1138,CF00 +1138,CF70 1138,CF70 +1138,CFE0 1138,CFE0 +1138,D050 1138,D050 +1138,D0C0 1138,D0C0 +1138,D130 1138,D130 +1138,D1A0 1138,D1A0 +1138,D210 1138,D210 +1138,D280 1138,D280 +1138,D2F0 1138,D2F0 +1138,D360 1138,D360 +1138,D3D0 1138,D3D0 +1138,D440 1138,D440 +1138,D4B0 1138,D4B0 +1138,D520 1138,D520 +1138,D590 1138,D590 +1138,D600 1138,D600 +1138,D670 1138,D670 +1138,D6E0 1138,D6E0 +1138,D750 1138,D750 +1139,AC00 1139,AC00 +1139,AC70 1139,AC70 +1139,ACE0 1139,ACE0 +1139,AD50 1139,AD50 +1139,ADC0 1139,ADC0 +1139,AE30 1139,AE30 +1139,AEA0 1139,AEA0 +1139,AF10 1139,AF10 +1139,AF80 1139,AF80 +1139,AFF0 1139,AFF0 +1139,B060 1139,B060 +1139,B0D0 1139,B0D0 +1139,B140 1139,B140 +1139,B1B0 1139,B1B0 +1139,B220 1139,B220 +1139,B290 1139,B290 +1139,B300 1139,B300 +1139,B370 1139,B370 +1139,B3E0 1139,B3E0 +1139,B450 1139,B450 +1139,B4C0 1139,B4C0 +1139,B530 1139,B530 +1139,B5A0 1139,B5A0 +1139,B610 1139,B610 +1139,B680 1139,B680 +1139,B6F0 1139,B6F0 +1139,B760 1139,B760 +1139,B7D0 1139,B7D0 +1139,B840 1139,B840 +1139,B8B0 1139,B8B0 +1139,B920 1139,B920 +1139,B990 1139,B990 +1139,BA00 1139,BA00 +1139,BA70 1139,BA70 +1139,BAE0 1139,BAE0 +1139,BB50 1139,BB50 +1139,BBC0 1139,BBC0 +1139,BC30 1139,BC30 +1139,BCA0 1139,BCA0 +1139,BD10 1139,BD10 +1139,BD80 1139,BD80 +1139,BDF0 1139,BDF0 +1139,BE60 1139,BE60 +1139,BED0 1139,BED0 +1139,BF40 1139,BF40 +1139,BFB0 1139,BFB0 +1139,C020 1139,C020 +1139,C090 1139,C090 +1139,C100 1139,C100 +1139,C170 1139,C170 +1139,C1E0 1139,C1E0 +1139,C250 1139,C250 +1139,C2C0 1139,C2C0 +1139,C330 1139,C330 +1139,C3A0 1139,C3A0 +1139,C410 1139,C410 +1139,C480 1139,C480 +1139,C4F0 1139,C4F0 +1139,C560 1139,C560 +1139,C5D0 1139,C5D0 +1139,C640 1139,C640 +1139,C6B0 1139,C6B0 +1139,C720 1139,C720 +1139,C790 1139,C790 +1139,C800 1139,C800 +1139,C870 1139,C870 +1139,C8E0 1139,C8E0 +1139,C950 1139,C950 +1139,C9C0 1139,C9C0 +1139,CA30 1139,CA30 +1139,CAA0 1139,CAA0 +1139,CB10 1139,CB10 +1139,CB80 1139,CB80 +1139,CBF0 1139,CBF0 +1139,CC60 1139,CC60 +1139,CCD0 1139,CCD0 +1139,CD40 1139,CD40 +1139,CDB0 1139,CDB0 +1139,CE20 1139,CE20 +1139,CE90 1139,CE90 +1139,CF00 1139,CF00 +1139,CF70 1139,CF70 +1139,CFE0 1139,CFE0 +1139,D050 1139,D050 +1139,D0C0 1139,D0C0 +1139,D130 1139,D130 +1139,D1A0 1139,D1A0 +1139,D210 1139,D210 +1139,D280 1139,D280 +1139,D2F0 1139,D2F0 +1139,D360 1139,D360 +1139,D3D0 1139,D3D0 +1139,D440 1139,D440 +1139,D4B0 1139,D4B0 +1139,D520 1139,D520 +1139,D590 1139,D590 +1139,D600 1139,D600 +1139,D670 1139,D670 +1139,D6E0 1139,D6E0 +1139,D750 1139,D750 +113A,AC00 113A,AC00 +113A,AC70 113A,AC70 +113A,ACE0 113A,ACE0 +113A,AD50 113A,AD50 +113A,ADC0 113A,ADC0 +113A,AE30 113A,AE30 +113A,AEA0 113A,AEA0 +113A,AF10 113A,AF10 +113A,AF80 113A,AF80 +113A,AFF0 113A,AFF0 +113A,B060 113A,B060 +113A,B0D0 113A,B0D0 +113A,B140 113A,B140 +113A,B1B0 113A,B1B0 +113A,B220 113A,B220 +113A,B290 113A,B290 +113A,B300 113A,B300 +113A,B370 113A,B370 +113A,B3E0 113A,B3E0 +113A,B450 113A,B450 +113A,B4C0 113A,B4C0 +113A,B530 113A,B530 +113A,B5A0 113A,B5A0 +113A,B610 113A,B610 +113A,B680 113A,B680 +113A,B6F0 113A,B6F0 +113A,B760 113A,B760 +113A,B7D0 113A,B7D0 +113A,B840 113A,B840 +113A,B8B0 113A,B8B0 +113A,B920 113A,B920 +113A,B990 113A,B990 +113A,BA00 113A,BA00 +113A,BA70 113A,BA70 +113A,BAE0 113A,BAE0 +113A,BB50 113A,BB50 +113A,BBC0 113A,BBC0 +113A,BC30 113A,BC30 +113A,BCA0 113A,BCA0 +113A,BD10 113A,BD10 +113A,BD80 113A,BD80 +113A,BDF0 113A,BDF0 +113A,BE60 113A,BE60 +113A,BED0 113A,BED0 +113A,BF40 113A,BF40 +113A,BFB0 113A,BFB0 +113A,C020 113A,C020 +113A,C090 113A,C090 +113A,C100 113A,C100 +113A,C170 113A,C170 +113A,C1E0 113A,C1E0 +113A,C250 113A,C250 +113A,C2C0 113A,C2C0 +113A,C330 113A,C330 +113A,C3A0 113A,C3A0 +113A,C410 113A,C410 +113A,C480 113A,C480 +113A,C4F0 113A,C4F0 +113A,C560 113A,C560 +113A,C5D0 113A,C5D0 +113A,C640 113A,C640 +113A,C6B0 113A,C6B0 +113A,C720 113A,C720 +113A,C790 113A,C790 +113A,C800 113A,C800 +113A,C870 113A,C870 +113A,C8E0 113A,C8E0 +113A,C950 113A,C950 +113A,C9C0 113A,C9C0 +113A,CA30 113A,CA30 +113A,CAA0 113A,CAA0 +113A,CB10 113A,CB10 +113A,CB80 113A,CB80 +113A,CBF0 113A,CBF0 +113A,CC60 113A,CC60 +113A,CCD0 113A,CCD0 +113A,CD40 113A,CD40 +113A,CDB0 113A,CDB0 +113A,CE20 113A,CE20 +113A,CE90 113A,CE90 +113A,CF00 113A,CF00 +113A,CF70 113A,CF70 +113A,CFE0 113A,CFE0 +113A,D050 113A,D050 +113A,D0C0 113A,D0C0 +113A,D130 113A,D130 +113A,D1A0 113A,D1A0 +113A,D210 113A,D210 +113A,D280 113A,D280 +113A,D2F0 113A,D2F0 +113A,D360 113A,D360 +113A,D3D0 113A,D3D0 +113A,D440 113A,D440 +113A,D4B0 113A,D4B0 +113A,D520 113A,D520 +113A,D590 113A,D590 +113A,D600 113A,D600 +113A,D670 113A,D670 +113A,D6E0 113A,D6E0 +113A,D750 113A,D750 +113B,AC00 113B,AC00 +113B,AC70 113B,AC70 +113B,ACE0 113B,ACE0 +113B,AD50 113B,AD50 +113B,ADC0 113B,ADC0 +113B,AE30 113B,AE30 +113B,AEA0 113B,AEA0 +113B,AF10 113B,AF10 +113B,AF80 113B,AF80 +113B,AFF0 113B,AFF0 +113B,B060 113B,B060 +113B,B0D0 113B,B0D0 +113B,B140 113B,B140 +113B,B1B0 113B,B1B0 +113B,B220 113B,B220 +113B,B290 113B,B290 +113B,B300 113B,B300 +113B,B370 113B,B370 +113B,B3E0 113B,B3E0 +113B,B450 113B,B450 +113B,B4C0 113B,B4C0 +113B,B530 113B,B530 +113B,B5A0 113B,B5A0 +113B,B610 113B,B610 +113B,B680 113B,B680 +113B,B6F0 113B,B6F0 +113B,B760 113B,B760 +113B,B7D0 113B,B7D0 +113B,B840 113B,B840 +113B,B8B0 113B,B8B0 +113B,B920 113B,B920 +113B,B990 113B,B990 +113B,BA00 113B,BA00 +113B,BA70 113B,BA70 +113B,BAE0 113B,BAE0 +113B,BB50 113B,BB50 +113B,BBC0 113B,BBC0 +113B,BC30 113B,BC30 +113B,BCA0 113B,BCA0 +113B,BD10 113B,BD10 +113B,BD80 113B,BD80 +113B,BDF0 113B,BDF0 +113B,BE60 113B,BE60 +113B,BED0 113B,BED0 +113B,BF40 113B,BF40 +113B,BFB0 113B,BFB0 +113B,C020 113B,C020 +113B,C090 113B,C090 +113B,C100 113B,C100 +113B,C170 113B,C170 +113B,C1E0 113B,C1E0 +113B,C250 113B,C250 +113B,C2C0 113B,C2C0 +113B,C330 113B,C330 +113B,C3A0 113B,C3A0 +113B,C410 113B,C410 +113B,C480 113B,C480 +113B,C4F0 113B,C4F0 +113B,C560 113B,C560 +113B,C5D0 113B,C5D0 +113B,C640 113B,C640 +113B,C6B0 113B,C6B0 +113B,C720 113B,C720 +113B,C790 113B,C790 +113B,C800 113B,C800 +113B,C870 113B,C870 +113B,C8E0 113B,C8E0 +113B,C950 113B,C950 +113B,C9C0 113B,C9C0 +113B,CA30 113B,CA30 +113B,CAA0 113B,CAA0 +113B,CB10 113B,CB10 +113B,CB80 113B,CB80 +113B,CBF0 113B,CBF0 +113B,CC60 113B,CC60 +113B,CCD0 113B,CCD0 +113B,CD40 113B,CD40 +113B,CDB0 113B,CDB0 +113B,CE20 113B,CE20 +113B,CE90 113B,CE90 +113B,CF00 113B,CF00 +113B,CF70 113B,CF70 +113B,CFE0 113B,CFE0 +113B,D050 113B,D050 +113B,D0C0 113B,D0C0 +113B,D130 113B,D130 +113B,D1A0 113B,D1A0 +113B,D210 113B,D210 +113B,D280 113B,D280 +113B,D2F0 113B,D2F0 +113B,D360 113B,D360 +113B,D3D0 113B,D3D0 +113B,D440 113B,D440 +113B,D4B0 113B,D4B0 +113B,D520 113B,D520 +113B,D590 113B,D590 +113B,D600 113B,D600 +113B,D670 113B,D670 +113B,D6E0 113B,D6E0 +113B,D750 113B,D750 +113C,AC00 113C,AC00 +113C,AC70 113C,AC70 +113C,ACE0 113C,ACE0 +113C,AD50 113C,AD50 +113C,ADC0 113C,ADC0 +113C,AE30 113C,AE30 +113C,AEA0 113C,AEA0 +113C,AF10 113C,AF10 +113C,AF80 113C,AF80 +113C,AFF0 113C,AFF0 +113C,B060 113C,B060 +113C,B0D0 113C,B0D0 +113C,B140 113C,B140 +113C,B1B0 113C,B1B0 +113C,B220 113C,B220 +113C,B290 113C,B290 +113C,B300 113C,B300 +113C,B370 113C,B370 +113C,B3E0 113C,B3E0 +113C,B450 113C,B450 +113C,B4C0 113C,B4C0 +113C,B530 113C,B530 +113C,B5A0 113C,B5A0 +113C,B610 113C,B610 +113C,B680 113C,B680 +113C,B6F0 113C,B6F0 +113C,B760 113C,B760 +113C,B7D0 113C,B7D0 +113C,B840 113C,B840 +113C,B8B0 113C,B8B0 +113C,B920 113C,B920 +113C,B990 113C,B990 +113C,BA00 113C,BA00 +113C,BA70 113C,BA70 +113C,BAE0 113C,BAE0 +113C,BB50 113C,BB50 +113C,BBC0 113C,BBC0 +113C,BC30 113C,BC30 +113C,BCA0 113C,BCA0 +113C,BD10 113C,BD10 +113C,BD80 113C,BD80 +113C,BDF0 113C,BDF0 +113C,BE60 113C,BE60 +113C,BED0 113C,BED0 +113C,BF40 113C,BF40 +113C,BFB0 113C,BFB0 +113C,C020 113C,C020 +113C,C090 113C,C090 +113C,C100 113C,C100 +113C,C170 113C,C170 +113C,C1E0 113C,C1E0 +113C,C250 113C,C250 +113C,C2C0 113C,C2C0 +113C,C330 113C,C330 +113C,C3A0 113C,C3A0 +113C,C410 113C,C410 +113C,C480 113C,C480 +113C,C4F0 113C,C4F0 +113C,C560 113C,C560 +113C,C5D0 113C,C5D0 +113C,C640 113C,C640 +113C,C6B0 113C,C6B0 +113C,C720 113C,C720 +113C,C790 113C,C790 +113C,C800 113C,C800 +113C,C870 113C,C870 +113C,C8E0 113C,C8E0 +113C,C950 113C,C950 +113C,C9C0 113C,C9C0 +113C,CA30 113C,CA30 +113C,CAA0 113C,CAA0 +113C,CB10 113C,CB10 +113C,CB80 113C,CB80 +113C,CBF0 113C,CBF0 +113C,CC60 113C,CC60 +113C,CCD0 113C,CCD0 +113C,CD40 113C,CD40 +113C,CDB0 113C,CDB0 +113C,CE20 113C,CE20 +113C,CE90 113C,CE90 +113C,CF00 113C,CF00 +113C,CF70 113C,CF70 +113C,CFE0 113C,CFE0 +113C,D050 113C,D050 +113C,D0C0 113C,D0C0 +113C,D130 113C,D130 +113C,D1A0 113C,D1A0 +113C,D210 113C,D210 +113C,D280 113C,D280 +113C,D2F0 113C,D2F0 +113C,D360 113C,D360 +113C,D3D0 113C,D3D0 +113C,D440 113C,D440 +113C,D4B0 113C,D4B0 +113C,D520 113C,D520 +113C,D590 113C,D590 +113C,D600 113C,D600 +113C,D670 113C,D670 +113C,D6E0 113C,D6E0 +113C,D750 113C,D750 +113D,AC00 113D,AC00 +113D,AC70 113D,AC70 +113D,ACE0 113D,ACE0 +113D,AD50 113D,AD50 +113D,ADC0 113D,ADC0 +113D,AE30 113D,AE30 +113D,AEA0 113D,AEA0 +113D,AF10 113D,AF10 +113D,AF80 113D,AF80 +113D,AFF0 113D,AFF0 +113D,B060 113D,B060 +113D,B0D0 113D,B0D0 +113D,B140 113D,B140 +113D,B1B0 113D,B1B0 +113D,B220 113D,B220 +113D,B290 113D,B290 +113D,B300 113D,B300 +113D,B370 113D,B370 +113D,B3E0 113D,B3E0 +113D,B450 113D,B450 +113D,B4C0 113D,B4C0 +113D,B530 113D,B530 +113D,B5A0 113D,B5A0 +113D,B610 113D,B610 +113D,B680 113D,B680 +113D,B6F0 113D,B6F0 +113D,B760 113D,B760 +113D,B7D0 113D,B7D0 +113D,B840 113D,B840 +113D,B8B0 113D,B8B0 +113D,B920 113D,B920 +113D,B990 113D,B990 +113D,BA00 113D,BA00 +113D,BA70 113D,BA70 +113D,BAE0 113D,BAE0 +113D,BB50 113D,BB50 +113D,BBC0 113D,BBC0 +113D,BC30 113D,BC30 +113D,BCA0 113D,BCA0 +113D,BD10 113D,BD10 +113D,BD80 113D,BD80 +113D,BDF0 113D,BDF0 +113D,BE60 113D,BE60 +113D,BED0 113D,BED0 +113D,BF40 113D,BF40 +113D,BFB0 113D,BFB0 +113D,C020 113D,C020 +113D,C090 113D,C090 +113D,C100 113D,C100 +113D,C170 113D,C170 +113D,C1E0 113D,C1E0 +113D,C250 113D,C250 +113D,C2C0 113D,C2C0 +113D,C330 113D,C330 +113D,C3A0 113D,C3A0 +113D,C410 113D,C410 +113D,C480 113D,C480 +113D,C4F0 113D,C4F0 +113D,C560 113D,C560 +113D,C5D0 113D,C5D0 +113D,C640 113D,C640 +113D,C6B0 113D,C6B0 +113D,C720 113D,C720 +113D,C790 113D,C790 +113D,C800 113D,C800 +113D,C870 113D,C870 +113D,C8E0 113D,C8E0 +113D,C950 113D,C950 +113D,C9C0 113D,C9C0 +113D,CA30 113D,CA30 +113D,CAA0 113D,CAA0 +113D,CB10 113D,CB10 +113D,CB80 113D,CB80 +113D,CBF0 113D,CBF0 +113D,CC60 113D,CC60 +113D,CCD0 113D,CCD0 +113D,CD40 113D,CD40 +113D,CDB0 113D,CDB0 +113D,CE20 113D,CE20 +113D,CE90 113D,CE90 +113D,CF00 113D,CF00 +113D,CF70 113D,CF70 +113D,CFE0 113D,CFE0 +113D,D050 113D,D050 +113D,D0C0 113D,D0C0 +113D,D130 113D,D130 +113D,D1A0 113D,D1A0 +113D,D210 113D,D210 +113D,D280 113D,D280 +113D,D2F0 113D,D2F0 +113D,D360 113D,D360 +113D,D3D0 113D,D3D0 +113D,D440 113D,D440 +113D,D4B0 113D,D4B0 +113D,D520 113D,D520 +113D,D590 113D,D590 +113D,D600 113D,D600 +113D,D670 113D,D670 +113D,D6E0 113D,D6E0 +113D,D750 113D,D750 +113E,AC00 113E,AC00 +113E,AC70 113E,AC70 +113E,ACE0 113E,ACE0 +113E,AD50 113E,AD50 +113E,ADC0 113E,ADC0 +113E,AE30 113E,AE30 +113E,AEA0 113E,AEA0 +113E,AF10 113E,AF10 +113E,AF80 113E,AF80 +113E,AFF0 113E,AFF0 +113E,B060 113E,B060 +113E,B0D0 113E,B0D0 +113E,B140 113E,B140 +113E,B1B0 113E,B1B0 +113E,B220 113E,B220 +113E,B290 113E,B290 +113E,B300 113E,B300 +113E,B370 113E,B370 +113E,B3E0 113E,B3E0 +113E,B450 113E,B450 +113E,B4C0 113E,B4C0 +113E,B530 113E,B530 +113E,B5A0 113E,B5A0 +113E,B610 113E,B610 +113E,B680 113E,B680 +113E,B6F0 113E,B6F0 +113E,B760 113E,B760 +113E,B7D0 113E,B7D0 +113E,B840 113E,B840 +113E,B8B0 113E,B8B0 +113E,B920 113E,B920 +113E,B990 113E,B990 +113E,BA00 113E,BA00 +113E,BA70 113E,BA70 +113E,BAE0 113E,BAE0 +113E,BB50 113E,BB50 +113E,BBC0 113E,BBC0 +113E,BC30 113E,BC30 +113E,BCA0 113E,BCA0 +113E,BD10 113E,BD10 +113E,BD80 113E,BD80 +113E,BDF0 113E,BDF0 +113E,BE60 113E,BE60 +113E,BED0 113E,BED0 +113E,BF40 113E,BF40 +113E,BFB0 113E,BFB0 +113E,C020 113E,C020 +113E,C090 113E,C090 +113E,C100 113E,C100 +113E,C170 113E,C170 +113E,C1E0 113E,C1E0 +113E,C250 113E,C250 +113E,C2C0 113E,C2C0 +113E,C330 113E,C330 +113E,C3A0 113E,C3A0 +113E,C410 113E,C410 +113E,C480 113E,C480 +113E,C4F0 113E,C4F0 +113E,C560 113E,C560 +113E,C5D0 113E,C5D0 +113E,C640 113E,C640 +113E,C6B0 113E,C6B0 +113E,C720 113E,C720 +113E,C790 113E,C790 +113E,C800 113E,C800 +113E,C870 113E,C870 +113E,C8E0 113E,C8E0 +113E,C950 113E,C950 +113E,C9C0 113E,C9C0 +113E,CA30 113E,CA30 +113E,CAA0 113E,CAA0 +113E,CB10 113E,CB10 +113E,CB80 113E,CB80 +113E,CBF0 113E,CBF0 +113E,CC60 113E,CC60 +113E,CCD0 113E,CCD0 +113E,CD40 113E,CD40 +113E,CDB0 113E,CDB0 +113E,CE20 113E,CE20 +113E,CE90 113E,CE90 +113E,CF00 113E,CF00 +113E,CF70 113E,CF70 +113E,CFE0 113E,CFE0 +113E,D050 113E,D050 +113E,D0C0 113E,D0C0 +113E,D130 113E,D130 +113E,D1A0 113E,D1A0 +113E,D210 113E,D210 +113E,D280 113E,D280 +113E,D2F0 113E,D2F0 +113E,D360 113E,D360 +113E,D3D0 113E,D3D0 +113E,D440 113E,D440 +113E,D4B0 113E,D4B0 +113E,D520 113E,D520 +113E,D590 113E,D590 +113E,D600 113E,D600 +113E,D670 113E,D670 +113E,D6E0 113E,D6E0 +113E,D750 113E,D750 +113F,AC00 113F,AC00 +113F,AC70 113F,AC70 +113F,ACE0 113F,ACE0 +113F,AD50 113F,AD50 +113F,ADC0 113F,ADC0 +113F,AE30 113F,AE30 +113F,AEA0 113F,AEA0 +113F,AF10 113F,AF10 +113F,AF80 113F,AF80 +113F,AFF0 113F,AFF0 +113F,B060 113F,B060 +113F,B0D0 113F,B0D0 +113F,B140 113F,B140 +113F,B1B0 113F,B1B0 +113F,B220 113F,B220 +113F,B290 113F,B290 +113F,B300 113F,B300 +113F,B370 113F,B370 +113F,B3E0 113F,B3E0 +113F,B450 113F,B450 +113F,B4C0 113F,B4C0 +113F,B530 113F,B530 +113F,B5A0 113F,B5A0 +113F,B610 113F,B610 +113F,B680 113F,B680 +113F,B6F0 113F,B6F0 +113F,B760 113F,B760 +113F,B7D0 113F,B7D0 +113F,B840 113F,B840 +113F,B8B0 113F,B8B0 +113F,B920 113F,B920 +113F,B990 113F,B990 +113F,BA00 113F,BA00 +113F,BA70 113F,BA70 +113F,BAE0 113F,BAE0 +113F,BB50 113F,BB50 +113F,BBC0 113F,BBC0 +113F,BC30 113F,BC30 +113F,BCA0 113F,BCA0 +113F,BD10 113F,BD10 +113F,BD80 113F,BD80 +113F,BDF0 113F,BDF0 +113F,BE60 113F,BE60 +113F,BED0 113F,BED0 +113F,BF40 113F,BF40 +113F,BFB0 113F,BFB0 +113F,C020 113F,C020 +113F,C090 113F,C090 +113F,C100 113F,C100 +113F,C170 113F,C170 +113F,C1E0 113F,C1E0 +113F,C250 113F,C250 +113F,C2C0 113F,C2C0 +113F,C330 113F,C330 +113F,C3A0 113F,C3A0 +113F,C410 113F,C410 +113F,C480 113F,C480 +113F,C4F0 113F,C4F0 +113F,C560 113F,C560 +113F,C5D0 113F,C5D0 +113F,C640 113F,C640 +113F,C6B0 113F,C6B0 +113F,C720 113F,C720 +113F,C790 113F,C790 +113F,C800 113F,C800 +113F,C870 113F,C870 +113F,C8E0 113F,C8E0 +113F,C950 113F,C950 +113F,C9C0 113F,C9C0 +113F,CA30 113F,CA30 +113F,CAA0 113F,CAA0 +113F,CB10 113F,CB10 +113F,CB80 113F,CB80 +113F,CBF0 113F,CBF0 +113F,CC60 113F,CC60 +113F,CCD0 113F,CCD0 +113F,CD40 113F,CD40 +113F,CDB0 113F,CDB0 +113F,CE20 113F,CE20 +113F,CE90 113F,CE90 +113F,CF00 113F,CF00 +113F,CF70 113F,CF70 +113F,CFE0 113F,CFE0 +113F,D050 113F,D050 +113F,D0C0 113F,D0C0 +113F,D130 113F,D130 +113F,D1A0 113F,D1A0 +113F,D210 113F,D210 +113F,D280 113F,D280 +113F,D2F0 113F,D2F0 +113F,D360 113F,D360 +113F,D3D0 113F,D3D0 +113F,D440 113F,D440 +113F,D4B0 113F,D4B0 +113F,D520 113F,D520 +113F,D590 113F,D590 +113F,D600 113F,D600 +113F,D670 113F,D670 +113F,D6E0 113F,D6E0 +113F,D750 113F,D750 +1140,AC00 1140,AC00 +1140,AC70 1140,AC70 +1140,ACE0 1140,ACE0 +1140,AD50 1140,AD50 +1140,ADC0 1140,ADC0 +1140,AE30 1140,AE30 +1140,AEA0 1140,AEA0 +1140,AF10 1140,AF10 +1140,AF80 1140,AF80 +1140,AFF0 1140,AFF0 +1140,B060 1140,B060 +1140,B0D0 1140,B0D0 +1140,B140 1140,B140 +1140,B1B0 1140,B1B0 +1140,B220 1140,B220 +1140,B290 1140,B290 +1140,B300 1140,B300 +1140,B370 1140,B370 +1140,B3E0 1140,B3E0 +1140,B450 1140,B450 +1140,B4C0 1140,B4C0 +1140,B530 1140,B530 +1140,B5A0 1140,B5A0 +1140,B610 1140,B610 +1140,B680 1140,B680 +1140,B6F0 1140,B6F0 +1140,B760 1140,B760 +1140,B7D0 1140,B7D0 +1140,B840 1140,B840 +1140,B8B0 1140,B8B0 +1140,B920 1140,B920 +1140,B990 1140,B990 +1140,BA00 1140,BA00 +1140,BA70 1140,BA70 +1140,BAE0 1140,BAE0 +1140,BB50 1140,BB50 +1140,BBC0 1140,BBC0 +1140,BC30 1140,BC30 +1140,BCA0 1140,BCA0 +1140,BD10 1140,BD10 +1140,BD80 1140,BD80 +1140,BDF0 1140,BDF0 +1140,BE60 1140,BE60 +1140,BED0 1140,BED0 +1140,BF40 1140,BF40 +1140,BFB0 1140,BFB0 +1140,C020 1140,C020 +1140,C090 1140,C090 +1140,C100 1140,C100 +1140,C170 1140,C170 +1140,C1E0 1140,C1E0 +1140,C250 1140,C250 +1140,C2C0 1140,C2C0 +1140,C330 1140,C330 +1140,C3A0 1140,C3A0 +1140,C410 1140,C410 +1140,C480 1140,C480 +1140,C4F0 1140,C4F0 +1140,C560 1140,C560 +1140,C5D0 1140,C5D0 +1140,C640 1140,C640 +1140,C6B0 1140,C6B0 +1140,C720 1140,C720 +1140,C790 1140,C790 +1140,C800 1140,C800 +1140,C870 1140,C870 +1140,C8E0 1140,C8E0 +1140,C950 1140,C950 +1140,C9C0 1140,C9C0 +1140,CA30 1140,CA30 +1140,CAA0 1140,CAA0 +1140,CB10 1140,CB10 +1140,CB80 1140,CB80 +1140,CBF0 1140,CBF0 +1140,CC60 1140,CC60 +1140,CCD0 1140,CCD0 +1140,CD40 1140,CD40 +1140,CDB0 1140,CDB0 +1140,CE20 1140,CE20 +1140,CE90 1140,CE90 +1140,CF00 1140,CF00 +1140,CF70 1140,CF70 +1140,CFE0 1140,CFE0 +1140,D050 1140,D050 +1140,D0C0 1140,D0C0 +1140,D130 1140,D130 +1140,D1A0 1140,D1A0 +1140,D210 1140,D210 +1140,D280 1140,D280 +1140,D2F0 1140,D2F0 +1140,D360 1140,D360 +1140,D3D0 1140,D3D0 +1140,D440 1140,D440 +1140,D4B0 1140,D4B0 +1140,D520 1140,D520 +1140,D590 1140,D590 +1140,D600 1140,D600 +1140,D670 1140,D670 +1140,D6E0 1140,D6E0 +1140,D750 1140,D750 +1141,AC00 1141,AC00 +1141,AC70 1141,AC70 +1141,ACE0 1141,ACE0 +1141,AD50 1141,AD50 +1141,ADC0 1141,ADC0 +1141,AE30 1141,AE30 +1141,AEA0 1141,AEA0 +1141,AF10 1141,AF10 +1141,AF80 1141,AF80 +1141,AFF0 1141,AFF0 +1141,B060 1141,B060 +1141,B0D0 1141,B0D0 +1141,B140 1141,B140 +1141,B1B0 1141,B1B0 +1141,B220 1141,B220 +1141,B290 1141,B290 +1141,B300 1141,B300 +1141,B370 1141,B370 +1141,B3E0 1141,B3E0 +1141,B450 1141,B450 +1141,B4C0 1141,B4C0 +1141,B530 1141,B530 +1141,B5A0 1141,B5A0 +1141,B610 1141,B610 +1141,B680 1141,B680 +1141,B6F0 1141,B6F0 +1141,B760 1141,B760 +1141,B7D0 1141,B7D0 +1141,B840 1141,B840 +1141,B8B0 1141,B8B0 +1141,B920 1141,B920 +1141,B990 1141,B990 +1141,BA00 1141,BA00 +1141,BA70 1141,BA70 +1141,BAE0 1141,BAE0 +1141,BB50 1141,BB50 +1141,BBC0 1141,BBC0 +1141,BC30 1141,BC30 +1141,BCA0 1141,BCA0 +1141,BD10 1141,BD10 +1141,BD80 1141,BD80 +1141,BDF0 1141,BDF0 +1141,BE60 1141,BE60 +1141,BED0 1141,BED0 +1141,BF40 1141,BF40 +1141,BFB0 1141,BFB0 +1141,C020 1141,C020 +1141,C090 1141,C090 +1141,C100 1141,C100 +1141,C170 1141,C170 +1141,C1E0 1141,C1E0 +1141,C250 1141,C250 +1141,C2C0 1141,C2C0 +1141,C330 1141,C330 +1141,C3A0 1141,C3A0 +1141,C410 1141,C410 +1141,C480 1141,C480 +1141,C4F0 1141,C4F0 +1141,C560 1141,C560 +1141,C5D0 1141,C5D0 +1141,C640 1141,C640 +1141,C6B0 1141,C6B0 +1141,C720 1141,C720 +1141,C790 1141,C790 +1141,C800 1141,C800 +1141,C870 1141,C870 +1141,C8E0 1141,C8E0 +1141,C950 1141,C950 +1141,C9C0 1141,C9C0 +1141,CA30 1141,CA30 +1141,CAA0 1141,CAA0 +1141,CB10 1141,CB10 +1141,CB80 1141,CB80 +1141,CBF0 1141,CBF0 +1141,CC60 1141,CC60 +1141,CCD0 1141,CCD0 +1141,CD40 1141,CD40 +1141,CDB0 1141,CDB0 +1141,CE20 1141,CE20 +1141,CE90 1141,CE90 +1141,CF00 1141,CF00 +1141,CF70 1141,CF70 +1141,CFE0 1141,CFE0 +1141,D050 1141,D050 +1141,D0C0 1141,D0C0 +1141,D130 1141,D130 +1141,D1A0 1141,D1A0 +1141,D210 1141,D210 +1141,D280 1141,D280 +1141,D2F0 1141,D2F0 +1141,D360 1141,D360 +1141,D3D0 1141,D3D0 +1141,D440 1141,D440 +1141,D4B0 1141,D4B0 +1141,D520 1141,D520 +1141,D590 1141,D590 +1141,D600 1141,D600 +1141,D670 1141,D670 +1141,D6E0 1141,D6E0 +1141,D750 1141,D750 +1142,AC00 1142,AC00 +1142,AC70 1142,AC70 +1142,ACE0 1142,ACE0 +1142,AD50 1142,AD50 +1142,ADC0 1142,ADC0 +1142,AE30 1142,AE30 +1142,AEA0 1142,AEA0 +1142,AF10 1142,AF10 +1142,AF80 1142,AF80 +1142,AFF0 1142,AFF0 +1142,B060 1142,B060 +1142,B0D0 1142,B0D0 +1142,B140 1142,B140 +1142,B1B0 1142,B1B0 +1142,B220 1142,B220 +1142,B290 1142,B290 +1142,B300 1142,B300 +1142,B370 1142,B370 +1142,B3E0 1142,B3E0 +1142,B450 1142,B450 +1142,B4C0 1142,B4C0 +1142,B530 1142,B530 +1142,B5A0 1142,B5A0 +1142,B610 1142,B610 +1142,B680 1142,B680 +1142,B6F0 1142,B6F0 +1142,B760 1142,B760 +1142,B7D0 1142,B7D0 +1142,B840 1142,B840 +1142,B8B0 1142,B8B0 +1142,B920 1142,B920 +1142,B990 1142,B990 +1142,BA00 1142,BA00 +1142,BA70 1142,BA70 +1142,BAE0 1142,BAE0 +1142,BB50 1142,BB50 +1142,BBC0 1142,BBC0 +1142,BC30 1142,BC30 +1142,BCA0 1142,BCA0 +1142,BD10 1142,BD10 +1142,BD80 1142,BD80 +1142,BDF0 1142,BDF0 +1142,BE60 1142,BE60 +1142,BED0 1142,BED0 +1142,BF40 1142,BF40 +1142,BFB0 1142,BFB0 +1142,C020 1142,C020 +1142,C090 1142,C090 +1142,C100 1142,C100 +1142,C170 1142,C170 +1142,C1E0 1142,C1E0 +1142,C250 1142,C250 +1142,C2C0 1142,C2C0 +1142,C330 1142,C330 +1142,C3A0 1142,C3A0 +1142,C410 1142,C410 +1142,C480 1142,C480 +1142,C4F0 1142,C4F0 +1142,C560 1142,C560 +1142,C5D0 1142,C5D0 +1142,C640 1142,C640 +1142,C6B0 1142,C6B0 +1142,C720 1142,C720 +1142,C790 1142,C790 +1142,C800 1142,C800 +1142,C870 1142,C870 +1142,C8E0 1142,C8E0 +1142,C950 1142,C950 +1142,C9C0 1142,C9C0 +1142,CA30 1142,CA30 +1142,CAA0 1142,CAA0 +1142,CB10 1142,CB10 +1142,CB80 1142,CB80 +1142,CBF0 1142,CBF0 +1142,CC60 1142,CC60 +1142,CCD0 1142,CCD0 +1142,CD40 1142,CD40 +1142,CDB0 1142,CDB0 +1142,CE20 1142,CE20 +1142,CE90 1142,CE90 +1142,CF00 1142,CF00 +1142,CF70 1142,CF70 +1142,CFE0 1142,CFE0 +1142,D050 1142,D050 +1142,D0C0 1142,D0C0 +1142,D130 1142,D130 +1142,D1A0 1142,D1A0 +1142,D210 1142,D210 +1142,D280 1142,D280 +1142,D2F0 1142,D2F0 +1142,D360 1142,D360 +1142,D3D0 1142,D3D0 +1142,D440 1142,D440 +1142,D4B0 1142,D4B0 +1142,D520 1142,D520 +1142,D590 1142,D590 +1142,D600 1142,D600 +1142,D670 1142,D670 +1142,D6E0 1142,D6E0 +1142,D750 1142,D750 +1143,AC00 1143,AC00 +1143,AC70 1143,AC70 +1143,ACE0 1143,ACE0 +1143,AD50 1143,AD50 +1143,ADC0 1143,ADC0 +1143,AE30 1143,AE30 +1143,AEA0 1143,AEA0 +1143,AF10 1143,AF10 +1143,AF80 1143,AF80 +1143,AFF0 1143,AFF0 +1143,B060 1143,B060 +1143,B0D0 1143,B0D0 +1143,B140 1143,B140 +1143,B1B0 1143,B1B0 +1143,B220 1143,B220 +1143,B290 1143,B290 +1143,B300 1143,B300 +1143,B370 1143,B370 +1143,B3E0 1143,B3E0 +1143,B450 1143,B450 +1143,B4C0 1143,B4C0 +1143,B530 1143,B530 +1143,B5A0 1143,B5A0 +1143,B610 1143,B610 +1143,B680 1143,B680 +1143,B6F0 1143,B6F0 +1143,B760 1143,B760 +1143,B7D0 1143,B7D0 +1143,B840 1143,B840 +1143,B8B0 1143,B8B0 +1143,B920 1143,B920 +1143,B990 1143,B990 +1143,BA00 1143,BA00 +1143,BA70 1143,BA70 +1143,BAE0 1143,BAE0 +1143,BB50 1143,BB50 +1143,BBC0 1143,BBC0 +1143,BC30 1143,BC30 +1143,BCA0 1143,BCA0 +1143,BD10 1143,BD10 +1143,BD80 1143,BD80 +1143,BDF0 1143,BDF0 +1143,BE60 1143,BE60 +1143,BED0 1143,BED0 +1143,BF40 1143,BF40 +1143,BFB0 1143,BFB0 +1143,C020 1143,C020 +1143,C090 1143,C090 +1143,C100 1143,C100 +1143,C170 1143,C170 +1143,C1E0 1143,C1E0 +1143,C250 1143,C250 +1143,C2C0 1143,C2C0 +1143,C330 1143,C330 +1143,C3A0 1143,C3A0 +1143,C410 1143,C410 +1143,C480 1143,C480 +1143,C4F0 1143,C4F0 +1143,C560 1143,C560 +1143,C5D0 1143,C5D0 +1143,C640 1143,C640 +1143,C6B0 1143,C6B0 +1143,C720 1143,C720 +1143,C790 1143,C790 +1143,C800 1143,C800 +1143,C870 1143,C870 +1143,C8E0 1143,C8E0 +1143,C950 1143,C950 +1143,C9C0 1143,C9C0 +1143,CA30 1143,CA30 +1143,CAA0 1143,CAA0 +1143,CB10 1143,CB10 +1143,CB80 1143,CB80 +1143,CBF0 1143,CBF0 +1143,CC60 1143,CC60 +1143,CCD0 1143,CCD0 +1143,CD40 1143,CD40 +1143,CDB0 1143,CDB0 +1143,CE20 1143,CE20 +1143,CE90 1143,CE90 +1143,CF00 1143,CF00 +1143,CF70 1143,CF70 +1143,CFE0 1143,CFE0 +1143,D050 1143,D050 +1143,D0C0 1143,D0C0 +1143,D130 1143,D130 +1143,D1A0 1143,D1A0 +1143,D210 1143,D210 +1143,D280 1143,D280 +1143,D2F0 1143,D2F0 +1143,D360 1143,D360 +1143,D3D0 1143,D3D0 +1143,D440 1143,D440 +1143,D4B0 1143,D4B0 +1143,D520 1143,D520 +1143,D590 1143,D590 +1143,D600 1143,D600 +1143,D670 1143,D670 +1143,D6E0 1143,D6E0 +1143,D750 1143,D750 +1144,AC00 1144,AC00 +1144,AC70 1144,AC70 +1144,ACE0 1144,ACE0 +1144,AD50 1144,AD50 +1144,ADC0 1144,ADC0 +1144,AE30 1144,AE30 +1144,AEA0 1144,AEA0 +1144,AF10 1144,AF10 +1144,AF80 1144,AF80 +1144,AFF0 1144,AFF0 +1144,B060 1144,B060 +1144,B0D0 1144,B0D0 +1144,B140 1144,B140 +1144,B1B0 1144,B1B0 +1144,B220 1144,B220 +1144,B290 1144,B290 +1144,B300 1144,B300 +1144,B370 1144,B370 +1144,B3E0 1144,B3E0 +1144,B450 1144,B450 +1144,B4C0 1144,B4C0 +1144,B530 1144,B530 +1144,B5A0 1144,B5A0 +1144,B610 1144,B610 +1144,B680 1144,B680 +1144,B6F0 1144,B6F0 +1144,B760 1144,B760 +1144,B7D0 1144,B7D0 +1144,B840 1144,B840 +1144,B8B0 1144,B8B0 +1144,B920 1144,B920 +1144,B990 1144,B990 +1144,BA00 1144,BA00 +1144,BA70 1144,BA70 +1144,BAE0 1144,BAE0 +1144,BB50 1144,BB50 +1144,BBC0 1144,BBC0 +1144,BC30 1144,BC30 +1144,BCA0 1144,BCA0 +1144,BD10 1144,BD10 +1144,BD80 1144,BD80 +1144,BDF0 1144,BDF0 +1144,BE60 1144,BE60 +1144,BED0 1144,BED0 +1144,BF40 1144,BF40 +1144,BFB0 1144,BFB0 +1144,C020 1144,C020 +1144,C090 1144,C090 +1144,C100 1144,C100 +1144,C170 1144,C170 +1144,C1E0 1144,C1E0 +1144,C250 1144,C250 +1144,C2C0 1144,C2C0 +1144,C330 1144,C330 +1144,C3A0 1144,C3A0 +1144,C410 1144,C410 +1144,C480 1144,C480 +1144,C4F0 1144,C4F0 +1144,C560 1144,C560 +1144,C5D0 1144,C5D0 +1144,C640 1144,C640 +1144,C6B0 1144,C6B0 +1144,C720 1144,C720 +1144,C790 1144,C790 +1144,C800 1144,C800 +1144,C870 1144,C870 +1144,C8E0 1144,C8E0 +1144,C950 1144,C950 +1144,C9C0 1144,C9C0 +1144,CA30 1144,CA30 +1144,CAA0 1144,CAA0 +1144,CB10 1144,CB10 +1144,CB80 1144,CB80 +1144,CBF0 1144,CBF0 +1144,CC60 1144,CC60 +1144,CCD0 1144,CCD0 +1144,CD40 1144,CD40 +1144,CDB0 1144,CDB0 +1144,CE20 1144,CE20 +1144,CE90 1144,CE90 +1144,CF00 1144,CF00 +1144,CF70 1144,CF70 +1144,CFE0 1144,CFE0 +1144,D050 1144,D050 +1144,D0C0 1144,D0C0 +1144,D130 1144,D130 +1144,D1A0 1144,D1A0 +1144,D210 1144,D210 +1144,D280 1144,D280 +1144,D2F0 1144,D2F0 +1144,D360 1144,D360 +1144,D3D0 1144,D3D0 +1144,D440 1144,D440 +1144,D4B0 1144,D4B0 +1144,D520 1144,D520 +1144,D590 1144,D590 +1144,D600 1144,D600 +1144,D670 1144,D670 +1144,D6E0 1144,D6E0 +1144,D750 1144,D750 +1145,AC00 1145,AC00 +1145,AC70 1145,AC70 +1145,ACE0 1145,ACE0 +1145,AD50 1145,AD50 +1145,ADC0 1145,ADC0 +1145,AE30 1145,AE30 +1145,AEA0 1145,AEA0 +1145,AF10 1145,AF10 +1145,AF80 1145,AF80 +1145,AFF0 1145,AFF0 +1145,B060 1145,B060 +1145,B0D0 1145,B0D0 +1145,B140 1145,B140 +1145,B1B0 1145,B1B0 +1145,B220 1145,B220 +1145,B290 1145,B290 +1145,B300 1145,B300 +1145,B370 1145,B370 +1145,B3E0 1145,B3E0 +1145,B450 1145,B450 +1145,B4C0 1145,B4C0 +1145,B530 1145,B530 +1145,B5A0 1145,B5A0 +1145,B610 1145,B610 +1145,B680 1145,B680 +1145,B6F0 1145,B6F0 +1145,B760 1145,B760 +1145,B7D0 1145,B7D0 +1145,B840 1145,B840 +1145,B8B0 1145,B8B0 +1145,B920 1145,B920 +1145,B990 1145,B990 +1145,BA00 1145,BA00 +1145,BA70 1145,BA70 +1145,BAE0 1145,BAE0 +1145,BB50 1145,BB50 +1145,BBC0 1145,BBC0 +1145,BC30 1145,BC30 +1145,BCA0 1145,BCA0 +1145,BD10 1145,BD10 +1145,BD80 1145,BD80 +1145,BDF0 1145,BDF0 +1145,BE60 1145,BE60 +1145,BED0 1145,BED0 +1145,BF40 1145,BF40 +1145,BFB0 1145,BFB0 +1145,C020 1145,C020 +1145,C090 1145,C090 +1145,C100 1145,C100 +1145,C170 1145,C170 +1145,C1E0 1145,C1E0 +1145,C250 1145,C250 +1145,C2C0 1145,C2C0 +1145,C330 1145,C330 +1145,C3A0 1145,C3A0 +1145,C410 1145,C410 +1145,C480 1145,C480 +1145,C4F0 1145,C4F0 +1145,C560 1145,C560 +1145,C5D0 1145,C5D0 +1145,C640 1145,C640 +1145,C6B0 1145,C6B0 +1145,C720 1145,C720 +1145,C790 1145,C790 +1145,C800 1145,C800 +1145,C870 1145,C870 +1145,C8E0 1145,C8E0 +1145,C950 1145,C950 +1145,C9C0 1145,C9C0 +1145,CA30 1145,CA30 +1145,CAA0 1145,CAA0 +1145,CB10 1145,CB10 +1145,CB80 1145,CB80 +1145,CBF0 1145,CBF0 +1145,CC60 1145,CC60 +1145,CCD0 1145,CCD0 +1145,CD40 1145,CD40 +1145,CDB0 1145,CDB0 +1145,CE20 1145,CE20 +1145,CE90 1145,CE90 +1145,CF00 1145,CF00 +1145,CF70 1145,CF70 +1145,CFE0 1145,CFE0 +1145,D050 1145,D050 +1145,D0C0 1145,D0C0 +1145,D130 1145,D130 +1145,D1A0 1145,D1A0 +1145,D210 1145,D210 +1145,D280 1145,D280 +1145,D2F0 1145,D2F0 +1145,D360 1145,D360 +1145,D3D0 1145,D3D0 +1145,D440 1145,D440 +1145,D4B0 1145,D4B0 +1145,D520 1145,D520 +1145,D590 1145,D590 +1145,D600 1145,D600 +1145,D670 1145,D670 +1145,D6E0 1145,D6E0 +1145,D750 1145,D750 +1146,AC00 1146,AC00 +1146,AC70 1146,AC70 +1146,ACE0 1146,ACE0 +1146,AD50 1146,AD50 +1146,ADC0 1146,ADC0 +1146,AE30 1146,AE30 +1146,AEA0 1146,AEA0 +1146,AF10 1146,AF10 +1146,AF80 1146,AF80 +1146,AFF0 1146,AFF0 +1146,B060 1146,B060 +1146,B0D0 1146,B0D0 +1146,B140 1146,B140 +1146,B1B0 1146,B1B0 +1146,B220 1146,B220 +1146,B290 1146,B290 +1146,B300 1146,B300 +1146,B370 1146,B370 +1146,B3E0 1146,B3E0 +1146,B450 1146,B450 +1146,B4C0 1146,B4C0 +1146,B530 1146,B530 +1146,B5A0 1146,B5A0 +1146,B610 1146,B610 +1146,B680 1146,B680 +1146,B6F0 1146,B6F0 +1146,B760 1146,B760 +1146,B7D0 1146,B7D0 +1146,B840 1146,B840 +1146,B8B0 1146,B8B0 +1146,B920 1146,B920 +1146,B990 1146,B990 +1146,BA00 1146,BA00 +1146,BA70 1146,BA70 +1146,BAE0 1146,BAE0 +1146,BB50 1146,BB50 +1146,BBC0 1146,BBC0 +1146,BC30 1146,BC30 +1146,BCA0 1146,BCA0 +1146,BD10 1146,BD10 +1146,BD80 1146,BD80 +1146,BDF0 1146,BDF0 +1146,BE60 1146,BE60 +1146,BED0 1146,BED0 +1146,BF40 1146,BF40 +1146,BFB0 1146,BFB0 +1146,C020 1146,C020 +1146,C090 1146,C090 +1146,C100 1146,C100 +1146,C170 1146,C170 +1146,C1E0 1146,C1E0 +1146,C250 1146,C250 +1146,C2C0 1146,C2C0 +1146,C330 1146,C330 +1146,C3A0 1146,C3A0 +1146,C410 1146,C410 +1146,C480 1146,C480 +1146,C4F0 1146,C4F0 +1146,C560 1146,C560 +1146,C5D0 1146,C5D0 +1146,C640 1146,C640 +1146,C6B0 1146,C6B0 +1146,C720 1146,C720 +1146,C790 1146,C790 +1146,C800 1146,C800 +1146,C870 1146,C870 +1146,C8E0 1146,C8E0 +1146,C950 1146,C950 +1146,C9C0 1146,C9C0 +1146,CA30 1146,CA30 +1146,CAA0 1146,CAA0 +1146,CB10 1146,CB10 +1146,CB80 1146,CB80 +1146,CBF0 1146,CBF0 +1146,CC60 1146,CC60 +1146,CCD0 1146,CCD0 +1146,CD40 1146,CD40 +1146,CDB0 1146,CDB0 +1146,CE20 1146,CE20 +1146,CE90 1146,CE90 +1146,CF00 1146,CF00 +1146,CF70 1146,CF70 +1146,CFE0 1146,CFE0 +1146,D050 1146,D050 +1146,D0C0 1146,D0C0 +1146,D130 1146,D130 +1146,D1A0 1146,D1A0 +1146,D210 1146,D210 +1146,D280 1146,D280 +1146,D2F0 1146,D2F0 +1146,D360 1146,D360 +1146,D3D0 1146,D3D0 +1146,D440 1146,D440 +1146,D4B0 1146,D4B0 +1146,D520 1146,D520 +1146,D590 1146,D590 +1146,D600 1146,D600 +1146,D670 1146,D670 +1146,D6E0 1146,D6E0 +1146,D750 1146,D750 +1147,AC00 1147,AC00 +1147,AC70 1147,AC70 +1147,ACE0 1147,ACE0 +1147,AD50 1147,AD50 +1147,ADC0 1147,ADC0 +1147,AE30 1147,AE30 +1147,AEA0 1147,AEA0 +1147,AF10 1147,AF10 +1147,AF80 1147,AF80 +1147,AFF0 1147,AFF0 +1147,B060 1147,B060 +1147,B0D0 1147,B0D0 +1147,B140 1147,B140 +1147,B1B0 1147,B1B0 +1147,B220 1147,B220 +1147,B290 1147,B290 +1147,B300 1147,B300 +1147,B370 1147,B370 +1147,B3E0 1147,B3E0 +1147,B450 1147,B450 +1147,B4C0 1147,B4C0 +1147,B530 1147,B530 +1147,B5A0 1147,B5A0 +1147,B610 1147,B610 +1147,B680 1147,B680 +1147,B6F0 1147,B6F0 +1147,B760 1147,B760 +1147,B7D0 1147,B7D0 +1147,B840 1147,B840 +1147,B8B0 1147,B8B0 +1147,B920 1147,B920 +1147,B990 1147,B990 +1147,BA00 1147,BA00 +1147,BA70 1147,BA70 +1147,BAE0 1147,BAE0 +1147,BB50 1147,BB50 +1147,BBC0 1147,BBC0 +1147,BC30 1147,BC30 +1147,BCA0 1147,BCA0 +1147,BD10 1147,BD10 +1147,BD80 1147,BD80 +1147,BDF0 1147,BDF0 +1147,BE60 1147,BE60 +1147,BED0 1147,BED0 +1147,BF40 1147,BF40 +1147,BFB0 1147,BFB0 +1147,C020 1147,C020 +1147,C090 1147,C090 +1147,C100 1147,C100 +1147,C170 1147,C170 +1147,C1E0 1147,C1E0 +1147,C250 1147,C250 +1147,C2C0 1147,C2C0 +1147,C330 1147,C330 +1147,C3A0 1147,C3A0 +1147,C410 1147,C410 +1147,C480 1147,C480 +1147,C4F0 1147,C4F0 +1147,C560 1147,C560 +1147,C5D0 1147,C5D0 +1147,C640 1147,C640 +1147,C6B0 1147,C6B0 +1147,C720 1147,C720 +1147,C790 1147,C790 +1147,C800 1147,C800 +1147,C870 1147,C870 +1147,C8E0 1147,C8E0 +1147,C950 1147,C950 +1147,C9C0 1147,C9C0 +1147,CA30 1147,CA30 +1147,CAA0 1147,CAA0 +1147,CB10 1147,CB10 +1147,CB80 1147,CB80 +1147,CBF0 1147,CBF0 +1147,CC60 1147,CC60 +1147,CCD0 1147,CCD0 +1147,CD40 1147,CD40 +1147,CDB0 1147,CDB0 +1147,CE20 1147,CE20 +1147,CE90 1147,CE90 +1147,CF00 1147,CF00 +1147,CF70 1147,CF70 +1147,CFE0 1147,CFE0 +1147,D050 1147,D050 +1147,D0C0 1147,D0C0 +1147,D130 1147,D130 +1147,D1A0 1147,D1A0 +1147,D210 1147,D210 +1147,D280 1147,D280 +1147,D2F0 1147,D2F0 +1147,D360 1147,D360 +1147,D3D0 1147,D3D0 +1147,D440 1147,D440 +1147,D4B0 1147,D4B0 +1147,D520 1147,D520 +1147,D590 1147,D590 +1147,D600 1147,D600 +1147,D670 1147,D670 +1147,D6E0 1147,D6E0 +1147,D750 1147,D750 +1148,AC00 1148,AC00 +1148,AC70 1148,AC70 +1148,ACE0 1148,ACE0 +1148,AD50 1148,AD50 +1148,ADC0 1148,ADC0 +1148,AE30 1148,AE30 +1148,AEA0 1148,AEA0 +1148,AF10 1148,AF10 +1148,AF80 1148,AF80 +1148,AFF0 1148,AFF0 +1148,B060 1148,B060 +1148,B0D0 1148,B0D0 +1148,B140 1148,B140 +1148,B1B0 1148,B1B0 +1148,B220 1148,B220 +1148,B290 1148,B290 +1148,B300 1148,B300 +1148,B370 1148,B370 +1148,B3E0 1148,B3E0 +1148,B450 1148,B450 +1148,B4C0 1148,B4C0 +1148,B530 1148,B530 +1148,B5A0 1148,B5A0 +1148,B610 1148,B610 +1148,B680 1148,B680 +1148,B6F0 1148,B6F0 +1148,B760 1148,B760 +1148,B7D0 1148,B7D0 +1148,B840 1148,B840 +1148,B8B0 1148,B8B0 +1148,B920 1148,B920 +1148,B990 1148,B990 +1148,BA00 1148,BA00 +1148,BA70 1148,BA70 +1148,BAE0 1148,BAE0 +1148,BB50 1148,BB50 +1148,BBC0 1148,BBC0 +1148,BC30 1148,BC30 +1148,BCA0 1148,BCA0 +1148,BD10 1148,BD10 +1148,BD80 1148,BD80 +1148,BDF0 1148,BDF0 +1148,BE60 1148,BE60 +1148,BED0 1148,BED0 +1148,BF40 1148,BF40 +1148,BFB0 1148,BFB0 +1148,C020 1148,C020 +1148,C090 1148,C090 +1148,C100 1148,C100 +1148,C170 1148,C170 +1148,C1E0 1148,C1E0 +1148,C250 1148,C250 +1148,C2C0 1148,C2C0 +1148,C330 1148,C330 +1148,C3A0 1148,C3A0 +1148,C410 1148,C410 +1148,C480 1148,C480 +1148,C4F0 1148,C4F0 +1148,C560 1148,C560 +1148,C5D0 1148,C5D0 +1148,C640 1148,C640 +1148,C6B0 1148,C6B0 +1148,C720 1148,C720 +1148,C790 1148,C790 +1148,C800 1148,C800 +1148,C870 1148,C870 +1148,C8E0 1148,C8E0 +1148,C950 1148,C950 +1148,C9C0 1148,C9C0 +1148,CA30 1148,CA30 +1148,CAA0 1148,CAA0 +1148,CB10 1148,CB10 +1148,CB80 1148,CB80 +1148,CBF0 1148,CBF0 +1148,CC60 1148,CC60 +1148,CCD0 1148,CCD0 +1148,CD40 1148,CD40 +1148,CDB0 1148,CDB0 +1148,CE20 1148,CE20 +1148,CE90 1148,CE90 +1148,CF00 1148,CF00 +1148,CF70 1148,CF70 +1148,CFE0 1148,CFE0 +1148,D050 1148,D050 +1148,D0C0 1148,D0C0 +1148,D130 1148,D130 +1148,D1A0 1148,D1A0 +1148,D210 1148,D210 +1148,D280 1148,D280 +1148,D2F0 1148,D2F0 +1148,D360 1148,D360 +1148,D3D0 1148,D3D0 +1148,D440 1148,D440 +1148,D4B0 1148,D4B0 +1148,D520 1148,D520 +1148,D590 1148,D590 +1148,D600 1148,D600 +1148,D670 1148,D670 +1148,D6E0 1148,D6E0 +1148,D750 1148,D750 +1149,AC00 1149,AC00 +1149,AC70 1149,AC70 +1149,ACE0 1149,ACE0 +1149,AD50 1149,AD50 +1149,ADC0 1149,ADC0 +1149,AE30 1149,AE30 +1149,AEA0 1149,AEA0 +1149,AF10 1149,AF10 +1149,AF80 1149,AF80 +1149,AFF0 1149,AFF0 +1149,B060 1149,B060 +1149,B0D0 1149,B0D0 +1149,B140 1149,B140 +1149,B1B0 1149,B1B0 +1149,B220 1149,B220 +1149,B290 1149,B290 +1149,B300 1149,B300 +1149,B370 1149,B370 +1149,B3E0 1149,B3E0 +1149,B450 1149,B450 +1149,B4C0 1149,B4C0 +1149,B530 1149,B530 +1149,B5A0 1149,B5A0 +1149,B610 1149,B610 +1149,B680 1149,B680 +1149,B6F0 1149,B6F0 +1149,B760 1149,B760 +1149,B7D0 1149,B7D0 +1149,B840 1149,B840 +1149,B8B0 1149,B8B0 +1149,B920 1149,B920 +1149,B990 1149,B990 +1149,BA00 1149,BA00 +1149,BA70 1149,BA70 +1149,BAE0 1149,BAE0 +1149,BB50 1149,BB50 +1149,BBC0 1149,BBC0 +1149,BC30 1149,BC30 +1149,BCA0 1149,BCA0 +1149,BD10 1149,BD10 +1149,BD80 1149,BD80 +1149,BDF0 1149,BDF0 +1149,BE60 1149,BE60 +1149,BED0 1149,BED0 +1149,BF40 1149,BF40 +1149,BFB0 1149,BFB0 +1149,C020 1149,C020 +1149,C090 1149,C090 +1149,C100 1149,C100 +1149,C170 1149,C170 +1149,C1E0 1149,C1E0 +1149,C250 1149,C250 +1149,C2C0 1149,C2C0 +1149,C330 1149,C330 +1149,C3A0 1149,C3A0 +1149,C410 1149,C410 +1149,C480 1149,C480 +1149,C4F0 1149,C4F0 +1149,C560 1149,C560 +1149,C5D0 1149,C5D0 +1149,C640 1149,C640 +1149,C6B0 1149,C6B0 +1149,C720 1149,C720 +1149,C790 1149,C790 +1149,C800 1149,C800 +1149,C870 1149,C870 +1149,C8E0 1149,C8E0 +1149,C950 1149,C950 +1149,C9C0 1149,C9C0 +1149,CA30 1149,CA30 +1149,CAA0 1149,CAA0 +1149,CB10 1149,CB10 +1149,CB80 1149,CB80 +1149,CBF0 1149,CBF0 +1149,CC60 1149,CC60 +1149,CCD0 1149,CCD0 +1149,CD40 1149,CD40 +1149,CDB0 1149,CDB0 +1149,CE20 1149,CE20 +1149,CE90 1149,CE90 +1149,CF00 1149,CF00 +1149,CF70 1149,CF70 +1149,CFE0 1149,CFE0 +1149,D050 1149,D050 +1149,D0C0 1149,D0C0 +1149,D130 1149,D130 +1149,D1A0 1149,D1A0 +1149,D210 1149,D210 +1149,D280 1149,D280 +1149,D2F0 1149,D2F0 +1149,D360 1149,D360 +1149,D3D0 1149,D3D0 +1149,D440 1149,D440 +1149,D4B0 1149,D4B0 +1149,D520 1149,D520 +1149,D590 1149,D590 +1149,D600 1149,D600 +1149,D670 1149,D670 +1149,D6E0 1149,D6E0 +1149,D750 1149,D750 +114A,AC00 114A,AC00 +114A,AC70 114A,AC70 +114A,ACE0 114A,ACE0 +114A,AD50 114A,AD50 +114A,ADC0 114A,ADC0 +114A,AE30 114A,AE30 +114A,AEA0 114A,AEA0 +114A,AF10 114A,AF10 +114A,AF80 114A,AF80 +114A,AFF0 114A,AFF0 +114A,B060 114A,B060 +114A,B0D0 114A,B0D0 +114A,B140 114A,B140 +114A,B1B0 114A,B1B0 +114A,B220 114A,B220 +114A,B290 114A,B290 +114A,B300 114A,B300 +114A,B370 114A,B370 +114A,B3E0 114A,B3E0 +114A,B450 114A,B450 +114A,B4C0 114A,B4C0 +114A,B530 114A,B530 +114A,B5A0 114A,B5A0 +114A,B610 114A,B610 +114A,B680 114A,B680 +114A,B6F0 114A,B6F0 +114A,B760 114A,B760 +114A,B7D0 114A,B7D0 +114A,B840 114A,B840 +114A,B8B0 114A,B8B0 +114A,B920 114A,B920 +114A,B990 114A,B990 +114A,BA00 114A,BA00 +114A,BA70 114A,BA70 +114A,BAE0 114A,BAE0 +114A,BB50 114A,BB50 +114A,BBC0 114A,BBC0 +114A,BC30 114A,BC30 +114A,BCA0 114A,BCA0 +114A,BD10 114A,BD10 +114A,BD80 114A,BD80 +114A,BDF0 114A,BDF0 +114A,BE60 114A,BE60 +114A,BED0 114A,BED0 +114A,BF40 114A,BF40 +114A,BFB0 114A,BFB0 +114A,C020 114A,C020 +114A,C090 114A,C090 +114A,C100 114A,C100 +114A,C170 114A,C170 +114A,C1E0 114A,C1E0 +114A,C250 114A,C250 +114A,C2C0 114A,C2C0 +114A,C330 114A,C330 +114A,C3A0 114A,C3A0 +114A,C410 114A,C410 +114A,C480 114A,C480 +114A,C4F0 114A,C4F0 +114A,C560 114A,C560 +114A,C5D0 114A,C5D0 +114A,C640 114A,C640 +114A,C6B0 114A,C6B0 +114A,C720 114A,C720 +114A,C790 114A,C790 +114A,C800 114A,C800 +114A,C870 114A,C870 +114A,C8E0 114A,C8E0 +114A,C950 114A,C950 +114A,C9C0 114A,C9C0 +114A,CA30 114A,CA30 +114A,CAA0 114A,CAA0 +114A,CB10 114A,CB10 +114A,CB80 114A,CB80 +114A,CBF0 114A,CBF0 +114A,CC60 114A,CC60 +114A,CCD0 114A,CCD0 +114A,CD40 114A,CD40 +114A,CDB0 114A,CDB0 +114A,CE20 114A,CE20 +114A,CE90 114A,CE90 +114A,CF00 114A,CF00 +114A,CF70 114A,CF70 +114A,CFE0 114A,CFE0 +114A,D050 114A,D050 +114A,D0C0 114A,D0C0 +114A,D130 114A,D130 +114A,D1A0 114A,D1A0 +114A,D210 114A,D210 +114A,D280 114A,D280 +114A,D2F0 114A,D2F0 +114A,D360 114A,D360 +114A,D3D0 114A,D3D0 +114A,D440 114A,D440 +114A,D4B0 114A,D4B0 +114A,D520 114A,D520 +114A,D590 114A,D590 +114A,D600 114A,D600 +114A,D670 114A,D670 +114A,D6E0 114A,D6E0 +114A,D750 114A,D750 +114B,AC00 114B,AC00 +114B,AC70 114B,AC70 +114B,ACE0 114B,ACE0 +114B,AD50 114B,AD50 +114B,ADC0 114B,ADC0 +114B,AE30 114B,AE30 +114B,AEA0 114B,AEA0 +114B,AF10 114B,AF10 +114B,AF80 114B,AF80 +114B,AFF0 114B,AFF0 +114B,B060 114B,B060 +114B,B0D0 114B,B0D0 +114B,B140 114B,B140 +114B,B1B0 114B,B1B0 +114B,B220 114B,B220 +114B,B290 114B,B290 +114B,B300 114B,B300 +114B,B370 114B,B370 +114B,B3E0 114B,B3E0 +114B,B450 114B,B450 +114B,B4C0 114B,B4C0 +114B,B530 114B,B530 +114B,B5A0 114B,B5A0 +114B,B610 114B,B610 +114B,B680 114B,B680 +114B,B6F0 114B,B6F0 +114B,B760 114B,B760 +114B,B7D0 114B,B7D0 +114B,B840 114B,B840 +114B,B8B0 114B,B8B0 +114B,B920 114B,B920 +114B,B990 114B,B990 +114B,BA00 114B,BA00 +114B,BA70 114B,BA70 +114B,BAE0 114B,BAE0 +114B,BB50 114B,BB50 +114B,BBC0 114B,BBC0 +114B,BC30 114B,BC30 +114B,BCA0 114B,BCA0 +114B,BD10 114B,BD10 +114B,BD80 114B,BD80 +114B,BDF0 114B,BDF0 +114B,BE60 114B,BE60 +114B,BED0 114B,BED0 +114B,BF40 114B,BF40 +114B,BFB0 114B,BFB0 +114B,C020 114B,C020 +114B,C090 114B,C090 +114B,C100 114B,C100 +114B,C170 114B,C170 +114B,C1E0 114B,C1E0 +114B,C250 114B,C250 +114B,C2C0 114B,C2C0 +114B,C330 114B,C330 +114B,C3A0 114B,C3A0 +114B,C410 114B,C410 +114B,C480 114B,C480 +114B,C4F0 114B,C4F0 +114B,C560 114B,C560 +114B,C5D0 114B,C5D0 +114B,C640 114B,C640 +114B,C6B0 114B,C6B0 +114B,C720 114B,C720 +114B,C790 114B,C790 +114B,C800 114B,C800 +114B,C870 114B,C870 +114B,C8E0 114B,C8E0 +114B,C950 114B,C950 +114B,C9C0 114B,C9C0 +114B,CA30 114B,CA30 +114B,CAA0 114B,CAA0 +114B,CB10 114B,CB10 +114B,CB80 114B,CB80 +114B,CBF0 114B,CBF0 +114B,CC60 114B,CC60 +114B,CCD0 114B,CCD0 +114B,CD40 114B,CD40 +114B,CDB0 114B,CDB0 +114B,CE20 114B,CE20 +114B,CE90 114B,CE90 +114B,CF00 114B,CF00 +114B,CF70 114B,CF70 +114B,CFE0 114B,CFE0 +114B,D050 114B,D050 +114B,D0C0 114B,D0C0 +114B,D130 114B,D130 +114B,D1A0 114B,D1A0 +114B,D210 114B,D210 +114B,D280 114B,D280 +114B,D2F0 114B,D2F0 +114B,D360 114B,D360 +114B,D3D0 114B,D3D0 +114B,D440 114B,D440 +114B,D4B0 114B,D4B0 +114B,D520 114B,D520 +114B,D590 114B,D590 +114B,D600 114B,D600 +114B,D670 114B,D670 +114B,D6E0 114B,D6E0 +114B,D750 114B,D750 +114C,AC00 114C,AC00 +114C,AC70 114C,AC70 +114C,ACE0 114C,ACE0 +114C,AD50 114C,AD50 +114C,ADC0 114C,ADC0 +114C,AE30 114C,AE30 +114C,AEA0 114C,AEA0 +114C,AF10 114C,AF10 +114C,AF80 114C,AF80 +114C,AFF0 114C,AFF0 +114C,B060 114C,B060 +114C,B0D0 114C,B0D0 +114C,B140 114C,B140 +114C,B1B0 114C,B1B0 +114C,B220 114C,B220 +114C,B290 114C,B290 +114C,B300 114C,B300 +114C,B370 114C,B370 +114C,B3E0 114C,B3E0 +114C,B450 114C,B450 +114C,B4C0 114C,B4C0 +114C,B530 114C,B530 +114C,B5A0 114C,B5A0 +114C,B610 114C,B610 +114C,B680 114C,B680 +114C,B6F0 114C,B6F0 +114C,B760 114C,B760 +114C,B7D0 114C,B7D0 +114C,B840 114C,B840 +114C,B8B0 114C,B8B0 +114C,B920 114C,B920 +114C,B990 114C,B990 +114C,BA00 114C,BA00 +114C,BA70 114C,BA70 +114C,BAE0 114C,BAE0 +114C,BB50 114C,BB50 +114C,BBC0 114C,BBC0 +114C,BC30 114C,BC30 +114C,BCA0 114C,BCA0 +114C,BD10 114C,BD10 +114C,BD80 114C,BD80 +114C,BDF0 114C,BDF0 +114C,BE60 114C,BE60 +114C,BED0 114C,BED0 +114C,BF40 114C,BF40 +114C,BFB0 114C,BFB0 +114C,C020 114C,C020 +114C,C090 114C,C090 +114C,C100 114C,C100 +114C,C170 114C,C170 +114C,C1E0 114C,C1E0 +114C,C250 114C,C250 +114C,C2C0 114C,C2C0 +114C,C330 114C,C330 +114C,C3A0 114C,C3A0 +114C,C410 114C,C410 +114C,C480 114C,C480 +114C,C4F0 114C,C4F0 +114C,C560 114C,C560 +114C,C5D0 114C,C5D0 +114C,C640 114C,C640 +114C,C6B0 114C,C6B0 +114C,C720 114C,C720 +114C,C790 114C,C790 +114C,C800 114C,C800 +114C,C870 114C,C870 +114C,C8E0 114C,C8E0 +114C,C950 114C,C950 +114C,C9C0 114C,C9C0 +114C,CA30 114C,CA30 +114C,CAA0 114C,CAA0 +114C,CB10 114C,CB10 +114C,CB80 114C,CB80 +114C,CBF0 114C,CBF0 +114C,CC60 114C,CC60 +114C,CCD0 114C,CCD0 +114C,CD40 114C,CD40 +114C,CDB0 114C,CDB0 +114C,CE20 114C,CE20 +114C,CE90 114C,CE90 +114C,CF00 114C,CF00 +114C,CF70 114C,CF70 +114C,CFE0 114C,CFE0 +114C,D050 114C,D050 +114C,D0C0 114C,D0C0 +114C,D130 114C,D130 +114C,D1A0 114C,D1A0 +114C,D210 114C,D210 +114C,D280 114C,D280 +114C,D2F0 114C,D2F0 +114C,D360 114C,D360 +114C,D3D0 114C,D3D0 +114C,D440 114C,D440 +114C,D4B0 114C,D4B0 +114C,D520 114C,D520 +114C,D590 114C,D590 +114C,D600 114C,D600 +114C,D670 114C,D670 +114C,D6E0 114C,D6E0 +114C,D750 114C,D750 +114D,AC00 114D,AC00 +114D,AC70 114D,AC70 +114D,ACE0 114D,ACE0 +114D,AD50 114D,AD50 +114D,ADC0 114D,ADC0 +114D,AE30 114D,AE30 +114D,AEA0 114D,AEA0 +114D,AF10 114D,AF10 +114D,AF80 114D,AF80 +114D,AFF0 114D,AFF0 +114D,B060 114D,B060 +114D,B0D0 114D,B0D0 +114D,B140 114D,B140 +114D,B1B0 114D,B1B0 +114D,B220 114D,B220 +114D,B290 114D,B290 +114D,B300 114D,B300 +114D,B370 114D,B370 +114D,B3E0 114D,B3E0 +114D,B450 114D,B450 +114D,B4C0 114D,B4C0 +114D,B530 114D,B530 +114D,B5A0 114D,B5A0 +114D,B610 114D,B610 +114D,B680 114D,B680 +114D,B6F0 114D,B6F0 +114D,B760 114D,B760 +114D,B7D0 114D,B7D0 +114D,B840 114D,B840 +114D,B8B0 114D,B8B0 +114D,B920 114D,B920 +114D,B990 114D,B990 +114D,BA00 114D,BA00 +114D,BA70 114D,BA70 +114D,BAE0 114D,BAE0 +114D,BB50 114D,BB50 +114D,BBC0 114D,BBC0 +114D,BC30 114D,BC30 +114D,BCA0 114D,BCA0 +114D,BD10 114D,BD10 +114D,BD80 114D,BD80 +114D,BDF0 114D,BDF0 +114D,BE60 114D,BE60 +114D,BED0 114D,BED0 +114D,BF40 114D,BF40 +114D,BFB0 114D,BFB0 +114D,C020 114D,C020 +114D,C090 114D,C090 +114D,C100 114D,C100 +114D,C170 114D,C170 +114D,C1E0 114D,C1E0 +114D,C250 114D,C250 +114D,C2C0 114D,C2C0 +114D,C330 114D,C330 +114D,C3A0 114D,C3A0 +114D,C410 114D,C410 +114D,C480 114D,C480 +114D,C4F0 114D,C4F0 +114D,C560 114D,C560 +114D,C5D0 114D,C5D0 +114D,C640 114D,C640 +114D,C6B0 114D,C6B0 +114D,C720 114D,C720 +114D,C790 114D,C790 +114D,C800 114D,C800 +114D,C870 114D,C870 +114D,C8E0 114D,C8E0 +114D,C950 114D,C950 +114D,C9C0 114D,C9C0 +114D,CA30 114D,CA30 +114D,CAA0 114D,CAA0 +114D,CB10 114D,CB10 +114D,CB80 114D,CB80 +114D,CBF0 114D,CBF0 +114D,CC60 114D,CC60 +114D,CCD0 114D,CCD0 +114D,CD40 114D,CD40 +114D,CDB0 114D,CDB0 +114D,CE20 114D,CE20 +114D,CE90 114D,CE90 +114D,CF00 114D,CF00 +114D,CF70 114D,CF70 +114D,CFE0 114D,CFE0 +114D,D050 114D,D050 +114D,D0C0 114D,D0C0 +114D,D130 114D,D130 +114D,D1A0 114D,D1A0 +114D,D210 114D,D210 +114D,D280 114D,D280 +114D,D2F0 114D,D2F0 +114D,D360 114D,D360 +114D,D3D0 114D,D3D0 +114D,D440 114D,D440 +114D,D4B0 114D,D4B0 +114D,D520 114D,D520 +114D,D590 114D,D590 +114D,D600 114D,D600 +114D,D670 114D,D670 +114D,D6E0 114D,D6E0 +114D,D750 114D,D750 +114E,AC00 114E,AC00 +114E,AC70 114E,AC70 +114E,ACE0 114E,ACE0 +114E,AD50 114E,AD50 +114E,ADC0 114E,ADC0 +114E,AE30 114E,AE30 +114E,AEA0 114E,AEA0 +114E,AF10 114E,AF10 +114E,AF80 114E,AF80 +114E,AFF0 114E,AFF0 +114E,B060 114E,B060 +114E,B0D0 114E,B0D0 +114E,B140 114E,B140 +114E,B1B0 114E,B1B0 +114E,B220 114E,B220 +114E,B290 114E,B290 +114E,B300 114E,B300 +114E,B370 114E,B370 +114E,B3E0 114E,B3E0 +114E,B450 114E,B450 +114E,B4C0 114E,B4C0 +114E,B530 114E,B530 +114E,B5A0 114E,B5A0 +114E,B610 114E,B610 +114E,B680 114E,B680 +114E,B6F0 114E,B6F0 +114E,B760 114E,B760 +114E,B7D0 114E,B7D0 +114E,B840 114E,B840 +114E,B8B0 114E,B8B0 +114E,B920 114E,B920 +114E,B990 114E,B990 +114E,BA00 114E,BA00 +114E,BA70 114E,BA70 +114E,BAE0 114E,BAE0 +114E,BB50 114E,BB50 +114E,BBC0 114E,BBC0 +114E,BC30 114E,BC30 +114E,BCA0 114E,BCA0 +114E,BD10 114E,BD10 +114E,BD80 114E,BD80 +114E,BDF0 114E,BDF0 +114E,BE60 114E,BE60 +114E,BED0 114E,BED0 +114E,BF40 114E,BF40 +114E,BFB0 114E,BFB0 +114E,C020 114E,C020 +114E,C090 114E,C090 +114E,C100 114E,C100 +114E,C170 114E,C170 +114E,C1E0 114E,C1E0 +114E,C250 114E,C250 +114E,C2C0 114E,C2C0 +114E,C330 114E,C330 +114E,C3A0 114E,C3A0 +114E,C410 114E,C410 +114E,C480 114E,C480 +114E,C4F0 114E,C4F0 +114E,C560 114E,C560 +114E,C5D0 114E,C5D0 +114E,C640 114E,C640 +114E,C6B0 114E,C6B0 +114E,C720 114E,C720 +114E,C790 114E,C790 +114E,C800 114E,C800 +114E,C870 114E,C870 +114E,C8E0 114E,C8E0 +114E,C950 114E,C950 +114E,C9C0 114E,C9C0 +114E,CA30 114E,CA30 +114E,CAA0 114E,CAA0 +114E,CB10 114E,CB10 +114E,CB80 114E,CB80 +114E,CBF0 114E,CBF0 +114E,CC60 114E,CC60 +114E,CCD0 114E,CCD0 +114E,CD40 114E,CD40 +114E,CDB0 114E,CDB0 +114E,CE20 114E,CE20 +114E,CE90 114E,CE90 +114E,CF00 114E,CF00 +114E,CF70 114E,CF70 +114E,CFE0 114E,CFE0 +114E,D050 114E,D050 +114E,D0C0 114E,D0C0 +114E,D130 114E,D130 +114E,D1A0 114E,D1A0 +114E,D210 114E,D210 +114E,D280 114E,D280 +114E,D2F0 114E,D2F0 +114E,D360 114E,D360 +114E,D3D0 114E,D3D0 +114E,D440 114E,D440 +114E,D4B0 114E,D4B0 +114E,D520 114E,D520 +114E,D590 114E,D590 +114E,D600 114E,D600 +114E,D670 114E,D670 +114E,D6E0 114E,D6E0 +114E,D750 114E,D750 +114F,AC00 114F,AC00 +114F,AC70 114F,AC70 +114F,ACE0 114F,ACE0 +114F,AD50 114F,AD50 +114F,ADC0 114F,ADC0 +114F,AE30 114F,AE30 +114F,AEA0 114F,AEA0 +114F,AF10 114F,AF10 +114F,AF80 114F,AF80 +114F,AFF0 114F,AFF0 +114F,B060 114F,B060 +114F,B0D0 114F,B0D0 +114F,B140 114F,B140 +114F,B1B0 114F,B1B0 +114F,B220 114F,B220 +114F,B290 114F,B290 +114F,B300 114F,B300 +114F,B370 114F,B370 +114F,B3E0 114F,B3E0 +114F,B450 114F,B450 +114F,B4C0 114F,B4C0 +114F,B530 114F,B530 +114F,B5A0 114F,B5A0 +114F,B610 114F,B610 +114F,B680 114F,B680 +114F,B6F0 114F,B6F0 +114F,B760 114F,B760 +114F,B7D0 114F,B7D0 +114F,B840 114F,B840 +114F,B8B0 114F,B8B0 +114F,B920 114F,B920 +114F,B990 114F,B990 +114F,BA00 114F,BA00 +114F,BA70 114F,BA70 +114F,BAE0 114F,BAE0 +114F,BB50 114F,BB50 +114F,BBC0 114F,BBC0 +114F,BC30 114F,BC30 +114F,BCA0 114F,BCA0 +114F,BD10 114F,BD10 +114F,BD80 114F,BD80 +114F,BDF0 114F,BDF0 +114F,BE60 114F,BE60 +114F,BED0 114F,BED0 +114F,BF40 114F,BF40 +114F,BFB0 114F,BFB0 +114F,C020 114F,C020 +114F,C090 114F,C090 +114F,C100 114F,C100 +114F,C170 114F,C170 +114F,C1E0 114F,C1E0 +114F,C250 114F,C250 +114F,C2C0 114F,C2C0 +114F,C330 114F,C330 +114F,C3A0 114F,C3A0 +114F,C410 114F,C410 +114F,C480 114F,C480 +114F,C4F0 114F,C4F0 +114F,C560 114F,C560 +114F,C5D0 114F,C5D0 +114F,C640 114F,C640 +114F,C6B0 114F,C6B0 +114F,C720 114F,C720 +114F,C790 114F,C790 +114F,C800 114F,C800 +114F,C870 114F,C870 +114F,C8E0 114F,C8E0 +114F,C950 114F,C950 +114F,C9C0 114F,C9C0 +114F,CA30 114F,CA30 +114F,CAA0 114F,CAA0 +114F,CB10 114F,CB10 +114F,CB80 114F,CB80 +114F,CBF0 114F,CBF0 +114F,CC60 114F,CC60 +114F,CCD0 114F,CCD0 +114F,CD40 114F,CD40 +114F,CDB0 114F,CDB0 +114F,CE20 114F,CE20 +114F,CE90 114F,CE90 +114F,CF00 114F,CF00 +114F,CF70 114F,CF70 +114F,CFE0 114F,CFE0 +114F,D050 114F,D050 +114F,D0C0 114F,D0C0 +114F,D130 114F,D130 +114F,D1A0 114F,D1A0 +114F,D210 114F,D210 +114F,D280 114F,D280 +114F,D2F0 114F,D2F0 +114F,D360 114F,D360 +114F,D3D0 114F,D3D0 +114F,D440 114F,D440 +114F,D4B0 114F,D4B0 +114F,D520 114F,D520 +114F,D590 114F,D590 +114F,D600 114F,D600 +114F,D670 114F,D670 +114F,D6E0 114F,D6E0 +114F,D750 114F,D750 +1150,AC00 1150,AC00 +1150,AC70 1150,AC70 +1150,ACE0 1150,ACE0 +1150,AD50 1150,AD50 +1150,ADC0 1150,ADC0 +1150,AE30 1150,AE30 +1150,AEA0 1150,AEA0 +1150,AF10 1150,AF10 +1150,AF80 1150,AF80 +1150,AFF0 1150,AFF0 +1150,B060 1150,B060 +1150,B0D0 1150,B0D0 +1150,B140 1150,B140 +1150,B1B0 1150,B1B0 +1150,B220 1150,B220 +1150,B290 1150,B290 +1150,B300 1150,B300 +1150,B370 1150,B370 +1150,B3E0 1150,B3E0 +1150,B450 1150,B450 +1150,B4C0 1150,B4C0 +1150,B530 1150,B530 +1150,B5A0 1150,B5A0 +1150,B610 1150,B610 +1150,B680 1150,B680 +1150,B6F0 1150,B6F0 +1150,B760 1150,B760 +1150,B7D0 1150,B7D0 +1150,B840 1150,B840 +1150,B8B0 1150,B8B0 +1150,B920 1150,B920 +1150,B990 1150,B990 +1150,BA00 1150,BA00 +1150,BA70 1150,BA70 +1150,BAE0 1150,BAE0 +1150,BB50 1150,BB50 +1150,BBC0 1150,BBC0 +1150,BC30 1150,BC30 +1150,BCA0 1150,BCA0 +1150,BD10 1150,BD10 +1150,BD80 1150,BD80 +1150,BDF0 1150,BDF0 +1150,BE60 1150,BE60 +1150,BED0 1150,BED0 +1150,BF40 1150,BF40 +1150,BFB0 1150,BFB0 +1150,C020 1150,C020 +1150,C090 1150,C090 +1150,C100 1150,C100 +1150,C170 1150,C170 +1150,C1E0 1150,C1E0 +1150,C250 1150,C250 +1150,C2C0 1150,C2C0 +1150,C330 1150,C330 +1150,C3A0 1150,C3A0 +1150,C410 1150,C410 +1150,C480 1150,C480 +1150,C4F0 1150,C4F0 +1150,C560 1150,C560 +1150,C5D0 1150,C5D0 +1150,C640 1150,C640 +1150,C6B0 1150,C6B0 +1150,C720 1150,C720 +1150,C790 1150,C790 +1150,C800 1150,C800 +1150,C870 1150,C870 +1150,C8E0 1150,C8E0 +1150,C950 1150,C950 +1150,C9C0 1150,C9C0 +1150,CA30 1150,CA30 +1150,CAA0 1150,CAA0 +1150,CB10 1150,CB10 +1150,CB80 1150,CB80 +1150,CBF0 1150,CBF0 +1150,CC60 1150,CC60 +1150,CCD0 1150,CCD0 +1150,CD40 1150,CD40 +1150,CDB0 1150,CDB0 +1150,CE20 1150,CE20 +1150,CE90 1150,CE90 +1150,CF00 1150,CF00 +1150,CF70 1150,CF70 +1150,CFE0 1150,CFE0 +1150,D050 1150,D050 +1150,D0C0 1150,D0C0 +1150,D130 1150,D130 +1150,D1A0 1150,D1A0 +1150,D210 1150,D210 +1150,D280 1150,D280 +1150,D2F0 1150,D2F0 +1150,D360 1150,D360 +1150,D3D0 1150,D3D0 +1150,D440 1150,D440 +1150,D4B0 1150,D4B0 +1150,D520 1150,D520 +1150,D590 1150,D590 +1150,D600 1150,D600 +1150,D670 1150,D670 +1150,D6E0 1150,D6E0 +1150,D750 1150,D750 +1151,AC00 1151,AC00 +1151,AC70 1151,AC70 +1151,ACE0 1151,ACE0 +1151,AD50 1151,AD50 +1151,ADC0 1151,ADC0 +1151,AE30 1151,AE30 +1151,AEA0 1151,AEA0 +1151,AF10 1151,AF10 +1151,AF80 1151,AF80 +1151,AFF0 1151,AFF0 +1151,B060 1151,B060 +1151,B0D0 1151,B0D0 +1151,B140 1151,B140 +1151,B1B0 1151,B1B0 +1151,B220 1151,B220 +1151,B290 1151,B290 +1151,B300 1151,B300 +1151,B370 1151,B370 +1151,B3E0 1151,B3E0 +1151,B450 1151,B450 +1151,B4C0 1151,B4C0 +1151,B530 1151,B530 +1151,B5A0 1151,B5A0 +1151,B610 1151,B610 +1151,B680 1151,B680 +1151,B6F0 1151,B6F0 +1151,B760 1151,B760 +1151,B7D0 1151,B7D0 +1151,B840 1151,B840 +1151,B8B0 1151,B8B0 +1151,B920 1151,B920 +1151,B990 1151,B990 +1151,BA00 1151,BA00 +1151,BA70 1151,BA70 +1151,BAE0 1151,BAE0 +1151,BB50 1151,BB50 +1151,BBC0 1151,BBC0 +1151,BC30 1151,BC30 +1151,BCA0 1151,BCA0 +1151,BD10 1151,BD10 +1151,BD80 1151,BD80 +1151,BDF0 1151,BDF0 +1151,BE60 1151,BE60 +1151,BED0 1151,BED0 +1151,BF40 1151,BF40 +1151,BFB0 1151,BFB0 +1151,C020 1151,C020 +1151,C090 1151,C090 +1151,C100 1151,C100 +1151,C170 1151,C170 +1151,C1E0 1151,C1E0 +1151,C250 1151,C250 +1151,C2C0 1151,C2C0 +1151,C330 1151,C330 +1151,C3A0 1151,C3A0 +1151,C410 1151,C410 +1151,C480 1151,C480 +1151,C4F0 1151,C4F0 +1151,C560 1151,C560 +1151,C5D0 1151,C5D0 +1151,C640 1151,C640 +1151,C6B0 1151,C6B0 +1151,C720 1151,C720 +1151,C790 1151,C790 +1151,C800 1151,C800 +1151,C870 1151,C870 +1151,C8E0 1151,C8E0 +1151,C950 1151,C950 +1151,C9C0 1151,C9C0 +1151,CA30 1151,CA30 +1151,CAA0 1151,CAA0 +1151,CB10 1151,CB10 +1151,CB80 1151,CB80 +1151,CBF0 1151,CBF0 +1151,CC60 1151,CC60 +1151,CCD0 1151,CCD0 +1151,CD40 1151,CD40 +1151,CDB0 1151,CDB0 +1151,CE20 1151,CE20 +1151,CE90 1151,CE90 +1151,CF00 1151,CF00 +1151,CF70 1151,CF70 +1151,CFE0 1151,CFE0 +1151,D050 1151,D050 +1151,D0C0 1151,D0C0 +1151,D130 1151,D130 +1151,D1A0 1151,D1A0 +1151,D210 1151,D210 +1151,D280 1151,D280 +1151,D2F0 1151,D2F0 +1151,D360 1151,D360 +1151,D3D0 1151,D3D0 +1151,D440 1151,D440 +1151,D4B0 1151,D4B0 +1151,D520 1151,D520 +1151,D590 1151,D590 +1151,D600 1151,D600 +1151,D670 1151,D670 +1151,D6E0 1151,D6E0 +1151,D750 1151,D750 +1152,AC00 1152,AC00 +1152,AC70 1152,AC70 +1152,ACE0 1152,ACE0 +1152,AD50 1152,AD50 +1152,ADC0 1152,ADC0 +1152,AE30 1152,AE30 +1152,AEA0 1152,AEA0 +1152,AF10 1152,AF10 +1152,AF80 1152,AF80 +1152,AFF0 1152,AFF0 +1152,B060 1152,B060 +1152,B0D0 1152,B0D0 +1152,B140 1152,B140 +1152,B1B0 1152,B1B0 +1152,B220 1152,B220 +1152,B290 1152,B290 +1152,B300 1152,B300 +1152,B370 1152,B370 +1152,B3E0 1152,B3E0 +1152,B450 1152,B450 +1152,B4C0 1152,B4C0 +1152,B530 1152,B530 +1152,B5A0 1152,B5A0 +1152,B610 1152,B610 +1152,B680 1152,B680 +1152,B6F0 1152,B6F0 +1152,B760 1152,B760 +1152,B7D0 1152,B7D0 +1152,B840 1152,B840 +1152,B8B0 1152,B8B0 +1152,B920 1152,B920 +1152,B990 1152,B990 +1152,BA00 1152,BA00 +1152,BA70 1152,BA70 +1152,BAE0 1152,BAE0 +1152,BB50 1152,BB50 +1152,BBC0 1152,BBC0 +1152,BC30 1152,BC30 +1152,BCA0 1152,BCA0 +1152,BD10 1152,BD10 +1152,BD80 1152,BD80 +1152,BDF0 1152,BDF0 +1152,BE60 1152,BE60 +1152,BED0 1152,BED0 +1152,BF40 1152,BF40 +1152,BFB0 1152,BFB0 +1152,C020 1152,C020 +1152,C090 1152,C090 +1152,C100 1152,C100 +1152,C170 1152,C170 +1152,C1E0 1152,C1E0 +1152,C250 1152,C250 +1152,C2C0 1152,C2C0 +1152,C330 1152,C330 +1152,C3A0 1152,C3A0 +1152,C410 1152,C410 +1152,C480 1152,C480 +1152,C4F0 1152,C4F0 +1152,C560 1152,C560 +1152,C5D0 1152,C5D0 +1152,C640 1152,C640 +1152,C6B0 1152,C6B0 +1152,C720 1152,C720 +1152,C790 1152,C790 +1152,C800 1152,C800 +1152,C870 1152,C870 +1152,C8E0 1152,C8E0 +1152,C950 1152,C950 +1152,C9C0 1152,C9C0 +1152,CA30 1152,CA30 +1152,CAA0 1152,CAA0 +1152,CB10 1152,CB10 +1152,CB80 1152,CB80 +1152,CBF0 1152,CBF0 +1152,CC60 1152,CC60 +1152,CCD0 1152,CCD0 +1152,CD40 1152,CD40 +1152,CDB0 1152,CDB0 +1152,CE20 1152,CE20 +1152,CE90 1152,CE90 +1152,CF00 1152,CF00 +1152,CF70 1152,CF70 +1152,CFE0 1152,CFE0 +1152,D050 1152,D050 +1152,D0C0 1152,D0C0 +1152,D130 1152,D130 +1152,D1A0 1152,D1A0 +1152,D210 1152,D210 +1152,D280 1152,D280 +1152,D2F0 1152,D2F0 +1152,D360 1152,D360 +1152,D3D0 1152,D3D0 +1152,D440 1152,D440 +1152,D4B0 1152,D4B0 +1152,D520 1152,D520 +1152,D590 1152,D590 +1152,D600 1152,D600 +1152,D670 1152,D670 +1152,D6E0 1152,D6E0 +1152,D750 1152,D750 +1153,AC00 1153,AC00 +1153,AC70 1153,AC70 +1153,ACE0 1153,ACE0 +1153,AD50 1153,AD50 +1153,ADC0 1153,ADC0 +1153,AE30 1153,AE30 +1153,AEA0 1153,AEA0 +1153,AF10 1153,AF10 +1153,AF80 1153,AF80 +1153,AFF0 1153,AFF0 +1153,B060 1153,B060 +1153,B0D0 1153,B0D0 +1153,B140 1153,B140 +1153,B1B0 1153,B1B0 +1153,B220 1153,B220 +1153,B290 1153,B290 +1153,B300 1153,B300 +1153,B370 1153,B370 +1153,B3E0 1153,B3E0 +1153,B450 1153,B450 +1153,B4C0 1153,B4C0 +1153,B530 1153,B530 +1153,B5A0 1153,B5A0 +1153,B610 1153,B610 +1153,B680 1153,B680 +1153,B6F0 1153,B6F0 +1153,B760 1153,B760 +1153,B7D0 1153,B7D0 +1153,B840 1153,B840 +1153,B8B0 1153,B8B0 +1153,B920 1153,B920 +1153,B990 1153,B990 +1153,BA00 1153,BA00 +1153,BA70 1153,BA70 +1153,BAE0 1153,BAE0 +1153,BB50 1153,BB50 +1153,BBC0 1153,BBC0 +1153,BC30 1153,BC30 +1153,BCA0 1153,BCA0 +1153,BD10 1153,BD10 +1153,BD80 1153,BD80 +1153,BDF0 1153,BDF0 +1153,BE60 1153,BE60 +1153,BED0 1153,BED0 +1153,BF40 1153,BF40 +1153,BFB0 1153,BFB0 +1153,C020 1153,C020 +1153,C090 1153,C090 +1153,C100 1153,C100 +1153,C170 1153,C170 +1153,C1E0 1153,C1E0 +1153,C250 1153,C250 +1153,C2C0 1153,C2C0 +1153,C330 1153,C330 +1153,C3A0 1153,C3A0 +1153,C410 1153,C410 +1153,C480 1153,C480 +1153,C4F0 1153,C4F0 +1153,C560 1153,C560 +1153,C5D0 1153,C5D0 +1153,C640 1153,C640 +1153,C6B0 1153,C6B0 +1153,C720 1153,C720 +1153,C790 1153,C790 +1153,C800 1153,C800 +1153,C870 1153,C870 +1153,C8E0 1153,C8E0 +1153,C950 1153,C950 +1153,C9C0 1153,C9C0 +1153,CA30 1153,CA30 +1153,CAA0 1153,CAA0 +1153,CB10 1153,CB10 +1153,CB80 1153,CB80 +1153,CBF0 1153,CBF0 +1153,CC60 1153,CC60 +1153,CCD0 1153,CCD0 +1153,CD40 1153,CD40 +1153,CDB0 1153,CDB0 +1153,CE20 1153,CE20 +1153,CE90 1153,CE90 +1153,CF00 1153,CF00 +1153,CF70 1153,CF70 +1153,CFE0 1153,CFE0 +1153,D050 1153,D050 +1153,D0C0 1153,D0C0 +1153,D130 1153,D130 +1153,D1A0 1153,D1A0 +1153,D210 1153,D210 +1153,D280 1153,D280 +1153,D2F0 1153,D2F0 +1153,D360 1153,D360 +1153,D3D0 1153,D3D0 +1153,D440 1153,D440 +1153,D4B0 1153,D4B0 +1153,D520 1153,D520 +1153,D590 1153,D590 +1153,D600 1153,D600 +1153,D670 1153,D670 +1153,D6E0 1153,D6E0 +1153,D750 1153,D750 +1154,AC00 1154,AC00 +1154,AC70 1154,AC70 +1154,ACE0 1154,ACE0 +1154,AD50 1154,AD50 +1154,ADC0 1154,ADC0 +1154,AE30 1154,AE30 +1154,AEA0 1154,AEA0 +1154,AF10 1154,AF10 +1154,AF80 1154,AF80 +1154,AFF0 1154,AFF0 +1154,B060 1154,B060 +1154,B0D0 1154,B0D0 +1154,B140 1154,B140 +1154,B1B0 1154,B1B0 +1154,B220 1154,B220 +1154,B290 1154,B290 +1154,B300 1154,B300 +1154,B370 1154,B370 +1154,B3E0 1154,B3E0 +1154,B450 1154,B450 +1154,B4C0 1154,B4C0 +1154,B530 1154,B530 +1154,B5A0 1154,B5A0 +1154,B610 1154,B610 +1154,B680 1154,B680 +1154,B6F0 1154,B6F0 +1154,B760 1154,B760 +1154,B7D0 1154,B7D0 +1154,B840 1154,B840 +1154,B8B0 1154,B8B0 +1154,B920 1154,B920 +1154,B990 1154,B990 +1154,BA00 1154,BA00 +1154,BA70 1154,BA70 +1154,BAE0 1154,BAE0 +1154,BB50 1154,BB50 +1154,BBC0 1154,BBC0 +1154,BC30 1154,BC30 +1154,BCA0 1154,BCA0 +1154,BD10 1154,BD10 +1154,BD80 1154,BD80 +1154,BDF0 1154,BDF0 +1154,BE60 1154,BE60 +1154,BED0 1154,BED0 +1154,BF40 1154,BF40 +1154,BFB0 1154,BFB0 +1154,C020 1154,C020 +1154,C090 1154,C090 +1154,C100 1154,C100 +1154,C170 1154,C170 +1154,C1E0 1154,C1E0 +1154,C250 1154,C250 +1154,C2C0 1154,C2C0 +1154,C330 1154,C330 +1154,C3A0 1154,C3A0 +1154,C410 1154,C410 +1154,C480 1154,C480 +1154,C4F0 1154,C4F0 +1154,C560 1154,C560 +1154,C5D0 1154,C5D0 +1154,C640 1154,C640 +1154,C6B0 1154,C6B0 +1154,C720 1154,C720 +1154,C790 1154,C790 +1154,C800 1154,C800 +1154,C870 1154,C870 +1154,C8E0 1154,C8E0 +1154,C950 1154,C950 +1154,C9C0 1154,C9C0 +1154,CA30 1154,CA30 +1154,CAA0 1154,CAA0 +1154,CB10 1154,CB10 +1154,CB80 1154,CB80 +1154,CBF0 1154,CBF0 +1154,CC60 1154,CC60 +1154,CCD0 1154,CCD0 +1154,CD40 1154,CD40 +1154,CDB0 1154,CDB0 +1154,CE20 1154,CE20 +1154,CE90 1154,CE90 +1154,CF00 1154,CF00 +1154,CF70 1154,CF70 +1154,CFE0 1154,CFE0 +1154,D050 1154,D050 +1154,D0C0 1154,D0C0 +1154,D130 1154,D130 +1154,D1A0 1154,D1A0 +1154,D210 1154,D210 +1154,D280 1154,D280 +1154,D2F0 1154,D2F0 +1154,D360 1154,D360 +1154,D3D0 1154,D3D0 +1154,D440 1154,D440 +1154,D4B0 1154,D4B0 +1154,D520 1154,D520 +1154,D590 1154,D590 +1154,D600 1154,D600 +1154,D670 1154,D670 +1154,D6E0 1154,D6E0 +1154,D750 1154,D750 +1155,AC00 1155,AC00 +1155,AC70 1155,AC70 +1155,ACE0 1155,ACE0 +1155,AD50 1155,AD50 +1155,ADC0 1155,ADC0 +1155,AE30 1155,AE30 +1155,AEA0 1155,AEA0 +1155,AF10 1155,AF10 +1155,AF80 1155,AF80 +1155,AFF0 1155,AFF0 +1155,B060 1155,B060 +1155,B0D0 1155,B0D0 +1155,B140 1155,B140 +1155,B1B0 1155,B1B0 +1155,B220 1155,B220 +1155,B290 1155,B290 +1155,B300 1155,B300 +1155,B370 1155,B370 +1155,B3E0 1155,B3E0 +1155,B450 1155,B450 +1155,B4C0 1155,B4C0 +1155,B530 1155,B530 +1155,B5A0 1155,B5A0 +1155,B610 1155,B610 +1155,B680 1155,B680 +1155,B6F0 1155,B6F0 +1155,B760 1155,B760 +1155,B7D0 1155,B7D0 +1155,B840 1155,B840 +1155,B8B0 1155,B8B0 +1155,B920 1155,B920 +1155,B990 1155,B990 +1155,BA00 1155,BA00 +1155,BA70 1155,BA70 +1155,BAE0 1155,BAE0 +1155,BB50 1155,BB50 +1155,BBC0 1155,BBC0 +1155,BC30 1155,BC30 +1155,BCA0 1155,BCA0 +1155,BD10 1155,BD10 +1155,BD80 1155,BD80 +1155,BDF0 1155,BDF0 +1155,BE60 1155,BE60 +1155,BED0 1155,BED0 +1155,BF40 1155,BF40 +1155,BFB0 1155,BFB0 +1155,C020 1155,C020 +1155,C090 1155,C090 +1155,C100 1155,C100 +1155,C170 1155,C170 +1155,C1E0 1155,C1E0 +1155,C250 1155,C250 +1155,C2C0 1155,C2C0 +1155,C330 1155,C330 +1155,C3A0 1155,C3A0 +1155,C410 1155,C410 +1155,C480 1155,C480 +1155,C4F0 1155,C4F0 +1155,C560 1155,C560 +1155,C5D0 1155,C5D0 +1155,C640 1155,C640 +1155,C6B0 1155,C6B0 +1155,C720 1155,C720 +1155,C790 1155,C790 +1155,C800 1155,C800 +1155,C870 1155,C870 +1155,C8E0 1155,C8E0 +1155,C950 1155,C950 +1155,C9C0 1155,C9C0 +1155,CA30 1155,CA30 +1155,CAA0 1155,CAA0 +1155,CB10 1155,CB10 +1155,CB80 1155,CB80 +1155,CBF0 1155,CBF0 +1155,CC60 1155,CC60 +1155,CCD0 1155,CCD0 +1155,CD40 1155,CD40 +1155,CDB0 1155,CDB0 +1155,CE20 1155,CE20 +1155,CE90 1155,CE90 +1155,CF00 1155,CF00 +1155,CF70 1155,CF70 +1155,CFE0 1155,CFE0 +1155,D050 1155,D050 +1155,D0C0 1155,D0C0 +1155,D130 1155,D130 +1155,D1A0 1155,D1A0 +1155,D210 1155,D210 +1155,D280 1155,D280 +1155,D2F0 1155,D2F0 +1155,D360 1155,D360 +1155,D3D0 1155,D3D0 +1155,D440 1155,D440 +1155,D4B0 1155,D4B0 +1155,D520 1155,D520 +1155,D590 1155,D590 +1155,D600 1155,D600 +1155,D670 1155,D670 +1155,D6E0 1155,D6E0 +1155,D750 1155,D750 +1156,AC00 1156,AC00 +1156,AC70 1156,AC70 +1156,ACE0 1156,ACE0 +1156,AD50 1156,AD50 +1156,ADC0 1156,ADC0 +1156,AE30 1156,AE30 +1156,AEA0 1156,AEA0 +1156,AF10 1156,AF10 +1156,AF80 1156,AF80 +1156,AFF0 1156,AFF0 +1156,B060 1156,B060 +1156,B0D0 1156,B0D0 +1156,B140 1156,B140 +1156,B1B0 1156,B1B0 +1156,B220 1156,B220 +1156,B290 1156,B290 +1156,B300 1156,B300 +1156,B370 1156,B370 +1156,B3E0 1156,B3E0 +1156,B450 1156,B450 +1156,B4C0 1156,B4C0 +1156,B530 1156,B530 +1156,B5A0 1156,B5A0 +1156,B610 1156,B610 +1156,B680 1156,B680 +1156,B6F0 1156,B6F0 +1156,B760 1156,B760 +1156,B7D0 1156,B7D0 +1156,B840 1156,B840 +1156,B8B0 1156,B8B0 +1156,B920 1156,B920 +1156,B990 1156,B990 +1156,BA00 1156,BA00 +1156,BA70 1156,BA70 +1156,BAE0 1156,BAE0 +1156,BB50 1156,BB50 +1156,BBC0 1156,BBC0 +1156,BC30 1156,BC30 +1156,BCA0 1156,BCA0 +1156,BD10 1156,BD10 +1156,BD80 1156,BD80 +1156,BDF0 1156,BDF0 +1156,BE60 1156,BE60 +1156,BED0 1156,BED0 +1156,BF40 1156,BF40 +1156,BFB0 1156,BFB0 +1156,C020 1156,C020 +1156,C090 1156,C090 +1156,C100 1156,C100 +1156,C170 1156,C170 +1156,C1E0 1156,C1E0 +1156,C250 1156,C250 +1156,C2C0 1156,C2C0 +1156,C330 1156,C330 +1156,C3A0 1156,C3A0 +1156,C410 1156,C410 +1156,C480 1156,C480 +1156,C4F0 1156,C4F0 +1156,C560 1156,C560 +1156,C5D0 1156,C5D0 +1156,C640 1156,C640 +1156,C6B0 1156,C6B0 +1156,C720 1156,C720 +1156,C790 1156,C790 +1156,C800 1156,C800 +1156,C870 1156,C870 +1156,C8E0 1156,C8E0 +1156,C950 1156,C950 +1156,C9C0 1156,C9C0 +1156,CA30 1156,CA30 +1156,CAA0 1156,CAA0 +1156,CB10 1156,CB10 +1156,CB80 1156,CB80 +1156,CBF0 1156,CBF0 +1156,CC60 1156,CC60 +1156,CCD0 1156,CCD0 +1156,CD40 1156,CD40 +1156,CDB0 1156,CDB0 +1156,CE20 1156,CE20 +1156,CE90 1156,CE90 +1156,CF00 1156,CF00 +1156,CF70 1156,CF70 +1156,CFE0 1156,CFE0 +1156,D050 1156,D050 +1156,D0C0 1156,D0C0 +1156,D130 1156,D130 +1156,D1A0 1156,D1A0 +1156,D210 1156,D210 +1156,D280 1156,D280 +1156,D2F0 1156,D2F0 +1156,D360 1156,D360 +1156,D3D0 1156,D3D0 +1156,D440 1156,D440 +1156,D4B0 1156,D4B0 +1156,D520 1156,D520 +1156,D590 1156,D590 +1156,D600 1156,D600 +1156,D670 1156,D670 +1156,D6E0 1156,D6E0 +1156,D750 1156,D750 +1157,AC00 1157,AC00 +1157,AC70 1157,AC70 +1157,ACE0 1157,ACE0 +1157,AD50 1157,AD50 +1157,ADC0 1157,ADC0 +1157,AE30 1157,AE30 +1157,AEA0 1157,AEA0 +1157,AF10 1157,AF10 +1157,AF80 1157,AF80 +1157,AFF0 1157,AFF0 +1157,B060 1157,B060 +1157,B0D0 1157,B0D0 +1157,B140 1157,B140 +1157,B1B0 1157,B1B0 +1157,B220 1157,B220 +1157,B290 1157,B290 +1157,B300 1157,B300 +1157,B370 1157,B370 +1157,B3E0 1157,B3E0 +1157,B450 1157,B450 +1157,B4C0 1157,B4C0 +1157,B530 1157,B530 +1157,B5A0 1157,B5A0 +1157,B610 1157,B610 +1157,B680 1157,B680 +1157,B6F0 1157,B6F0 +1157,B760 1157,B760 +1157,B7D0 1157,B7D0 +1157,B840 1157,B840 +1157,B8B0 1157,B8B0 +1157,B920 1157,B920 +1157,B990 1157,B990 +1157,BA00 1157,BA00 +1157,BA70 1157,BA70 +1157,BAE0 1157,BAE0 +1157,BB50 1157,BB50 +1157,BBC0 1157,BBC0 +1157,BC30 1157,BC30 +1157,BCA0 1157,BCA0 +1157,BD10 1157,BD10 +1157,BD80 1157,BD80 +1157,BDF0 1157,BDF0 +1157,BE60 1157,BE60 +1157,BED0 1157,BED0 +1157,BF40 1157,BF40 +1157,BFB0 1157,BFB0 +1157,C020 1157,C020 +1157,C090 1157,C090 +1157,C100 1157,C100 +1157,C170 1157,C170 +1157,C1E0 1157,C1E0 +1157,C250 1157,C250 +1157,C2C0 1157,C2C0 +1157,C330 1157,C330 +1157,C3A0 1157,C3A0 +1157,C410 1157,C410 +1157,C480 1157,C480 +1157,C4F0 1157,C4F0 +1157,C560 1157,C560 +1157,C5D0 1157,C5D0 +1157,C640 1157,C640 +1157,C6B0 1157,C6B0 +1157,C720 1157,C720 +1157,C790 1157,C790 +1157,C800 1157,C800 +1157,C870 1157,C870 +1157,C8E0 1157,C8E0 +1157,C950 1157,C950 +1157,C9C0 1157,C9C0 +1157,CA30 1157,CA30 +1157,CAA0 1157,CAA0 +1157,CB10 1157,CB10 +1157,CB80 1157,CB80 +1157,CBF0 1157,CBF0 +1157,CC60 1157,CC60 +1157,CCD0 1157,CCD0 +1157,CD40 1157,CD40 +1157,CDB0 1157,CDB0 +1157,CE20 1157,CE20 +1157,CE90 1157,CE90 +1157,CF00 1157,CF00 +1157,CF70 1157,CF70 +1157,CFE0 1157,CFE0 +1157,D050 1157,D050 +1157,D0C0 1157,D0C0 +1157,D130 1157,D130 +1157,D1A0 1157,D1A0 +1157,D210 1157,D210 +1157,D280 1157,D280 +1157,D2F0 1157,D2F0 +1157,D360 1157,D360 +1157,D3D0 1157,D3D0 +1157,D440 1157,D440 +1157,D4B0 1157,D4B0 +1157,D520 1157,D520 +1157,D590 1157,D590 +1157,D600 1157,D600 +1157,D670 1157,D670 +1157,D6E0 1157,D6E0 +1157,D750 1157,D750 +1158,AC00 1158,AC00 +1158,AC70 1158,AC70 +1158,ACE0 1158,ACE0 +1158,AD50 1158,AD50 +1158,ADC0 1158,ADC0 +1158,AE30 1158,AE30 +1158,AEA0 1158,AEA0 +1158,AF10 1158,AF10 +1158,AF80 1158,AF80 +1158,AFF0 1158,AFF0 +1158,B060 1158,B060 +1158,B0D0 1158,B0D0 +1158,B140 1158,B140 +1158,B1B0 1158,B1B0 +1158,B220 1158,B220 +1158,B290 1158,B290 +1158,B300 1158,B300 +1158,B370 1158,B370 +1158,B3E0 1158,B3E0 +1158,B450 1158,B450 +1158,B4C0 1158,B4C0 +1158,B530 1158,B530 +1158,B5A0 1158,B5A0 +1158,B610 1158,B610 +1158,B680 1158,B680 +1158,B6F0 1158,B6F0 +1158,B760 1158,B760 +1158,B7D0 1158,B7D0 +1158,B840 1158,B840 +1158,B8B0 1158,B8B0 +1158,B920 1158,B920 +1158,B990 1158,B990 +1158,BA00 1158,BA00 +1158,BA70 1158,BA70 +1158,BAE0 1158,BAE0 +1158,BB50 1158,BB50 +1158,BBC0 1158,BBC0 +1158,BC30 1158,BC30 +1158,BCA0 1158,BCA0 +1158,BD10 1158,BD10 +1158,BD80 1158,BD80 +1158,BDF0 1158,BDF0 +1158,BE60 1158,BE60 +1158,BED0 1158,BED0 +1158,BF40 1158,BF40 +1158,BFB0 1158,BFB0 +1158,C020 1158,C020 +1158,C090 1158,C090 +1158,C100 1158,C100 +1158,C170 1158,C170 +1158,C1E0 1158,C1E0 +1158,C250 1158,C250 +1158,C2C0 1158,C2C0 +1158,C330 1158,C330 +1158,C3A0 1158,C3A0 +1158,C410 1158,C410 +1158,C480 1158,C480 +1158,C4F0 1158,C4F0 +1158,C560 1158,C560 +1158,C5D0 1158,C5D0 +1158,C640 1158,C640 +1158,C6B0 1158,C6B0 +1158,C720 1158,C720 +1158,C790 1158,C790 +1158,C800 1158,C800 +1158,C870 1158,C870 +1158,C8E0 1158,C8E0 +1158,C950 1158,C950 +1158,C9C0 1158,C9C0 +1158,CA30 1158,CA30 +1158,CAA0 1158,CAA0 +1158,CB10 1158,CB10 +1158,CB80 1158,CB80 +1158,CBF0 1158,CBF0 +1158,CC60 1158,CC60 +1158,CCD0 1158,CCD0 +1158,CD40 1158,CD40 +1158,CDB0 1158,CDB0 +1158,CE20 1158,CE20 +1158,CE90 1158,CE90 +1158,CF00 1158,CF00 +1158,CF70 1158,CF70 +1158,CFE0 1158,CFE0 +1158,D050 1158,D050 +1158,D0C0 1158,D0C0 +1158,D130 1158,D130 +1158,D1A0 1158,D1A0 +1158,D210 1158,D210 +1158,D280 1158,D280 +1158,D2F0 1158,D2F0 +1158,D360 1158,D360 +1158,D3D0 1158,D3D0 +1158,D440 1158,D440 +1158,D4B0 1158,D4B0 +1158,D520 1158,D520 +1158,D590 1158,D590 +1158,D600 1158,D600 +1158,D670 1158,D670 +1158,D6E0 1158,D6E0 +1158,D750 1158,D750 +1159,AC00 1159,AC00 +1159,AC70 1159,AC70 +1159,ACE0 1159,ACE0 +1159,AD50 1159,AD50 +1159,ADC0 1159,ADC0 +1159,AE30 1159,AE30 +1159,AEA0 1159,AEA0 +1159,AF10 1159,AF10 +1159,AF80 1159,AF80 +1159,AFF0 1159,AFF0 +1159,B060 1159,B060 +1159,B0D0 1159,B0D0 +1159,B140 1159,B140 +1159,B1B0 1159,B1B0 +1159,B220 1159,B220 +1159,B290 1159,B290 +1159,B300 1159,B300 +1159,B370 1159,B370 +1159,B3E0 1159,B3E0 +1159,B450 1159,B450 +1159,B4C0 1159,B4C0 +1159,B530 1159,B530 +1159,B5A0 1159,B5A0 +1159,B610 1159,B610 +1159,B680 1159,B680 +1159,B6F0 1159,B6F0 +1159,B760 1159,B760 +1159,B7D0 1159,B7D0 +1159,B840 1159,B840 +1159,B8B0 1159,B8B0 +1159,B920 1159,B920 +1159,B990 1159,B990 +1159,BA00 1159,BA00 +1159,BA70 1159,BA70 +1159,BAE0 1159,BAE0 +1159,BB50 1159,BB50 +1159,BBC0 1159,BBC0 +1159,BC30 1159,BC30 +1159,BCA0 1159,BCA0 +1159,BD10 1159,BD10 +1159,BD80 1159,BD80 +1159,BDF0 1159,BDF0 +1159,BE60 1159,BE60 +1159,BED0 1159,BED0 +1159,BF40 1159,BF40 +1159,BFB0 1159,BFB0 +1159,C020 1159,C020 +1159,C090 1159,C090 +1159,C100 1159,C100 +1159,C170 1159,C170 +1159,C1E0 1159,C1E0 +1159,C250 1159,C250 +1159,C2C0 1159,C2C0 +1159,C330 1159,C330 +1159,C3A0 1159,C3A0 +1159,C410 1159,C410 +1159,C480 1159,C480 +1159,C4F0 1159,C4F0 +1159,C560 1159,C560 +1159,C5D0 1159,C5D0 +1159,C640 1159,C640 +1159,C6B0 1159,C6B0 +1159,C720 1159,C720 +1159,C790 1159,C790 +1159,C800 1159,C800 +1159,C870 1159,C870 +1159,C8E0 1159,C8E0 +1159,C950 1159,C950 +1159,C9C0 1159,C9C0 +1159,CA30 1159,CA30 +1159,CAA0 1159,CAA0 +1159,CB10 1159,CB10 +1159,CB80 1159,CB80 +1159,CBF0 1159,CBF0 +1159,CC60 1159,CC60 +1159,CCD0 1159,CCD0 +1159,CD40 1159,CD40 +1159,CDB0 1159,CDB0 +1159,CE20 1159,CE20 +1159,CE90 1159,CE90 +1159,CF00 1159,CF00 +1159,CF70 1159,CF70 +1159,CFE0 1159,CFE0 +1159,D050 1159,D050 +1159,D0C0 1159,D0C0 +1159,D130 1159,D130 +1159,D1A0 1159,D1A0 +1159,D210 1159,D210 +1159,D280 1159,D280 +1159,D2F0 1159,D2F0 +1159,D360 1159,D360 +1159,D3D0 1159,D3D0 +1159,D440 1159,D440 +1159,D4B0 1159,D4B0 +1159,D520 1159,D520 +1159,D590 1159,D590 +1159,D600 1159,D600 +1159,D670 1159,D670 +1159,D6E0 1159,D6E0 +1159,D750 1159,D750 +115A,AC00 115A,AC00 +115A,AC70 115A,AC70 +115A,ACE0 115A,ACE0 +115A,AD50 115A,AD50 +115A,ADC0 115A,ADC0 +115A,AE30 115A,AE30 +115A,AEA0 115A,AEA0 +115A,AF10 115A,AF10 +115A,AF80 115A,AF80 +115A,AFF0 115A,AFF0 +115A,B060 115A,B060 +115A,B0D0 115A,B0D0 +115A,B140 115A,B140 +115A,B1B0 115A,B1B0 +115A,B220 115A,B220 +115A,B290 115A,B290 +115A,B300 115A,B300 +115A,B370 115A,B370 +115A,B3E0 115A,B3E0 +115A,B450 115A,B450 +115A,B4C0 115A,B4C0 +115A,B530 115A,B530 +115A,B5A0 115A,B5A0 +115A,B610 115A,B610 +115A,B680 115A,B680 +115A,B6F0 115A,B6F0 +115A,B760 115A,B760 +115A,B7D0 115A,B7D0 +115A,B840 115A,B840 +115A,B8B0 115A,B8B0 +115A,B920 115A,B920 +115A,B990 115A,B990 +115A,BA00 115A,BA00 +115A,BA70 115A,BA70 +115A,BAE0 115A,BAE0 +115A,BB50 115A,BB50 +115A,BBC0 115A,BBC0 +115A,BC30 115A,BC30 +115A,BCA0 115A,BCA0 +115A,BD10 115A,BD10 +115A,BD80 115A,BD80 +115A,BDF0 115A,BDF0 +115A,BE60 115A,BE60 +115A,BED0 115A,BED0 +115A,BF40 115A,BF40 +115A,BFB0 115A,BFB0 +115A,C020 115A,C020 +115A,C090 115A,C090 +115A,C100 115A,C100 +115A,C170 115A,C170 +115A,C1E0 115A,C1E0 +115A,C250 115A,C250 +115A,C2C0 115A,C2C0 +115A,C330 115A,C330 +115A,C3A0 115A,C3A0 +115A,C410 115A,C410 +115A,C480 115A,C480 +115A,C4F0 115A,C4F0 +115A,C560 115A,C560 +115A,C5D0 115A,C5D0 +115A,C640 115A,C640 +115A,C6B0 115A,C6B0 +115A,C720 115A,C720 +115A,C790 115A,C790 +115A,C800 115A,C800 +115A,C870 115A,C870 +115A,C8E0 115A,C8E0 +115A,C950 115A,C950 +115A,C9C0 115A,C9C0 +115A,CA30 115A,CA30 +115A,CAA0 115A,CAA0 +115A,CB10 115A,CB10 +115A,CB80 115A,CB80 +115A,CBF0 115A,CBF0 +115A,CC60 115A,CC60 +115A,CCD0 115A,CCD0 +115A,CD40 115A,CD40 +115A,CDB0 115A,CDB0 +115A,CE20 115A,CE20 +115A,CE90 115A,CE90 +115A,CF00 115A,CF00 +115A,CF70 115A,CF70 +115A,CFE0 115A,CFE0 +115A,D050 115A,D050 +115A,D0C0 115A,D0C0 +115A,D130 115A,D130 +115A,D1A0 115A,D1A0 +115A,D210 115A,D210 +115A,D280 115A,D280 +115A,D2F0 115A,D2F0 +115A,D360 115A,D360 +115A,D3D0 115A,D3D0 +115A,D440 115A,D440 +115A,D4B0 115A,D4B0 +115A,D520 115A,D520 +115A,D590 115A,D590 +115A,D600 115A,D600 +115A,D670 115A,D670 +115A,D6E0 115A,D6E0 +115A,D750 115A,D750 +115B,AC00 115B,AC00 +115B,AC70 115B,AC70 +115B,ACE0 115B,ACE0 +115B,AD50 115B,AD50 +115B,ADC0 115B,ADC0 +115B,AE30 115B,AE30 +115B,AEA0 115B,AEA0 +115B,AF10 115B,AF10 +115B,AF80 115B,AF80 +115B,AFF0 115B,AFF0 +115B,B060 115B,B060 +115B,B0D0 115B,B0D0 +115B,B140 115B,B140 +115B,B1B0 115B,B1B0 +115B,B220 115B,B220 +115B,B290 115B,B290 +115B,B300 115B,B300 +115B,B370 115B,B370 +115B,B3E0 115B,B3E0 +115B,B450 115B,B450 +115B,B4C0 115B,B4C0 +115B,B530 115B,B530 +115B,B5A0 115B,B5A0 +115B,B610 115B,B610 +115B,B680 115B,B680 +115B,B6F0 115B,B6F0 +115B,B760 115B,B760 +115B,B7D0 115B,B7D0 +115B,B840 115B,B840 +115B,B8B0 115B,B8B0 +115B,B920 115B,B920 +115B,B990 115B,B990 +115B,BA00 115B,BA00 +115B,BA70 115B,BA70 +115B,BAE0 115B,BAE0 +115B,BB50 115B,BB50 +115B,BBC0 115B,BBC0 +115B,BC30 115B,BC30 +115B,BCA0 115B,BCA0 +115B,BD10 115B,BD10 +115B,BD80 115B,BD80 +115B,BDF0 115B,BDF0 +115B,BE60 115B,BE60 +115B,BED0 115B,BED0 +115B,BF40 115B,BF40 +115B,BFB0 115B,BFB0 +115B,C020 115B,C020 +115B,C090 115B,C090 +115B,C100 115B,C100 +115B,C170 115B,C170 +115B,C1E0 115B,C1E0 +115B,C250 115B,C250 +115B,C2C0 115B,C2C0 +115B,C330 115B,C330 +115B,C3A0 115B,C3A0 +115B,C410 115B,C410 +115B,C480 115B,C480 +115B,C4F0 115B,C4F0 +115B,C560 115B,C560 +115B,C5D0 115B,C5D0 +115B,C640 115B,C640 +115B,C6B0 115B,C6B0 +115B,C720 115B,C720 +115B,C790 115B,C790 +115B,C800 115B,C800 +115B,C870 115B,C870 +115B,C8E0 115B,C8E0 +115B,C950 115B,C950 +115B,C9C0 115B,C9C0 +115B,CA30 115B,CA30 +115B,CAA0 115B,CAA0 +115B,CB10 115B,CB10 +115B,CB80 115B,CB80 +115B,CBF0 115B,CBF0 +115B,CC60 115B,CC60 +115B,CCD0 115B,CCD0 +115B,CD40 115B,CD40 +115B,CDB0 115B,CDB0 +115B,CE20 115B,CE20 +115B,CE90 115B,CE90 +115B,CF00 115B,CF00 +115B,CF70 115B,CF70 +115B,CFE0 115B,CFE0 +115B,D050 115B,D050 +115B,D0C0 115B,D0C0 +115B,D130 115B,D130 +115B,D1A0 115B,D1A0 +115B,D210 115B,D210 +115B,D280 115B,D280 +115B,D2F0 115B,D2F0 +115B,D360 115B,D360 +115B,D3D0 115B,D3D0 +115B,D440 115B,D440 +115B,D4B0 115B,D4B0 +115B,D520 115B,D520 +115B,D590 115B,D590 +115B,D600 115B,D600 +115B,D670 115B,D670 +115B,D6E0 115B,D6E0 +115B,D750 115B,D750 +115C,AC00 115C,AC00 +115C,AC70 115C,AC70 +115C,ACE0 115C,ACE0 +115C,AD50 115C,AD50 +115C,ADC0 115C,ADC0 +115C,AE30 115C,AE30 +115C,AEA0 115C,AEA0 +115C,AF10 115C,AF10 +115C,AF80 115C,AF80 +115C,AFF0 115C,AFF0 +115C,B060 115C,B060 +115C,B0D0 115C,B0D0 +115C,B140 115C,B140 +115C,B1B0 115C,B1B0 +115C,B220 115C,B220 +115C,B290 115C,B290 +115C,B300 115C,B300 +115C,B370 115C,B370 +115C,B3E0 115C,B3E0 +115C,B450 115C,B450 +115C,B4C0 115C,B4C0 +115C,B530 115C,B530 +115C,B5A0 115C,B5A0 +115C,B610 115C,B610 +115C,B680 115C,B680 +115C,B6F0 115C,B6F0 +115C,B760 115C,B760 +115C,B7D0 115C,B7D0 +115C,B840 115C,B840 +115C,B8B0 115C,B8B0 +115C,B920 115C,B920 +115C,B990 115C,B990 +115C,BA00 115C,BA00 +115C,BA70 115C,BA70 +115C,BAE0 115C,BAE0 +115C,BB50 115C,BB50 +115C,BBC0 115C,BBC0 +115C,BC30 115C,BC30 +115C,BCA0 115C,BCA0 +115C,BD10 115C,BD10 +115C,BD80 115C,BD80 +115C,BDF0 115C,BDF0 +115C,BE60 115C,BE60 +115C,BED0 115C,BED0 +115C,BF40 115C,BF40 +115C,BFB0 115C,BFB0 +115C,C020 115C,C020 +115C,C090 115C,C090 +115C,C100 115C,C100 +115C,C170 115C,C170 +115C,C1E0 115C,C1E0 +115C,C250 115C,C250 +115C,C2C0 115C,C2C0 +115C,C330 115C,C330 +115C,C3A0 115C,C3A0 +115C,C410 115C,C410 +115C,C480 115C,C480 +115C,C4F0 115C,C4F0 +115C,C560 115C,C560 +115C,C5D0 115C,C5D0 +115C,C640 115C,C640 +115C,C6B0 115C,C6B0 +115C,C720 115C,C720 +115C,C790 115C,C790 +115C,C800 115C,C800 +115C,C870 115C,C870 +115C,C8E0 115C,C8E0 +115C,C950 115C,C950 +115C,C9C0 115C,C9C0 +115C,CA30 115C,CA30 +115C,CAA0 115C,CAA0 +115C,CB10 115C,CB10 +115C,CB80 115C,CB80 +115C,CBF0 115C,CBF0 +115C,CC60 115C,CC60 +115C,CCD0 115C,CCD0 +115C,CD40 115C,CD40 +115C,CDB0 115C,CDB0 +115C,CE20 115C,CE20 +115C,CE90 115C,CE90 +115C,CF00 115C,CF00 +115C,CF70 115C,CF70 +115C,CFE0 115C,CFE0 +115C,D050 115C,D050 +115C,D0C0 115C,D0C0 +115C,D130 115C,D130 +115C,D1A0 115C,D1A0 +115C,D210 115C,D210 +115C,D280 115C,D280 +115C,D2F0 115C,D2F0 +115C,D360 115C,D360 +115C,D3D0 115C,D3D0 +115C,D440 115C,D440 +115C,D4B0 115C,D4B0 +115C,D520 115C,D520 +115C,D590 115C,D590 +115C,D600 115C,D600 +115C,D670 115C,D670 +115C,D6E0 115C,D6E0 +115C,D750 115C,D750 +115D,AC00 115D,AC00 +115D,AC70 115D,AC70 +115D,ACE0 115D,ACE0 +115D,AD50 115D,AD50 +115D,ADC0 115D,ADC0 +115D,AE30 115D,AE30 +115D,AEA0 115D,AEA0 +115D,AF10 115D,AF10 +115D,AF80 115D,AF80 +115D,AFF0 115D,AFF0 +115D,B060 115D,B060 +115D,B0D0 115D,B0D0 +115D,B140 115D,B140 +115D,B1B0 115D,B1B0 +115D,B220 115D,B220 +115D,B290 115D,B290 +115D,B300 115D,B300 +115D,B370 115D,B370 +115D,B3E0 115D,B3E0 +115D,B450 115D,B450 +115D,B4C0 115D,B4C0 +115D,B530 115D,B530 +115D,B5A0 115D,B5A0 +115D,B610 115D,B610 +115D,B680 115D,B680 +115D,B6F0 115D,B6F0 +115D,B760 115D,B760 +115D,B7D0 115D,B7D0 +115D,B840 115D,B840 +115D,B8B0 115D,B8B0 +115D,B920 115D,B920 +115D,B990 115D,B990 +115D,BA00 115D,BA00 +115D,BA70 115D,BA70 +115D,BAE0 115D,BAE0 +115D,BB50 115D,BB50 +115D,BBC0 115D,BBC0 +115D,BC30 115D,BC30 +115D,BCA0 115D,BCA0 +115D,BD10 115D,BD10 +115D,BD80 115D,BD80 +115D,BDF0 115D,BDF0 +115D,BE60 115D,BE60 +115D,BED0 115D,BED0 +115D,BF40 115D,BF40 +115D,BFB0 115D,BFB0 +115D,C020 115D,C020 +115D,C090 115D,C090 +115D,C100 115D,C100 +115D,C170 115D,C170 +115D,C1E0 115D,C1E0 +115D,C250 115D,C250 +115D,C2C0 115D,C2C0 +115D,C330 115D,C330 +115D,C3A0 115D,C3A0 +115D,C410 115D,C410 +115D,C480 115D,C480 +115D,C4F0 115D,C4F0 +115D,C560 115D,C560 +115D,C5D0 115D,C5D0 +115D,C640 115D,C640 +115D,C6B0 115D,C6B0 +115D,C720 115D,C720 +115D,C790 115D,C790 +115D,C800 115D,C800 +115D,C870 115D,C870 +115D,C8E0 115D,C8E0 +115D,C950 115D,C950 +115D,C9C0 115D,C9C0 +115D,CA30 115D,CA30 +115D,CAA0 115D,CAA0 +115D,CB10 115D,CB10 +115D,CB80 115D,CB80 +115D,CBF0 115D,CBF0 +115D,CC60 115D,CC60 +115D,CCD0 115D,CCD0 +115D,CD40 115D,CD40 +115D,CDB0 115D,CDB0 +115D,CE20 115D,CE20 +115D,CE90 115D,CE90 +115D,CF00 115D,CF00 +115D,CF70 115D,CF70 +115D,CFE0 115D,CFE0 +115D,D050 115D,D050 +115D,D0C0 115D,D0C0 +115D,D130 115D,D130 +115D,D1A0 115D,D1A0 +115D,D210 115D,D210 +115D,D280 115D,D280 +115D,D2F0 115D,D2F0 +115D,D360 115D,D360 +115D,D3D0 115D,D3D0 +115D,D440 115D,D440 +115D,D4B0 115D,D4B0 +115D,D520 115D,D520 +115D,D590 115D,D590 +115D,D600 115D,D600 +115D,D670 115D,D670 +115D,D6E0 115D,D6E0 +115D,D750 115D,D750 +115E,AC00 115E,AC00 +115E,AC70 115E,AC70 +115E,ACE0 115E,ACE0 +115E,AD50 115E,AD50 +115E,ADC0 115E,ADC0 +115E,AE30 115E,AE30 +115E,AEA0 115E,AEA0 +115E,AF10 115E,AF10 +115E,AF80 115E,AF80 +115E,AFF0 115E,AFF0 +115E,B060 115E,B060 +115E,B0D0 115E,B0D0 +115E,B140 115E,B140 +115E,B1B0 115E,B1B0 +115E,B220 115E,B220 +115E,B290 115E,B290 +115E,B300 115E,B300 +115E,B370 115E,B370 +115E,B3E0 115E,B3E0 +115E,B450 115E,B450 +115E,B4C0 115E,B4C0 +115E,B530 115E,B530 +115E,B5A0 115E,B5A0 +115E,B610 115E,B610 +115E,B680 115E,B680 +115E,B6F0 115E,B6F0 +115E,B760 115E,B760 +115E,B7D0 115E,B7D0 +115E,B840 115E,B840 +115E,B8B0 115E,B8B0 +115E,B920 115E,B920 +115E,B990 115E,B990 +115E,BA00 115E,BA00 +115E,BA70 115E,BA70 +115E,BAE0 115E,BAE0 +115E,BB50 115E,BB50 +115E,BBC0 115E,BBC0 +115E,BC30 115E,BC30 +115E,BCA0 115E,BCA0 +115E,BD10 115E,BD10 +115E,BD80 115E,BD80 +115E,BDF0 115E,BDF0 +115E,BE60 115E,BE60 +115E,BED0 115E,BED0 +115E,BF40 115E,BF40 +115E,BFB0 115E,BFB0 +115E,C020 115E,C020 +115E,C090 115E,C090 +115E,C100 115E,C100 +115E,C170 115E,C170 +115E,C1E0 115E,C1E0 +115E,C250 115E,C250 +115E,C2C0 115E,C2C0 +115E,C330 115E,C330 +115E,C3A0 115E,C3A0 +115E,C410 115E,C410 +115E,C480 115E,C480 +115E,C4F0 115E,C4F0 +115E,C560 115E,C560 +115E,C5D0 115E,C5D0 +115E,C640 115E,C640 +115E,C6B0 115E,C6B0 +115E,C720 115E,C720 +115E,C790 115E,C790 +115E,C800 115E,C800 +115E,C870 115E,C870 +115E,C8E0 115E,C8E0 +115E,C950 115E,C950 +115E,C9C0 115E,C9C0 +115E,CA30 115E,CA30 +115E,CAA0 115E,CAA0 +115E,CB10 115E,CB10 +115E,CB80 115E,CB80 +115E,CBF0 115E,CBF0 +115E,CC60 115E,CC60 +115E,CCD0 115E,CCD0 +115E,CD40 115E,CD40 +115E,CDB0 115E,CDB0 +115E,CE20 115E,CE20 +115E,CE90 115E,CE90 +115E,CF00 115E,CF00 +115E,CF70 115E,CF70 +115E,CFE0 115E,CFE0 +115E,D050 115E,D050 +115E,D0C0 115E,D0C0 +115E,D130 115E,D130 +115E,D1A0 115E,D1A0 +115E,D210 115E,D210 +115E,D280 115E,D280 +115E,D2F0 115E,D2F0 +115E,D360 115E,D360 +115E,D3D0 115E,D3D0 +115E,D440 115E,D440 +115E,D4B0 115E,D4B0 +115E,D520 115E,D520 +115E,D590 115E,D590 +115E,D600 115E,D600 +115E,D670 115E,D670 +115E,D6E0 115E,D6E0 +115E,D750 115E,D750 +115F,AC00 115F,AC00 +115F,AC70 115F,AC70 +115F,ACE0 115F,ACE0 +115F,AD50 115F,AD50 +115F,ADC0 115F,ADC0 +115F,AE30 115F,AE30 +115F,AEA0 115F,AEA0 +115F,AF10 115F,AF10 +115F,AF80 115F,AF80 +115F,AFF0 115F,AFF0 +115F,B060 115F,B060 +115F,B0D0 115F,B0D0 +115F,B140 115F,B140 +115F,B1B0 115F,B1B0 +115F,B220 115F,B220 +115F,B290 115F,B290 +115F,B300 115F,B300 +115F,B370 115F,B370 +115F,B3E0 115F,B3E0 +115F,B450 115F,B450 +115F,B4C0 115F,B4C0 +115F,B530 115F,B530 +115F,B5A0 115F,B5A0 +115F,B610 115F,B610 +115F,B680 115F,B680 +115F,B6F0 115F,B6F0 +115F,B760 115F,B760 +115F,B7D0 115F,B7D0 +115F,B840 115F,B840 +115F,B8B0 115F,B8B0 +115F,B920 115F,B920 +115F,B990 115F,B990 +115F,BA00 115F,BA00 +115F,BA70 115F,BA70 +115F,BAE0 115F,BAE0 +115F,BB50 115F,BB50 +115F,BBC0 115F,BBC0 +115F,BC30 115F,BC30 +115F,BCA0 115F,BCA0 +115F,BD10 115F,BD10 +115F,BD80 115F,BD80 +115F,BDF0 115F,BDF0 +115F,BE60 115F,BE60 +115F,BED0 115F,BED0 +115F,BF40 115F,BF40 +115F,BFB0 115F,BFB0 +115F,C020 115F,C020 +115F,C090 115F,C090 +115F,C100 115F,C100 +115F,C170 115F,C170 +115F,C1E0 115F,C1E0 +115F,C250 115F,C250 +115F,C2C0 115F,C2C0 +115F,C330 115F,C330 +115F,C3A0 115F,C3A0 +115F,C410 115F,C410 +115F,C480 115F,C480 +115F,C4F0 115F,C4F0 +115F,C560 115F,C560 +115F,C5D0 115F,C5D0 +115F,C640 115F,C640 +115F,C6B0 115F,C6B0 +115F,C720 115F,C720 +115F,C790 115F,C790 +115F,C800 115F,C800 +115F,C870 115F,C870 +115F,C8E0 115F,C8E0 +115F,C950 115F,C950 +115F,C9C0 115F,C9C0 +115F,CA30 115F,CA30 +115F,CAA0 115F,CAA0 +115F,CB10 115F,CB10 +115F,CB80 115F,CB80 +115F,CBF0 115F,CBF0 +115F,CC60 115F,CC60 +115F,CCD0 115F,CCD0 +115F,CD40 115F,CD40 +115F,CDB0 115F,CDB0 +115F,CE20 115F,CE20 +115F,CE90 115F,CE90 +115F,CF00 115F,CF00 +115F,CF70 115F,CF70 +115F,CFE0 115F,CFE0 +115F,D050 115F,D050 +115F,D0C0 115F,D0C0 +115F,D130 115F,D130 +115F,D1A0 115F,D1A0 +115F,D210 115F,D210 +115F,D280 115F,D280 +115F,D2F0 115F,D2F0 +115F,D360 115F,D360 +115F,D3D0 115F,D3D0 +115F,D440 115F,D440 +115F,D4B0 115F,D4B0 +115F,D520 115F,D520 +115F,D590 115F,D590 +115F,D600 115F,D600 +115F,D670 115F,D670 +115F,D6E0 115F,D6E0 +115F,D750 115F,D750 +1113,AC01 1113,AC01 +1113,AC6D 1113,AC6D +1113,ACDA 1113,ACDA +1113,AD47 1113,AD47 +1113,ADB4 1113,ADB4 +1113,AE21 1113,AE21 +1113,AE8E 1113,AE8E +1113,AEFB 1113,AEFB +1113,AF68 1113,AF68 +1113,AFD5 1113,AFD5 +1113,B041 1113,B041 +1113,B0AE 1113,B0AE +1113,B11B 1113,B11B +1113,B188 1113,B188 +1113,B1F5 1113,B1F5 +1113,B262 1113,B262 +1113,B2CF 1113,B2CF +1113,B33C 1113,B33C +1113,B3A9 1113,B3A9 +1113,B415 1113,B415 +1113,B482 1113,B482 +1113,B4EF 1113,B4EF +1113,B55C 1113,B55C +1113,B5C9 1113,B5C9 +1113,B636 1113,B636 +1113,B6A3 1113,B6A3 +1113,B710 1113,B710 +1113,B77D 1113,B77D +1113,B7E9 1113,B7E9 +1113,B856 1113,B856 +1113,B8C3 1113,B8C3 +1113,B930 1113,B930 +1113,B99D 1113,B99D +1113,BA0A 1113,BA0A +1113,BA77 1113,BA77 +1113,BAE4 1113,BAE4 +1113,BB51 1113,BB51 +1113,BBBD 1113,BBBD +1113,BC2A 1113,BC2A +1113,BC97 1113,BC97 +1113,BD04 1113,BD04 +1113,BD71 1113,BD71 +1113,BDDE 1113,BDDE +1113,BE4B 1113,BE4B +1113,BEB8 1113,BEB8 +1113,BF25 1113,BF25 +1113,BF91 1113,BF91 +1113,BFFE 1113,BFFE +1113,C06B 1113,C06B +1113,C0D8 1113,C0D8 +1113,C145 1113,C145 +1113,C1B2 1113,C1B2 +1113,C21F 1113,C21F +1113,C28C 1113,C28C +1113,C2F9 1113,C2F9 +1113,C365 1113,C365 +1113,C3D2 1113,C3D2 +1113,C43F 1113,C43F +1113,C4AC 1113,C4AC +1113,C519 1113,C519 +1113,C586 1113,C586 +1113,C5F3 1113,C5F3 +1113,C660 1113,C660 +1113,C6CD 1113,C6CD +1113,C739 1113,C739 +1113,C7A6 1113,C7A6 +1113,C813 1113,C813 +1113,C880 1113,C880 +1113,C8ED 1113,C8ED +1113,C95A 1113,C95A +1113,C9C7 1113,C9C7 +1113,CA34 1113,CA34 +1113,CAA1 1113,CAA1 +1113,CB0D 1113,CB0D +1113,CB7A 1113,CB7A +1113,CBE7 1113,CBE7 +1113,CC54 1113,CC54 +1113,CCC1 1113,CCC1 +1113,CD2E 1113,CD2E +1113,CD9B 1113,CD9B +1113,CE08 1113,CE08 +1113,CE75 1113,CE75 +1113,CEE1 1113,CEE1 +1113,CF4E 1113,CF4E +1113,CFBB 1113,CFBB +1113,D028 1113,D028 +1113,D095 1113,D095 +1113,D102 1113,D102 +1113,D16F 1113,D16F +1113,D1DC 1113,D1DC +1113,D249 1113,D249 +1113,D2B5 1113,D2B5 +1113,D322 1113,D322 +1113,D38F 1113,D38F +1113,D3FC 1113,D3FC +1113,D469 1113,D469 +1113,D4D6 1113,D4D6 +1113,D543 1113,D543 +1113,D5B0 1113,D5B0 +1113,D61D 1113,D61D +1113,D689 1113,D689 +1113,D6F6 1113,D6F6 +1113,D763 1113,D763 +1114,AC01 1114,AC01 +1114,AC6D 1114,AC6D +1114,ACDA 1114,ACDA +1114,AD47 1114,AD47 +1114,ADB4 1114,ADB4 +1114,AE21 1114,AE21 +1114,AE8E 1114,AE8E +1114,AEFB 1114,AEFB +1114,AF68 1114,AF68 +1114,AFD5 1114,AFD5 +1114,B041 1114,B041 +1114,B0AE 1114,B0AE +1114,B11B 1114,B11B +1114,B188 1114,B188 +1114,B1F5 1114,B1F5 +1114,B262 1114,B262 +1114,B2CF 1114,B2CF +1114,B33C 1114,B33C +1114,B3A9 1114,B3A9 +1114,B415 1114,B415 +1114,B482 1114,B482 +1114,B4EF 1114,B4EF +1114,B55C 1114,B55C +1114,B5C9 1114,B5C9 +1114,B636 1114,B636 +1114,B6A3 1114,B6A3 +1114,B710 1114,B710 +1114,B77D 1114,B77D +1114,B7E9 1114,B7E9 +1114,B856 1114,B856 +1114,B8C3 1114,B8C3 +1114,B930 1114,B930 +1114,B99D 1114,B99D +1114,BA0A 1114,BA0A +1114,BA77 1114,BA77 +1114,BAE4 1114,BAE4 +1114,BB51 1114,BB51 +1114,BBBD 1114,BBBD +1114,BC2A 1114,BC2A +1114,BC97 1114,BC97 +1114,BD04 1114,BD04 +1114,BD71 1114,BD71 +1114,BDDE 1114,BDDE +1114,BE4B 1114,BE4B +1114,BEB8 1114,BEB8 +1114,BF25 1114,BF25 +1114,BF91 1114,BF91 +1114,BFFE 1114,BFFE +1114,C06B 1114,C06B +1114,C0D8 1114,C0D8 +1114,C145 1114,C145 +1114,C1B2 1114,C1B2 +1114,C21F 1114,C21F +1114,C28C 1114,C28C +1114,C2F9 1114,C2F9 +1114,C365 1114,C365 +1114,C3D2 1114,C3D2 +1114,C43F 1114,C43F +1114,C4AC 1114,C4AC +1114,C519 1114,C519 +1114,C586 1114,C586 +1114,C5F3 1114,C5F3 +1114,C660 1114,C660 +1114,C6CD 1114,C6CD +1114,C739 1114,C739 +1114,C7A6 1114,C7A6 +1114,C813 1114,C813 +1114,C880 1114,C880 +1114,C8ED 1114,C8ED +1114,C95A 1114,C95A +1114,C9C7 1114,C9C7 +1114,CA34 1114,CA34 +1114,CAA1 1114,CAA1 +1114,CB0D 1114,CB0D +1114,CB7A 1114,CB7A +1114,CBE7 1114,CBE7 +1114,CC54 1114,CC54 +1114,CCC1 1114,CCC1 +1114,CD2E 1114,CD2E +1114,CD9B 1114,CD9B +1114,CE08 1114,CE08 +1114,CE75 1114,CE75 +1114,CEE1 1114,CEE1 +1114,CF4E 1114,CF4E +1114,CFBB 1114,CFBB +1114,D028 1114,D028 +1114,D095 1114,D095 +1114,D102 1114,D102 +1114,D16F 1114,D16F +1114,D1DC 1114,D1DC +1114,D249 1114,D249 +1114,D2B5 1114,D2B5 +1114,D322 1114,D322 +1114,D38F 1114,D38F +1114,D3FC 1114,D3FC +1114,D469 1114,D469 +1114,D4D6 1114,D4D6 +1114,D543 1114,D543 +1114,D5B0 1114,D5B0 +1114,D61D 1114,D61D +1114,D689 1114,D689 +1114,D6F6 1114,D6F6 +1114,D763 1114,D763 +1115,AC01 1115,AC01 +1115,AC6D 1115,AC6D +1115,ACDA 1115,ACDA +1115,AD47 1115,AD47 +1115,ADB4 1115,ADB4 +1115,AE21 1115,AE21 +1115,AE8E 1115,AE8E +1115,AEFB 1115,AEFB +1115,AF68 1115,AF68 +1115,AFD5 1115,AFD5 +1115,B041 1115,B041 +1115,B0AE 1115,B0AE +1115,B11B 1115,B11B +1115,B188 1115,B188 +1115,B1F5 1115,B1F5 +1115,B262 1115,B262 +1115,B2CF 1115,B2CF +1115,B33C 1115,B33C +1115,B3A9 1115,B3A9 +1115,B415 1115,B415 +1115,B482 1115,B482 +1115,B4EF 1115,B4EF +1115,B55C 1115,B55C +1115,B5C9 1115,B5C9 +1115,B636 1115,B636 +1115,B6A3 1115,B6A3 +1115,B710 1115,B710 +1115,B77D 1115,B77D +1115,B7E9 1115,B7E9 +1115,B856 1115,B856 +1115,B8C3 1115,B8C3 +1115,B930 1115,B930 +1115,B99D 1115,B99D +1115,BA0A 1115,BA0A +1115,BA77 1115,BA77 +1115,BAE4 1115,BAE4 +1115,BB51 1115,BB51 +1115,BBBD 1115,BBBD +1115,BC2A 1115,BC2A +1115,BC97 1115,BC97 +1115,BD04 1115,BD04 +1115,BD71 1115,BD71 +1115,BDDE 1115,BDDE +1115,BE4B 1115,BE4B +1115,BEB8 1115,BEB8 +1115,BF25 1115,BF25 +1115,BF91 1115,BF91 +1115,BFFE 1115,BFFE +1115,C06B 1115,C06B +1115,C0D8 1115,C0D8 +1115,C145 1115,C145 +1115,C1B2 1115,C1B2 +1115,C21F 1115,C21F +1115,C28C 1115,C28C +1115,C2F9 1115,C2F9 +1115,C365 1115,C365 +1115,C3D2 1115,C3D2 +1115,C43F 1115,C43F +1115,C4AC 1115,C4AC +1115,C519 1115,C519 +1115,C586 1115,C586 +1115,C5F3 1115,C5F3 +1115,C660 1115,C660 +1115,C6CD 1115,C6CD +1115,C739 1115,C739 +1115,C7A6 1115,C7A6 +1115,C813 1115,C813 +1115,C880 1115,C880 +1115,C8ED 1115,C8ED +1115,C95A 1115,C95A +1115,C9C7 1115,C9C7 +1115,CA34 1115,CA34 +1115,CAA1 1115,CAA1 +1115,CB0D 1115,CB0D +1115,CB7A 1115,CB7A +1115,CBE7 1115,CBE7 +1115,CC54 1115,CC54 +1115,CCC1 1115,CCC1 +1115,CD2E 1115,CD2E +1115,CD9B 1115,CD9B +1115,CE08 1115,CE08 +1115,CE75 1115,CE75 +1115,CEE1 1115,CEE1 +1115,CF4E 1115,CF4E +1115,CFBB 1115,CFBB +1115,D028 1115,D028 +1115,D095 1115,D095 +1115,D102 1115,D102 +1115,D16F 1115,D16F +1115,D1DC 1115,D1DC +1115,D249 1115,D249 +1115,D2B5 1115,D2B5 +1115,D322 1115,D322 +1115,D38F 1115,D38F +1115,D3FC 1115,D3FC +1115,D469 1115,D469 +1115,D4D6 1115,D4D6 +1115,D543 1115,D543 +1115,D5B0 1115,D5B0 +1115,D61D 1115,D61D +1115,D689 1115,D689 +1115,D6F6 1115,D6F6 +1115,D763 1115,D763 +1116,AC01 1116,AC01 +1116,AC6D 1116,AC6D +1116,ACDA 1116,ACDA +1116,AD47 1116,AD47 +1116,ADB4 1116,ADB4 +1116,AE21 1116,AE21 +1116,AE8E 1116,AE8E +1116,AEFB 1116,AEFB +1116,AF68 1116,AF68 +1116,AFD5 1116,AFD5 +1116,B041 1116,B041 +1116,B0AE 1116,B0AE +1116,B11B 1116,B11B +1116,B188 1116,B188 +1116,B1F5 1116,B1F5 +1116,B262 1116,B262 +1116,B2CF 1116,B2CF +1116,B33C 1116,B33C +1116,B3A9 1116,B3A9 +1116,B415 1116,B415 +1116,B482 1116,B482 +1116,B4EF 1116,B4EF +1116,B55C 1116,B55C +1116,B5C9 1116,B5C9 +1116,B636 1116,B636 +1116,B6A3 1116,B6A3 +1116,B710 1116,B710 +1116,B77D 1116,B77D +1116,B7E9 1116,B7E9 +1116,B856 1116,B856 +1116,B8C3 1116,B8C3 +1116,B930 1116,B930 +1116,B99D 1116,B99D +1116,BA0A 1116,BA0A +1116,BA77 1116,BA77 +1116,BAE4 1116,BAE4 +1116,BB51 1116,BB51 +1116,BBBD 1116,BBBD +1116,BC2A 1116,BC2A +1116,BC97 1116,BC97 +1116,BD04 1116,BD04 +1116,BD71 1116,BD71 +1116,BDDE 1116,BDDE +1116,BE4B 1116,BE4B +1116,BEB8 1116,BEB8 +1116,BF25 1116,BF25 +1116,BF91 1116,BF91 +1116,BFFE 1116,BFFE +1116,C06B 1116,C06B +1116,C0D8 1116,C0D8 +1116,C145 1116,C145 +1116,C1B2 1116,C1B2 +1116,C21F 1116,C21F +1116,C28C 1116,C28C +1116,C2F9 1116,C2F9 +1116,C365 1116,C365 +1116,C3D2 1116,C3D2 +1116,C43F 1116,C43F +1116,C4AC 1116,C4AC +1116,C519 1116,C519 +1116,C586 1116,C586 +1116,C5F3 1116,C5F3 +1116,C660 1116,C660 +1116,C6CD 1116,C6CD +1116,C739 1116,C739 +1116,C7A6 1116,C7A6 +1116,C813 1116,C813 +1116,C880 1116,C880 +1116,C8ED 1116,C8ED +1116,C95A 1116,C95A +1116,C9C7 1116,C9C7 +1116,CA34 1116,CA34 +1116,CAA1 1116,CAA1 +1116,CB0D 1116,CB0D +1116,CB7A 1116,CB7A +1116,CBE7 1116,CBE7 +1116,CC54 1116,CC54 +1116,CCC1 1116,CCC1 +1116,CD2E 1116,CD2E +1116,CD9B 1116,CD9B +1116,CE08 1116,CE08 +1116,CE75 1116,CE75 +1116,CEE1 1116,CEE1 +1116,CF4E 1116,CF4E +1116,CFBB 1116,CFBB +1116,D028 1116,D028 +1116,D095 1116,D095 +1116,D102 1116,D102 +1116,D16F 1116,D16F +1116,D1DC 1116,D1DC +1116,D249 1116,D249 +1116,D2B5 1116,D2B5 +1116,D322 1116,D322 +1116,D38F 1116,D38F +1116,D3FC 1116,D3FC +1116,D469 1116,D469 +1116,D4D6 1116,D4D6 +1116,D543 1116,D543 +1116,D5B0 1116,D5B0 +1116,D61D 1116,D61D +1116,D689 1116,D689 +1116,D6F6 1116,D6F6 +1116,D763 1116,D763 +1117,AC01 1117,AC01 +1117,AC6D 1117,AC6D +1117,ACDA 1117,ACDA +1117,AD47 1117,AD47 +1117,ADB4 1117,ADB4 +1117,AE21 1117,AE21 +1117,AE8E 1117,AE8E +1117,AEFB 1117,AEFB +1117,AF68 1117,AF68 +1117,AFD5 1117,AFD5 +1117,B041 1117,B041 +1117,B0AE 1117,B0AE +1117,B11B 1117,B11B +1117,B188 1117,B188 +1117,B1F5 1117,B1F5 +1117,B262 1117,B262 +1117,B2CF 1117,B2CF +1117,B33C 1117,B33C +1117,B3A9 1117,B3A9 +1117,B415 1117,B415 +1117,B482 1117,B482 +1117,B4EF 1117,B4EF +1117,B55C 1117,B55C +1117,B5C9 1117,B5C9 +1117,B636 1117,B636 +1117,B6A3 1117,B6A3 +1117,B710 1117,B710 +1117,B77D 1117,B77D +1117,B7E9 1117,B7E9 +1117,B856 1117,B856 +1117,B8C3 1117,B8C3 +1117,B930 1117,B930 +1117,B99D 1117,B99D +1117,BA0A 1117,BA0A +1117,BA77 1117,BA77 +1117,BAE4 1117,BAE4 +1117,BB51 1117,BB51 +1117,BBBD 1117,BBBD +1117,BC2A 1117,BC2A +1117,BC97 1117,BC97 +1117,BD04 1117,BD04 +1117,BD71 1117,BD71 +1117,BDDE 1117,BDDE +1117,BE4B 1117,BE4B +1117,BEB8 1117,BEB8 +1117,BF25 1117,BF25 +1117,BF91 1117,BF91 +1117,BFFE 1117,BFFE +1117,C06B 1117,C06B +1117,C0D8 1117,C0D8 +1117,C145 1117,C145 +1117,C1B2 1117,C1B2 +1117,C21F 1117,C21F +1117,C28C 1117,C28C +1117,C2F9 1117,C2F9 +1117,C365 1117,C365 +1117,C3D2 1117,C3D2 +1117,C43F 1117,C43F +1117,C4AC 1117,C4AC +1117,C519 1117,C519 +1117,C586 1117,C586 +1117,C5F3 1117,C5F3 +1117,C660 1117,C660 +1117,C6CD 1117,C6CD +1117,C739 1117,C739 +1117,C7A6 1117,C7A6 +1117,C813 1117,C813 +1117,C880 1117,C880 +1117,C8ED 1117,C8ED +1117,C95A 1117,C95A +1117,C9C7 1117,C9C7 +1117,CA34 1117,CA34 +1117,CAA1 1117,CAA1 +1117,CB0D 1117,CB0D +1117,CB7A 1117,CB7A +1117,CBE7 1117,CBE7 +1117,CC54 1117,CC54 +1117,CCC1 1117,CCC1 +1117,CD2E 1117,CD2E +1117,CD9B 1117,CD9B +1117,CE08 1117,CE08 +1117,CE75 1117,CE75 +1117,CEE1 1117,CEE1 +1117,CF4E 1117,CF4E +1117,CFBB 1117,CFBB +1117,D028 1117,D028 +1117,D095 1117,D095 +1117,D102 1117,D102 +1117,D16F 1117,D16F +1117,D1DC 1117,D1DC +1117,D249 1117,D249 +1117,D2B5 1117,D2B5 +1117,D322 1117,D322 +1117,D38F 1117,D38F +1117,D3FC 1117,D3FC +1117,D469 1117,D469 +1117,D4D6 1117,D4D6 +1117,D543 1117,D543 +1117,D5B0 1117,D5B0 +1117,D61D 1117,D61D +1117,D689 1117,D689 +1117,D6F6 1117,D6F6 +1117,D763 1117,D763 +1118,AC01 1118,AC01 +1118,AC6D 1118,AC6D +1118,ACDA 1118,ACDA +1118,AD47 1118,AD47 +1118,ADB4 1118,ADB4 +1118,AE21 1118,AE21 +1118,AE8E 1118,AE8E +1118,AEFB 1118,AEFB +1118,AF68 1118,AF68 +1118,AFD5 1118,AFD5 +1118,B041 1118,B041 +1118,B0AE 1118,B0AE +1118,B11B 1118,B11B +1118,B188 1118,B188 +1118,B1F5 1118,B1F5 +1118,B262 1118,B262 +1118,B2CF 1118,B2CF +1118,B33C 1118,B33C +1118,B3A9 1118,B3A9 +1118,B415 1118,B415 +1118,B482 1118,B482 +1118,B4EF 1118,B4EF +1118,B55C 1118,B55C +1118,B5C9 1118,B5C9 +1118,B636 1118,B636 +1118,B6A3 1118,B6A3 +1118,B710 1118,B710 +1118,B77D 1118,B77D +1118,B7E9 1118,B7E9 +1118,B856 1118,B856 +1118,B8C3 1118,B8C3 +1118,B930 1118,B930 +1118,B99D 1118,B99D +1118,BA0A 1118,BA0A +1118,BA77 1118,BA77 +1118,BAE4 1118,BAE4 +1118,BB51 1118,BB51 +1118,BBBD 1118,BBBD +1118,BC2A 1118,BC2A +1118,BC97 1118,BC97 +1118,BD04 1118,BD04 +1118,BD71 1118,BD71 +1118,BDDE 1118,BDDE +1118,BE4B 1118,BE4B +1118,BEB8 1118,BEB8 +1118,BF25 1118,BF25 +1118,BF91 1118,BF91 +1118,BFFE 1118,BFFE +1118,C06B 1118,C06B +1118,C0D8 1118,C0D8 +1118,C145 1118,C145 +1118,C1B2 1118,C1B2 +1118,C21F 1118,C21F +1118,C28C 1118,C28C +1118,C2F9 1118,C2F9 +1118,C365 1118,C365 +1118,C3D2 1118,C3D2 +1118,C43F 1118,C43F +1118,C4AC 1118,C4AC +1118,C519 1118,C519 +1118,C586 1118,C586 +1118,C5F3 1118,C5F3 +1118,C660 1118,C660 +1118,C6CD 1118,C6CD +1118,C739 1118,C739 +1118,C7A6 1118,C7A6 +1118,C813 1118,C813 +1118,C880 1118,C880 +1118,C8ED 1118,C8ED +1118,C95A 1118,C95A +1118,C9C7 1118,C9C7 +1118,CA34 1118,CA34 +1118,CAA1 1118,CAA1 +1118,CB0D 1118,CB0D +1118,CB7A 1118,CB7A +1118,CBE7 1118,CBE7 +1118,CC54 1118,CC54 +1118,CCC1 1118,CCC1 +1118,CD2E 1118,CD2E +1118,CD9B 1118,CD9B +1118,CE08 1118,CE08 +1118,CE75 1118,CE75 +1118,CEE1 1118,CEE1 +1118,CF4E 1118,CF4E +1118,CFBB 1118,CFBB +1118,D028 1118,D028 +1118,D095 1118,D095 +1118,D102 1118,D102 +1118,D16F 1118,D16F +1118,D1DC 1118,D1DC +1118,D249 1118,D249 +1118,D2B5 1118,D2B5 +1118,D322 1118,D322 +1118,D38F 1118,D38F +1118,D3FC 1118,D3FC +1118,D469 1118,D469 +1118,D4D6 1118,D4D6 +1118,D543 1118,D543 +1118,D5B0 1118,D5B0 +1118,D61D 1118,D61D +1118,D689 1118,D689 +1118,D6F6 1118,D6F6 +1118,D763 1118,D763 +1119,AC01 1119,AC01 +1119,AC6D 1119,AC6D +1119,ACDA 1119,ACDA +1119,AD47 1119,AD47 +1119,ADB4 1119,ADB4 +1119,AE21 1119,AE21 +1119,AE8E 1119,AE8E +1119,AEFB 1119,AEFB +1119,AF68 1119,AF68 +1119,AFD5 1119,AFD5 +1119,B041 1119,B041 +1119,B0AE 1119,B0AE +1119,B11B 1119,B11B +1119,B188 1119,B188 +1119,B1F5 1119,B1F5 +1119,B262 1119,B262 +1119,B2CF 1119,B2CF +1119,B33C 1119,B33C +1119,B3A9 1119,B3A9 +1119,B415 1119,B415 +1119,B482 1119,B482 +1119,B4EF 1119,B4EF +1119,B55C 1119,B55C +1119,B5C9 1119,B5C9 +1119,B636 1119,B636 +1119,B6A3 1119,B6A3 +1119,B710 1119,B710 +1119,B77D 1119,B77D +1119,B7E9 1119,B7E9 +1119,B856 1119,B856 +1119,B8C3 1119,B8C3 +1119,B930 1119,B930 +1119,B99D 1119,B99D +1119,BA0A 1119,BA0A +1119,BA77 1119,BA77 +1119,BAE4 1119,BAE4 +1119,BB51 1119,BB51 +1119,BBBD 1119,BBBD +1119,BC2A 1119,BC2A +1119,BC97 1119,BC97 +1119,BD04 1119,BD04 +1119,BD71 1119,BD71 +1119,BDDE 1119,BDDE +1119,BE4B 1119,BE4B +1119,BEB8 1119,BEB8 +1119,BF25 1119,BF25 +1119,BF91 1119,BF91 +1119,BFFE 1119,BFFE +1119,C06B 1119,C06B +1119,C0D8 1119,C0D8 +1119,C145 1119,C145 +1119,C1B2 1119,C1B2 +1119,C21F 1119,C21F +1119,C28C 1119,C28C +1119,C2F9 1119,C2F9 +1119,C365 1119,C365 +1119,C3D2 1119,C3D2 +1119,C43F 1119,C43F +1119,C4AC 1119,C4AC +1119,C519 1119,C519 +1119,C586 1119,C586 +1119,C5F3 1119,C5F3 +1119,C660 1119,C660 +1119,C6CD 1119,C6CD +1119,C739 1119,C739 +1119,C7A6 1119,C7A6 +1119,C813 1119,C813 +1119,C880 1119,C880 +1119,C8ED 1119,C8ED +1119,C95A 1119,C95A +1119,C9C7 1119,C9C7 +1119,CA34 1119,CA34 +1119,CAA1 1119,CAA1 +1119,CB0D 1119,CB0D +1119,CB7A 1119,CB7A +1119,CBE7 1119,CBE7 +1119,CC54 1119,CC54 +1119,CCC1 1119,CCC1 +1119,CD2E 1119,CD2E +1119,CD9B 1119,CD9B +1119,CE08 1119,CE08 +1119,CE75 1119,CE75 +1119,CEE1 1119,CEE1 +1119,CF4E 1119,CF4E +1119,CFBB 1119,CFBB +1119,D028 1119,D028 +1119,D095 1119,D095 +1119,D102 1119,D102 +1119,D16F 1119,D16F +1119,D1DC 1119,D1DC +1119,D249 1119,D249 +1119,D2B5 1119,D2B5 +1119,D322 1119,D322 +1119,D38F 1119,D38F +1119,D3FC 1119,D3FC +1119,D469 1119,D469 +1119,D4D6 1119,D4D6 +1119,D543 1119,D543 +1119,D5B0 1119,D5B0 +1119,D61D 1119,D61D +1119,D689 1119,D689 +1119,D6F6 1119,D6F6 +1119,D763 1119,D763 +111A,AC01 111A,AC01 +111A,AC6D 111A,AC6D +111A,ACDA 111A,ACDA +111A,AD47 111A,AD47 +111A,ADB4 111A,ADB4 +111A,AE21 111A,AE21 +111A,AE8E 111A,AE8E +111A,AEFB 111A,AEFB +111A,AF68 111A,AF68 +111A,AFD5 111A,AFD5 +111A,B041 111A,B041 +111A,B0AE 111A,B0AE +111A,B11B 111A,B11B +111A,B188 111A,B188 +111A,B1F5 111A,B1F5 +111A,B262 111A,B262 +111A,B2CF 111A,B2CF +111A,B33C 111A,B33C +111A,B3A9 111A,B3A9 +111A,B415 111A,B415 +111A,B482 111A,B482 +111A,B4EF 111A,B4EF +111A,B55C 111A,B55C +111A,B5C9 111A,B5C9 +111A,B636 111A,B636 +111A,B6A3 111A,B6A3 +111A,B710 111A,B710 +111A,B77D 111A,B77D +111A,B7E9 111A,B7E9 +111A,B856 111A,B856 +111A,B8C3 111A,B8C3 +111A,B930 111A,B930 +111A,B99D 111A,B99D +111A,BA0A 111A,BA0A +111A,BA77 111A,BA77 +111A,BAE4 111A,BAE4 +111A,BB51 111A,BB51 +111A,BBBD 111A,BBBD +111A,BC2A 111A,BC2A +111A,BC97 111A,BC97 +111A,BD04 111A,BD04 +111A,BD71 111A,BD71 +111A,BDDE 111A,BDDE +111A,BE4B 111A,BE4B +111A,BEB8 111A,BEB8 +111A,BF25 111A,BF25 +111A,BF91 111A,BF91 +111A,BFFE 111A,BFFE +111A,C06B 111A,C06B +111A,C0D8 111A,C0D8 +111A,C145 111A,C145 +111A,C1B2 111A,C1B2 +111A,C21F 111A,C21F +111A,C28C 111A,C28C +111A,C2F9 111A,C2F9 +111A,C365 111A,C365 +111A,C3D2 111A,C3D2 +111A,C43F 111A,C43F +111A,C4AC 111A,C4AC +111A,C519 111A,C519 +111A,C586 111A,C586 +111A,C5F3 111A,C5F3 +111A,C660 111A,C660 +111A,C6CD 111A,C6CD +111A,C739 111A,C739 +111A,C7A6 111A,C7A6 +111A,C813 111A,C813 +111A,C880 111A,C880 +111A,C8ED 111A,C8ED +111A,C95A 111A,C95A +111A,C9C7 111A,C9C7 +111A,CA34 111A,CA34 +111A,CAA1 111A,CAA1 +111A,CB0D 111A,CB0D +111A,CB7A 111A,CB7A +111A,CBE7 111A,CBE7 +111A,CC54 111A,CC54 +111A,CCC1 111A,CCC1 +111A,CD2E 111A,CD2E +111A,CD9B 111A,CD9B +111A,CE08 111A,CE08 +111A,CE75 111A,CE75 +111A,CEE1 111A,CEE1 +111A,CF4E 111A,CF4E +111A,CFBB 111A,CFBB +111A,D028 111A,D028 +111A,D095 111A,D095 +111A,D102 111A,D102 +111A,D16F 111A,D16F +111A,D1DC 111A,D1DC +111A,D249 111A,D249 +111A,D2B5 111A,D2B5 +111A,D322 111A,D322 +111A,D38F 111A,D38F +111A,D3FC 111A,D3FC +111A,D469 111A,D469 +111A,D4D6 111A,D4D6 +111A,D543 111A,D543 +111A,D5B0 111A,D5B0 +111A,D61D 111A,D61D +111A,D689 111A,D689 +111A,D6F6 111A,D6F6 +111A,D763 111A,D763 +111B,AC01 111B,AC01 +111B,AC6D 111B,AC6D +111B,ACDA 111B,ACDA +111B,AD47 111B,AD47 +111B,ADB4 111B,ADB4 +111B,AE21 111B,AE21 +111B,AE8E 111B,AE8E +111B,AEFB 111B,AEFB +111B,AF68 111B,AF68 +111B,AFD5 111B,AFD5 +111B,B041 111B,B041 +111B,B0AE 111B,B0AE +111B,B11B 111B,B11B +111B,B188 111B,B188 +111B,B1F5 111B,B1F5 +111B,B262 111B,B262 +111B,B2CF 111B,B2CF +111B,B33C 111B,B33C +111B,B3A9 111B,B3A9 +111B,B415 111B,B415 +111B,B482 111B,B482 +111B,B4EF 111B,B4EF +111B,B55C 111B,B55C +111B,B5C9 111B,B5C9 +111B,B636 111B,B636 +111B,B6A3 111B,B6A3 +111B,B710 111B,B710 +111B,B77D 111B,B77D +111B,B7E9 111B,B7E9 +111B,B856 111B,B856 +111B,B8C3 111B,B8C3 +111B,B930 111B,B930 +111B,B99D 111B,B99D +111B,BA0A 111B,BA0A +111B,BA77 111B,BA77 +111B,BAE4 111B,BAE4 +111B,BB51 111B,BB51 +111B,BBBD 111B,BBBD +111B,BC2A 111B,BC2A +111B,BC97 111B,BC97 +111B,BD04 111B,BD04 +111B,BD71 111B,BD71 +111B,BDDE 111B,BDDE +111B,BE4B 111B,BE4B +111B,BEB8 111B,BEB8 +111B,BF25 111B,BF25 +111B,BF91 111B,BF91 +111B,BFFE 111B,BFFE +111B,C06B 111B,C06B +111B,C0D8 111B,C0D8 +111B,C145 111B,C145 +111B,C1B2 111B,C1B2 +111B,C21F 111B,C21F +111B,C28C 111B,C28C +111B,C2F9 111B,C2F9 +111B,C365 111B,C365 +111B,C3D2 111B,C3D2 +111B,C43F 111B,C43F +111B,C4AC 111B,C4AC +111B,C519 111B,C519 +111B,C586 111B,C586 +111B,C5F3 111B,C5F3 +111B,C660 111B,C660 +111B,C6CD 111B,C6CD +111B,C739 111B,C739 +111B,C7A6 111B,C7A6 +111B,C813 111B,C813 +111B,C880 111B,C880 +111B,C8ED 111B,C8ED +111B,C95A 111B,C95A +111B,C9C7 111B,C9C7 +111B,CA34 111B,CA34 +111B,CAA1 111B,CAA1 +111B,CB0D 111B,CB0D +111B,CB7A 111B,CB7A +111B,CBE7 111B,CBE7 +111B,CC54 111B,CC54 +111B,CCC1 111B,CCC1 +111B,CD2E 111B,CD2E +111B,CD9B 111B,CD9B +111B,CE08 111B,CE08 +111B,CE75 111B,CE75 +111B,CEE1 111B,CEE1 +111B,CF4E 111B,CF4E +111B,CFBB 111B,CFBB +111B,D028 111B,D028 +111B,D095 111B,D095 +111B,D102 111B,D102 +111B,D16F 111B,D16F +111B,D1DC 111B,D1DC +111B,D249 111B,D249 +111B,D2B5 111B,D2B5 +111B,D322 111B,D322 +111B,D38F 111B,D38F +111B,D3FC 111B,D3FC +111B,D469 111B,D469 +111B,D4D6 111B,D4D6 +111B,D543 111B,D543 +111B,D5B0 111B,D5B0 +111B,D61D 111B,D61D +111B,D689 111B,D689 +111B,D6F6 111B,D6F6 +111B,D763 111B,D763 +111C,AC01 111C,AC01 +111C,AC6D 111C,AC6D +111C,ACDA 111C,ACDA +111C,AD47 111C,AD47 +111C,ADB4 111C,ADB4 +111C,AE21 111C,AE21 +111C,AE8E 111C,AE8E +111C,AEFB 111C,AEFB +111C,AF68 111C,AF68 +111C,AFD5 111C,AFD5 +111C,B041 111C,B041 +111C,B0AE 111C,B0AE +111C,B11B 111C,B11B +111C,B188 111C,B188 +111C,B1F5 111C,B1F5 +111C,B262 111C,B262 +111C,B2CF 111C,B2CF +111C,B33C 111C,B33C +111C,B3A9 111C,B3A9 +111C,B415 111C,B415 +111C,B482 111C,B482 +111C,B4EF 111C,B4EF +111C,B55C 111C,B55C +111C,B5C9 111C,B5C9 +111C,B636 111C,B636 +111C,B6A3 111C,B6A3 +111C,B710 111C,B710 +111C,B77D 111C,B77D +111C,B7E9 111C,B7E9 +111C,B856 111C,B856 +111C,B8C3 111C,B8C3 +111C,B930 111C,B930 +111C,B99D 111C,B99D +111C,BA0A 111C,BA0A +111C,BA77 111C,BA77 +111C,BAE4 111C,BAE4 +111C,BB51 111C,BB51 +111C,BBBD 111C,BBBD +111C,BC2A 111C,BC2A +111C,BC97 111C,BC97 +111C,BD04 111C,BD04 +111C,BD71 111C,BD71 +111C,BDDE 111C,BDDE +111C,BE4B 111C,BE4B +111C,BEB8 111C,BEB8 +111C,BF25 111C,BF25 +111C,BF91 111C,BF91 +111C,BFFE 111C,BFFE +111C,C06B 111C,C06B +111C,C0D8 111C,C0D8 +111C,C145 111C,C145 +111C,C1B2 111C,C1B2 +111C,C21F 111C,C21F +111C,C28C 111C,C28C +111C,C2F9 111C,C2F9 +111C,C365 111C,C365 +111C,C3D2 111C,C3D2 +111C,C43F 111C,C43F +111C,C4AC 111C,C4AC +111C,C519 111C,C519 +111C,C586 111C,C586 +111C,C5F3 111C,C5F3 +111C,C660 111C,C660 +111C,C6CD 111C,C6CD +111C,C739 111C,C739 +111C,C7A6 111C,C7A6 +111C,C813 111C,C813 +111C,C880 111C,C880 +111C,C8ED 111C,C8ED +111C,C95A 111C,C95A +111C,C9C7 111C,C9C7 +111C,CA34 111C,CA34 +111C,CAA1 111C,CAA1 +111C,CB0D 111C,CB0D +111C,CB7A 111C,CB7A +111C,CBE7 111C,CBE7 +111C,CC54 111C,CC54 +111C,CCC1 111C,CCC1 +111C,CD2E 111C,CD2E +111C,CD9B 111C,CD9B +111C,CE08 111C,CE08 +111C,CE75 111C,CE75 +111C,CEE1 111C,CEE1 +111C,CF4E 111C,CF4E +111C,CFBB 111C,CFBB +111C,D028 111C,D028 +111C,D095 111C,D095 +111C,D102 111C,D102 +111C,D16F 111C,D16F +111C,D1DC 111C,D1DC +111C,D249 111C,D249 +111C,D2B5 111C,D2B5 +111C,D322 111C,D322 +111C,D38F 111C,D38F +111C,D3FC 111C,D3FC +111C,D469 111C,D469 +111C,D4D6 111C,D4D6 +111C,D543 111C,D543 +111C,D5B0 111C,D5B0 +111C,D61D 111C,D61D +111C,D689 111C,D689 +111C,D6F6 111C,D6F6 +111C,D763 111C,D763 +111D,AC01 111D,AC01 +111D,AC6D 111D,AC6D +111D,ACDA 111D,ACDA +111D,AD47 111D,AD47 +111D,ADB4 111D,ADB4 +111D,AE21 111D,AE21 +111D,AE8E 111D,AE8E +111D,AEFB 111D,AEFB +111D,AF68 111D,AF68 +111D,AFD5 111D,AFD5 +111D,B041 111D,B041 +111D,B0AE 111D,B0AE +111D,B11B 111D,B11B +111D,B188 111D,B188 +111D,B1F5 111D,B1F5 +111D,B262 111D,B262 +111D,B2CF 111D,B2CF +111D,B33C 111D,B33C +111D,B3A9 111D,B3A9 +111D,B415 111D,B415 +111D,B482 111D,B482 +111D,B4EF 111D,B4EF +111D,B55C 111D,B55C +111D,B5C9 111D,B5C9 +111D,B636 111D,B636 +111D,B6A3 111D,B6A3 +111D,B710 111D,B710 +111D,B77D 111D,B77D +111D,B7E9 111D,B7E9 +111D,B856 111D,B856 +111D,B8C3 111D,B8C3 +111D,B930 111D,B930 +111D,B99D 111D,B99D +111D,BA0A 111D,BA0A +111D,BA77 111D,BA77 +111D,BAE4 111D,BAE4 +111D,BB51 111D,BB51 +111D,BBBD 111D,BBBD +111D,BC2A 111D,BC2A +111D,BC97 111D,BC97 +111D,BD04 111D,BD04 +111D,BD71 111D,BD71 +111D,BDDE 111D,BDDE +111D,BE4B 111D,BE4B +111D,BEB8 111D,BEB8 +111D,BF25 111D,BF25 +111D,BF91 111D,BF91 +111D,BFFE 111D,BFFE +111D,C06B 111D,C06B +111D,C0D8 111D,C0D8 +111D,C145 111D,C145 +111D,C1B2 111D,C1B2 +111D,C21F 111D,C21F +111D,C28C 111D,C28C +111D,C2F9 111D,C2F9 +111D,C365 111D,C365 +111D,C3D2 111D,C3D2 +111D,C43F 111D,C43F +111D,C4AC 111D,C4AC +111D,C519 111D,C519 +111D,C586 111D,C586 +111D,C5F3 111D,C5F3 +111D,C660 111D,C660 +111D,C6CD 111D,C6CD +111D,C739 111D,C739 +111D,C7A6 111D,C7A6 +111D,C813 111D,C813 +111D,C880 111D,C880 +111D,C8ED 111D,C8ED +111D,C95A 111D,C95A +111D,C9C7 111D,C9C7 +111D,CA34 111D,CA34 +111D,CAA1 111D,CAA1 +111D,CB0D 111D,CB0D +111D,CB7A 111D,CB7A +111D,CBE7 111D,CBE7 +111D,CC54 111D,CC54 +111D,CCC1 111D,CCC1 +111D,CD2E 111D,CD2E +111D,CD9B 111D,CD9B +111D,CE08 111D,CE08 +111D,CE75 111D,CE75 +111D,CEE1 111D,CEE1 +111D,CF4E 111D,CF4E +111D,CFBB 111D,CFBB +111D,D028 111D,D028 +111D,D095 111D,D095 +111D,D102 111D,D102 +111D,D16F 111D,D16F +111D,D1DC 111D,D1DC +111D,D249 111D,D249 +111D,D2B5 111D,D2B5 +111D,D322 111D,D322 +111D,D38F 111D,D38F +111D,D3FC 111D,D3FC +111D,D469 111D,D469 +111D,D4D6 111D,D4D6 +111D,D543 111D,D543 +111D,D5B0 111D,D5B0 +111D,D61D 111D,D61D +111D,D689 111D,D689 +111D,D6F6 111D,D6F6 +111D,D763 111D,D763 +111E,AC01 111E,AC01 +111E,AC6D 111E,AC6D +111E,ACDA 111E,ACDA +111E,AD47 111E,AD47 +111E,ADB4 111E,ADB4 +111E,AE21 111E,AE21 +111E,AE8E 111E,AE8E +111E,AEFB 111E,AEFB +111E,AF68 111E,AF68 +111E,AFD5 111E,AFD5 +111E,B041 111E,B041 +111E,B0AE 111E,B0AE +111E,B11B 111E,B11B +111E,B188 111E,B188 +111E,B1F5 111E,B1F5 +111E,B262 111E,B262 +111E,B2CF 111E,B2CF +111E,B33C 111E,B33C +111E,B3A9 111E,B3A9 +111E,B415 111E,B415 +111E,B482 111E,B482 +111E,B4EF 111E,B4EF +111E,B55C 111E,B55C +111E,B5C9 111E,B5C9 +111E,B636 111E,B636 +111E,B6A3 111E,B6A3 +111E,B710 111E,B710 +111E,B77D 111E,B77D +111E,B7E9 111E,B7E9 +111E,B856 111E,B856 +111E,B8C3 111E,B8C3 +111E,B930 111E,B930 +111E,B99D 111E,B99D +111E,BA0A 111E,BA0A +111E,BA77 111E,BA77 +111E,BAE4 111E,BAE4 +111E,BB51 111E,BB51 +111E,BBBD 111E,BBBD +111E,BC2A 111E,BC2A +111E,BC97 111E,BC97 +111E,BD04 111E,BD04 +111E,BD71 111E,BD71 +111E,BDDE 111E,BDDE +111E,BE4B 111E,BE4B +111E,BEB8 111E,BEB8 +111E,BF25 111E,BF25 +111E,BF91 111E,BF91 +111E,BFFE 111E,BFFE +111E,C06B 111E,C06B +111E,C0D8 111E,C0D8 +111E,C145 111E,C145 +111E,C1B2 111E,C1B2 +111E,C21F 111E,C21F +111E,C28C 111E,C28C +111E,C2F9 111E,C2F9 +111E,C365 111E,C365 +111E,C3D2 111E,C3D2 +111E,C43F 111E,C43F +111E,C4AC 111E,C4AC +111E,C519 111E,C519 +111E,C586 111E,C586 +111E,C5F3 111E,C5F3 +111E,C660 111E,C660 +111E,C6CD 111E,C6CD +111E,C739 111E,C739 +111E,C7A6 111E,C7A6 +111E,C813 111E,C813 +111E,C880 111E,C880 +111E,C8ED 111E,C8ED +111E,C95A 111E,C95A +111E,C9C7 111E,C9C7 +111E,CA34 111E,CA34 +111E,CAA1 111E,CAA1 +111E,CB0D 111E,CB0D +111E,CB7A 111E,CB7A +111E,CBE7 111E,CBE7 +111E,CC54 111E,CC54 +111E,CCC1 111E,CCC1 +111E,CD2E 111E,CD2E +111E,CD9B 111E,CD9B +111E,CE08 111E,CE08 +111E,CE75 111E,CE75 +111E,CEE1 111E,CEE1 +111E,CF4E 111E,CF4E +111E,CFBB 111E,CFBB +111E,D028 111E,D028 +111E,D095 111E,D095 +111E,D102 111E,D102 +111E,D16F 111E,D16F +111E,D1DC 111E,D1DC +111E,D249 111E,D249 +111E,D2B5 111E,D2B5 +111E,D322 111E,D322 +111E,D38F 111E,D38F +111E,D3FC 111E,D3FC +111E,D469 111E,D469 +111E,D4D6 111E,D4D6 +111E,D543 111E,D543 +111E,D5B0 111E,D5B0 +111E,D61D 111E,D61D +111E,D689 111E,D689 +111E,D6F6 111E,D6F6 +111E,D763 111E,D763 +111F,AC01 111F,AC01 +111F,AC6D 111F,AC6D +111F,ACDA 111F,ACDA +111F,AD47 111F,AD47 +111F,ADB4 111F,ADB4 +111F,AE21 111F,AE21 +111F,AE8E 111F,AE8E +111F,AEFB 111F,AEFB +111F,AF68 111F,AF68 +111F,AFD5 111F,AFD5 +111F,B041 111F,B041 +111F,B0AE 111F,B0AE +111F,B11B 111F,B11B +111F,B188 111F,B188 +111F,B1F5 111F,B1F5 +111F,B262 111F,B262 +111F,B2CF 111F,B2CF +111F,B33C 111F,B33C +111F,B3A9 111F,B3A9 +111F,B415 111F,B415 +111F,B482 111F,B482 +111F,B4EF 111F,B4EF +111F,B55C 111F,B55C +111F,B5C9 111F,B5C9 +111F,B636 111F,B636 +111F,B6A3 111F,B6A3 +111F,B710 111F,B710 +111F,B77D 111F,B77D +111F,B7E9 111F,B7E9 +111F,B856 111F,B856 +111F,B8C3 111F,B8C3 +111F,B930 111F,B930 +111F,B99D 111F,B99D +111F,BA0A 111F,BA0A +111F,BA77 111F,BA77 +111F,BAE4 111F,BAE4 +111F,BB51 111F,BB51 +111F,BBBD 111F,BBBD +111F,BC2A 111F,BC2A +111F,BC97 111F,BC97 +111F,BD04 111F,BD04 +111F,BD71 111F,BD71 +111F,BDDE 111F,BDDE +111F,BE4B 111F,BE4B +111F,BEB8 111F,BEB8 +111F,BF25 111F,BF25 +111F,BF91 111F,BF91 +111F,BFFE 111F,BFFE +111F,C06B 111F,C06B +111F,C0D8 111F,C0D8 +111F,C145 111F,C145 +111F,C1B2 111F,C1B2 +111F,C21F 111F,C21F +111F,C28C 111F,C28C +111F,C2F9 111F,C2F9 +111F,C365 111F,C365 +111F,C3D2 111F,C3D2 +111F,C43F 111F,C43F +111F,C4AC 111F,C4AC +111F,C519 111F,C519 +111F,C586 111F,C586 +111F,C5F3 111F,C5F3 +111F,C660 111F,C660 +111F,C6CD 111F,C6CD +111F,C739 111F,C739 +111F,C7A6 111F,C7A6 +111F,C813 111F,C813 +111F,C880 111F,C880 +111F,C8ED 111F,C8ED +111F,C95A 111F,C95A +111F,C9C7 111F,C9C7 +111F,CA34 111F,CA34 +111F,CAA1 111F,CAA1 +111F,CB0D 111F,CB0D +111F,CB7A 111F,CB7A +111F,CBE7 111F,CBE7 +111F,CC54 111F,CC54 +111F,CCC1 111F,CCC1 +111F,CD2E 111F,CD2E +111F,CD9B 111F,CD9B +111F,CE08 111F,CE08 +111F,CE75 111F,CE75 +111F,CEE1 111F,CEE1 +111F,CF4E 111F,CF4E +111F,CFBB 111F,CFBB +111F,D028 111F,D028 +111F,D095 111F,D095 +111F,D102 111F,D102 +111F,D16F 111F,D16F +111F,D1DC 111F,D1DC +111F,D249 111F,D249 +111F,D2B5 111F,D2B5 +111F,D322 111F,D322 +111F,D38F 111F,D38F +111F,D3FC 111F,D3FC +111F,D469 111F,D469 +111F,D4D6 111F,D4D6 +111F,D543 111F,D543 +111F,D5B0 111F,D5B0 +111F,D61D 111F,D61D +111F,D689 111F,D689 +111F,D6F6 111F,D6F6 +111F,D763 111F,D763 +1120,AC01 1120,AC01 +1120,AC6D 1120,AC6D +1120,ACDA 1120,ACDA +1120,AD47 1120,AD47 +1120,ADB4 1120,ADB4 +1120,AE21 1120,AE21 +1120,AE8E 1120,AE8E +1120,AEFB 1120,AEFB +1120,AF68 1120,AF68 +1120,AFD5 1120,AFD5 +1120,B041 1120,B041 +1120,B0AE 1120,B0AE +1120,B11B 1120,B11B +1120,B188 1120,B188 +1120,B1F5 1120,B1F5 +1120,B262 1120,B262 +1120,B2CF 1120,B2CF +1120,B33C 1120,B33C +1120,B3A9 1120,B3A9 +1120,B415 1120,B415 +1120,B482 1120,B482 +1120,B4EF 1120,B4EF +1120,B55C 1120,B55C +1120,B5C9 1120,B5C9 +1120,B636 1120,B636 +1120,B6A3 1120,B6A3 +1120,B710 1120,B710 +1120,B77D 1120,B77D +1120,B7E9 1120,B7E9 +1120,B856 1120,B856 +1120,B8C3 1120,B8C3 +1120,B930 1120,B930 +1120,B99D 1120,B99D +1120,BA0A 1120,BA0A +1120,BA77 1120,BA77 +1120,BAE4 1120,BAE4 +1120,BB51 1120,BB51 +1120,BBBD 1120,BBBD +1120,BC2A 1120,BC2A +1120,BC97 1120,BC97 +1120,BD04 1120,BD04 +1120,BD71 1120,BD71 +1120,BDDE 1120,BDDE +1120,BE4B 1120,BE4B +1120,BEB8 1120,BEB8 +1120,BF25 1120,BF25 +1120,BF91 1120,BF91 +1120,BFFE 1120,BFFE +1120,C06B 1120,C06B +1120,C0D8 1120,C0D8 +1120,C145 1120,C145 +1120,C1B2 1120,C1B2 +1120,C21F 1120,C21F +1120,C28C 1120,C28C +1120,C2F9 1120,C2F9 +1120,C365 1120,C365 +1120,C3D2 1120,C3D2 +1120,C43F 1120,C43F +1120,C4AC 1120,C4AC +1120,C519 1120,C519 +1120,C586 1120,C586 +1120,C5F3 1120,C5F3 +1120,C660 1120,C660 +1120,C6CD 1120,C6CD +1120,C739 1120,C739 +1120,C7A6 1120,C7A6 +1120,C813 1120,C813 +1120,C880 1120,C880 +1120,C8ED 1120,C8ED +1120,C95A 1120,C95A +1120,C9C7 1120,C9C7 +1120,CA34 1120,CA34 +1120,CAA1 1120,CAA1 +1120,CB0D 1120,CB0D +1120,CB7A 1120,CB7A +1120,CBE7 1120,CBE7 +1120,CC54 1120,CC54 +1120,CCC1 1120,CCC1 +1120,CD2E 1120,CD2E +1120,CD9B 1120,CD9B +1120,CE08 1120,CE08 +1120,CE75 1120,CE75 +1120,CEE1 1120,CEE1 +1120,CF4E 1120,CF4E +1120,CFBB 1120,CFBB +1120,D028 1120,D028 +1120,D095 1120,D095 +1120,D102 1120,D102 +1120,D16F 1120,D16F +1120,D1DC 1120,D1DC +1120,D249 1120,D249 +1120,D2B5 1120,D2B5 +1120,D322 1120,D322 +1120,D38F 1120,D38F +1120,D3FC 1120,D3FC +1120,D469 1120,D469 +1120,D4D6 1120,D4D6 +1120,D543 1120,D543 +1120,D5B0 1120,D5B0 +1120,D61D 1120,D61D +1120,D689 1120,D689 +1120,D6F6 1120,D6F6 +1120,D763 1120,D763 +1121,AC01 1121,AC01 +1121,AC6D 1121,AC6D +1121,ACDA 1121,ACDA +1121,AD47 1121,AD47 +1121,ADB4 1121,ADB4 +1121,AE21 1121,AE21 +1121,AE8E 1121,AE8E +1121,AEFB 1121,AEFB +1121,AF68 1121,AF68 +1121,AFD5 1121,AFD5 +1121,B041 1121,B041 +1121,B0AE 1121,B0AE +1121,B11B 1121,B11B +1121,B188 1121,B188 +1121,B1F5 1121,B1F5 +1121,B262 1121,B262 +1121,B2CF 1121,B2CF +1121,B33C 1121,B33C +1121,B3A9 1121,B3A9 +1121,B415 1121,B415 +1121,B482 1121,B482 +1121,B4EF 1121,B4EF +1121,B55C 1121,B55C +1121,B5C9 1121,B5C9 +1121,B636 1121,B636 +1121,B6A3 1121,B6A3 +1121,B710 1121,B710 +1121,B77D 1121,B77D +1121,B7E9 1121,B7E9 +1121,B856 1121,B856 +1121,B8C3 1121,B8C3 +1121,B930 1121,B930 +1121,B99D 1121,B99D +1121,BA0A 1121,BA0A +1121,BA77 1121,BA77 +1121,BAE4 1121,BAE4 +1121,BB51 1121,BB51 +1121,BBBD 1121,BBBD +1121,BC2A 1121,BC2A +1121,BC97 1121,BC97 +1121,BD04 1121,BD04 +1121,BD71 1121,BD71 +1121,BDDE 1121,BDDE +1121,BE4B 1121,BE4B +1121,BEB8 1121,BEB8 +1121,BF25 1121,BF25 +1121,BF91 1121,BF91 +1121,BFFE 1121,BFFE +1121,C06B 1121,C06B +1121,C0D8 1121,C0D8 +1121,C145 1121,C145 +1121,C1B2 1121,C1B2 +1121,C21F 1121,C21F +1121,C28C 1121,C28C +1121,C2F9 1121,C2F9 +1121,C365 1121,C365 +1121,C3D2 1121,C3D2 +1121,C43F 1121,C43F +1121,C4AC 1121,C4AC +1121,C519 1121,C519 +1121,C586 1121,C586 +1121,C5F3 1121,C5F3 +1121,C660 1121,C660 +1121,C6CD 1121,C6CD +1121,C739 1121,C739 +1121,C7A6 1121,C7A6 +1121,C813 1121,C813 +1121,C880 1121,C880 +1121,C8ED 1121,C8ED +1121,C95A 1121,C95A +1121,C9C7 1121,C9C7 +1121,CA34 1121,CA34 +1121,CAA1 1121,CAA1 +1121,CB0D 1121,CB0D +1121,CB7A 1121,CB7A +1121,CBE7 1121,CBE7 +1121,CC54 1121,CC54 +1121,CCC1 1121,CCC1 +1121,CD2E 1121,CD2E +1121,CD9B 1121,CD9B +1121,CE08 1121,CE08 +1121,CE75 1121,CE75 +1121,CEE1 1121,CEE1 +1121,CF4E 1121,CF4E +1121,CFBB 1121,CFBB +1121,D028 1121,D028 +1121,D095 1121,D095 +1121,D102 1121,D102 +1121,D16F 1121,D16F +1121,D1DC 1121,D1DC +1121,D249 1121,D249 +1121,D2B5 1121,D2B5 +1121,D322 1121,D322 +1121,D38F 1121,D38F +1121,D3FC 1121,D3FC +1121,D469 1121,D469 +1121,D4D6 1121,D4D6 +1121,D543 1121,D543 +1121,D5B0 1121,D5B0 +1121,D61D 1121,D61D +1121,D689 1121,D689 +1121,D6F6 1121,D6F6 +1121,D763 1121,D763 +1122,AC01 1122,AC01 +1122,AC6D 1122,AC6D +1122,ACDA 1122,ACDA +1122,AD47 1122,AD47 +1122,ADB4 1122,ADB4 +1122,AE21 1122,AE21 +1122,AE8E 1122,AE8E +1122,AEFB 1122,AEFB +1122,AF68 1122,AF68 +1122,AFD5 1122,AFD5 +1122,B041 1122,B041 +1122,B0AE 1122,B0AE +1122,B11B 1122,B11B +1122,B188 1122,B188 +1122,B1F5 1122,B1F5 +1122,B262 1122,B262 +1122,B2CF 1122,B2CF +1122,B33C 1122,B33C +1122,B3A9 1122,B3A9 +1122,B415 1122,B415 +1122,B482 1122,B482 +1122,B4EF 1122,B4EF +1122,B55C 1122,B55C +1122,B5C9 1122,B5C9 +1122,B636 1122,B636 +1122,B6A3 1122,B6A3 +1122,B710 1122,B710 +1122,B77D 1122,B77D +1122,B7E9 1122,B7E9 +1122,B856 1122,B856 +1122,B8C3 1122,B8C3 +1122,B930 1122,B930 +1122,B99D 1122,B99D +1122,BA0A 1122,BA0A +1122,BA77 1122,BA77 +1122,BAE4 1122,BAE4 +1122,BB51 1122,BB51 +1122,BBBD 1122,BBBD +1122,BC2A 1122,BC2A +1122,BC97 1122,BC97 +1122,BD04 1122,BD04 +1122,BD71 1122,BD71 +1122,BDDE 1122,BDDE +1122,BE4B 1122,BE4B +1122,BEB8 1122,BEB8 +1122,BF25 1122,BF25 +1122,BF91 1122,BF91 +1122,BFFE 1122,BFFE +1122,C06B 1122,C06B +1122,C0D8 1122,C0D8 +1122,C145 1122,C145 +1122,C1B2 1122,C1B2 +1122,C21F 1122,C21F +1122,C28C 1122,C28C +1122,C2F9 1122,C2F9 +1122,C365 1122,C365 +1122,C3D2 1122,C3D2 +1122,C43F 1122,C43F +1122,C4AC 1122,C4AC +1122,C519 1122,C519 +1122,C586 1122,C586 +1122,C5F3 1122,C5F3 +1122,C660 1122,C660 +1122,C6CD 1122,C6CD +1122,C739 1122,C739 +1122,C7A6 1122,C7A6 +1122,C813 1122,C813 +1122,C880 1122,C880 +1122,C8ED 1122,C8ED +1122,C95A 1122,C95A +1122,C9C7 1122,C9C7 +1122,CA34 1122,CA34 +1122,CAA1 1122,CAA1 +1122,CB0D 1122,CB0D +1122,CB7A 1122,CB7A +1122,CBE7 1122,CBE7 +1122,CC54 1122,CC54 +1122,CCC1 1122,CCC1 +1122,CD2E 1122,CD2E +1122,CD9B 1122,CD9B +1122,CE08 1122,CE08 +1122,CE75 1122,CE75 +1122,CEE1 1122,CEE1 +1122,CF4E 1122,CF4E +1122,CFBB 1122,CFBB +1122,D028 1122,D028 +1122,D095 1122,D095 +1122,D102 1122,D102 +1122,D16F 1122,D16F +1122,D1DC 1122,D1DC +1122,D249 1122,D249 +1122,D2B5 1122,D2B5 +1122,D322 1122,D322 +1122,D38F 1122,D38F +1122,D3FC 1122,D3FC +1122,D469 1122,D469 +1122,D4D6 1122,D4D6 +1122,D543 1122,D543 +1122,D5B0 1122,D5B0 +1122,D61D 1122,D61D +1122,D689 1122,D689 +1122,D6F6 1122,D6F6 +1122,D763 1122,D763 +1123,AC01 1123,AC01 +1123,AC6D 1123,AC6D +1123,ACDA 1123,ACDA +1123,AD47 1123,AD47 +1123,ADB4 1123,ADB4 +1123,AE21 1123,AE21 +1123,AE8E 1123,AE8E +1123,AEFB 1123,AEFB +1123,AF68 1123,AF68 +1123,AFD5 1123,AFD5 +1123,B041 1123,B041 +1123,B0AE 1123,B0AE +1123,B11B 1123,B11B +1123,B188 1123,B188 +1123,B1F5 1123,B1F5 +1123,B262 1123,B262 +1123,B2CF 1123,B2CF +1123,B33C 1123,B33C +1123,B3A9 1123,B3A9 +1123,B415 1123,B415 +1123,B482 1123,B482 +1123,B4EF 1123,B4EF +1123,B55C 1123,B55C +1123,B5C9 1123,B5C9 +1123,B636 1123,B636 +1123,B6A3 1123,B6A3 +1123,B710 1123,B710 +1123,B77D 1123,B77D +1123,B7E9 1123,B7E9 +1123,B856 1123,B856 +1123,B8C3 1123,B8C3 +1123,B930 1123,B930 +1123,B99D 1123,B99D +1123,BA0A 1123,BA0A +1123,BA77 1123,BA77 +1123,BAE4 1123,BAE4 +1123,BB51 1123,BB51 +1123,BBBD 1123,BBBD +1123,BC2A 1123,BC2A +1123,BC97 1123,BC97 +1123,BD04 1123,BD04 +1123,BD71 1123,BD71 +1123,BDDE 1123,BDDE +1123,BE4B 1123,BE4B +1123,BEB8 1123,BEB8 +1123,BF25 1123,BF25 +1123,BF91 1123,BF91 +1123,BFFE 1123,BFFE +1123,C06B 1123,C06B +1123,C0D8 1123,C0D8 +1123,C145 1123,C145 +1123,C1B2 1123,C1B2 +1123,C21F 1123,C21F +1123,C28C 1123,C28C +1123,C2F9 1123,C2F9 +1123,C365 1123,C365 +1123,C3D2 1123,C3D2 +1123,C43F 1123,C43F +1123,C4AC 1123,C4AC +1123,C519 1123,C519 +1123,C586 1123,C586 +1123,C5F3 1123,C5F3 +1123,C660 1123,C660 +1123,C6CD 1123,C6CD +1123,C739 1123,C739 +1123,C7A6 1123,C7A6 +1123,C813 1123,C813 +1123,C880 1123,C880 +1123,C8ED 1123,C8ED +1123,C95A 1123,C95A +1123,C9C7 1123,C9C7 +1123,CA34 1123,CA34 +1123,CAA1 1123,CAA1 +1123,CB0D 1123,CB0D +1123,CB7A 1123,CB7A +1123,CBE7 1123,CBE7 +1123,CC54 1123,CC54 +1123,CCC1 1123,CCC1 +1123,CD2E 1123,CD2E +1123,CD9B 1123,CD9B +1123,CE08 1123,CE08 +1123,CE75 1123,CE75 +1123,CEE1 1123,CEE1 +1123,CF4E 1123,CF4E +1123,CFBB 1123,CFBB +1123,D028 1123,D028 +1123,D095 1123,D095 +1123,D102 1123,D102 +1123,D16F 1123,D16F +1123,D1DC 1123,D1DC +1123,D249 1123,D249 +1123,D2B5 1123,D2B5 +1123,D322 1123,D322 +1123,D38F 1123,D38F +1123,D3FC 1123,D3FC +1123,D469 1123,D469 +1123,D4D6 1123,D4D6 +1123,D543 1123,D543 +1123,D5B0 1123,D5B0 +1123,D61D 1123,D61D +1123,D689 1123,D689 +1123,D6F6 1123,D6F6 +1123,D763 1123,D763 +1124,AC01 1124,AC01 +1124,AC6D 1124,AC6D +1124,ACDA 1124,ACDA +1124,AD47 1124,AD47 +1124,ADB4 1124,ADB4 +1124,AE21 1124,AE21 +1124,AE8E 1124,AE8E +1124,AEFB 1124,AEFB +1124,AF68 1124,AF68 +1124,AFD5 1124,AFD5 +1124,B041 1124,B041 +1124,B0AE 1124,B0AE +1124,B11B 1124,B11B +1124,B188 1124,B188 +1124,B1F5 1124,B1F5 +1124,B262 1124,B262 +1124,B2CF 1124,B2CF +1124,B33C 1124,B33C +1124,B3A9 1124,B3A9 +1124,B415 1124,B415 +1124,B482 1124,B482 +1124,B4EF 1124,B4EF +1124,B55C 1124,B55C +1124,B5C9 1124,B5C9 +1124,B636 1124,B636 +1124,B6A3 1124,B6A3 +1124,B710 1124,B710 +1124,B77D 1124,B77D +1124,B7E9 1124,B7E9 +1124,B856 1124,B856 +1124,B8C3 1124,B8C3 +1124,B930 1124,B930 +1124,B99D 1124,B99D +1124,BA0A 1124,BA0A +1124,BA77 1124,BA77 +1124,BAE4 1124,BAE4 +1124,BB51 1124,BB51 +1124,BBBD 1124,BBBD +1124,BC2A 1124,BC2A +1124,BC97 1124,BC97 +1124,BD04 1124,BD04 +1124,BD71 1124,BD71 +1124,BDDE 1124,BDDE +1124,BE4B 1124,BE4B +1124,BEB8 1124,BEB8 +1124,BF25 1124,BF25 +1124,BF91 1124,BF91 +1124,BFFE 1124,BFFE +1124,C06B 1124,C06B +1124,C0D8 1124,C0D8 +1124,C145 1124,C145 +1124,C1B2 1124,C1B2 +1124,C21F 1124,C21F +1124,C28C 1124,C28C +1124,C2F9 1124,C2F9 +1124,C365 1124,C365 +1124,C3D2 1124,C3D2 +1124,C43F 1124,C43F +1124,C4AC 1124,C4AC +1124,C519 1124,C519 +1124,C586 1124,C586 +1124,C5F3 1124,C5F3 +1124,C660 1124,C660 +1124,C6CD 1124,C6CD +1124,C739 1124,C739 +1124,C7A6 1124,C7A6 +1124,C813 1124,C813 +1124,C880 1124,C880 +1124,C8ED 1124,C8ED +1124,C95A 1124,C95A +1124,C9C7 1124,C9C7 +1124,CA34 1124,CA34 +1124,CAA1 1124,CAA1 +1124,CB0D 1124,CB0D +1124,CB7A 1124,CB7A +1124,CBE7 1124,CBE7 +1124,CC54 1124,CC54 +1124,CCC1 1124,CCC1 +1124,CD2E 1124,CD2E +1124,CD9B 1124,CD9B +1124,CE08 1124,CE08 +1124,CE75 1124,CE75 +1124,CEE1 1124,CEE1 +1124,CF4E 1124,CF4E +1124,CFBB 1124,CFBB +1124,D028 1124,D028 +1124,D095 1124,D095 +1124,D102 1124,D102 +1124,D16F 1124,D16F +1124,D1DC 1124,D1DC +1124,D249 1124,D249 +1124,D2B5 1124,D2B5 +1124,D322 1124,D322 +1124,D38F 1124,D38F +1124,D3FC 1124,D3FC +1124,D469 1124,D469 +1124,D4D6 1124,D4D6 +1124,D543 1124,D543 +1124,D5B0 1124,D5B0 +1124,D61D 1124,D61D +1124,D689 1124,D689 +1124,D6F6 1124,D6F6 +1124,D763 1124,D763 +1125,AC01 1125,AC01 +1125,AC6D 1125,AC6D +1125,ACDA 1125,ACDA +1125,AD47 1125,AD47 +1125,ADB4 1125,ADB4 +1125,AE21 1125,AE21 +1125,AE8E 1125,AE8E +1125,AEFB 1125,AEFB +1125,AF68 1125,AF68 +1125,AFD5 1125,AFD5 +1125,B041 1125,B041 +1125,B0AE 1125,B0AE +1125,B11B 1125,B11B +1125,B188 1125,B188 +1125,B1F5 1125,B1F5 +1125,B262 1125,B262 +1125,B2CF 1125,B2CF +1125,B33C 1125,B33C +1125,B3A9 1125,B3A9 +1125,B415 1125,B415 +1125,B482 1125,B482 +1125,B4EF 1125,B4EF +1125,B55C 1125,B55C +1125,B5C9 1125,B5C9 +1125,B636 1125,B636 +1125,B6A3 1125,B6A3 +1125,B710 1125,B710 +1125,B77D 1125,B77D +1125,B7E9 1125,B7E9 +1125,B856 1125,B856 +1125,B8C3 1125,B8C3 +1125,B930 1125,B930 +1125,B99D 1125,B99D +1125,BA0A 1125,BA0A +1125,BA77 1125,BA77 +1125,BAE4 1125,BAE4 +1125,BB51 1125,BB51 +1125,BBBD 1125,BBBD +1125,BC2A 1125,BC2A +1125,BC97 1125,BC97 +1125,BD04 1125,BD04 +1125,BD71 1125,BD71 +1125,BDDE 1125,BDDE +1125,BE4B 1125,BE4B +1125,BEB8 1125,BEB8 +1125,BF25 1125,BF25 +1125,BF91 1125,BF91 +1125,BFFE 1125,BFFE +1125,C06B 1125,C06B +1125,C0D8 1125,C0D8 +1125,C145 1125,C145 +1125,C1B2 1125,C1B2 +1125,C21F 1125,C21F +1125,C28C 1125,C28C +1125,C2F9 1125,C2F9 +1125,C365 1125,C365 +1125,C3D2 1125,C3D2 +1125,C43F 1125,C43F +1125,C4AC 1125,C4AC +1125,C519 1125,C519 +1125,C586 1125,C586 +1125,C5F3 1125,C5F3 +1125,C660 1125,C660 +1125,C6CD 1125,C6CD +1125,C739 1125,C739 +1125,C7A6 1125,C7A6 +1125,C813 1125,C813 +1125,C880 1125,C880 +1125,C8ED 1125,C8ED +1125,C95A 1125,C95A +1125,C9C7 1125,C9C7 +1125,CA34 1125,CA34 +1125,CAA1 1125,CAA1 +1125,CB0D 1125,CB0D +1125,CB7A 1125,CB7A +1125,CBE7 1125,CBE7 +1125,CC54 1125,CC54 +1125,CCC1 1125,CCC1 +1125,CD2E 1125,CD2E +1125,CD9B 1125,CD9B +1125,CE08 1125,CE08 +1125,CE75 1125,CE75 +1125,CEE1 1125,CEE1 +1125,CF4E 1125,CF4E +1125,CFBB 1125,CFBB +1125,D028 1125,D028 +1125,D095 1125,D095 +1125,D102 1125,D102 +1125,D16F 1125,D16F +1125,D1DC 1125,D1DC +1125,D249 1125,D249 +1125,D2B5 1125,D2B5 +1125,D322 1125,D322 +1125,D38F 1125,D38F +1125,D3FC 1125,D3FC +1125,D469 1125,D469 +1125,D4D6 1125,D4D6 +1125,D543 1125,D543 +1125,D5B0 1125,D5B0 +1125,D61D 1125,D61D +1125,D689 1125,D689 +1125,D6F6 1125,D6F6 +1125,D763 1125,D763 +1126,AC01 1126,AC01 +1126,AC6D 1126,AC6D +1126,ACDA 1126,ACDA +1126,AD47 1126,AD47 +1126,ADB4 1126,ADB4 +1126,AE21 1126,AE21 +1126,AE8E 1126,AE8E +1126,AEFB 1126,AEFB +1126,AF68 1126,AF68 +1126,AFD5 1126,AFD5 +1126,B041 1126,B041 +1126,B0AE 1126,B0AE +1126,B11B 1126,B11B +1126,B188 1126,B188 +1126,B1F5 1126,B1F5 +1126,B262 1126,B262 +1126,B2CF 1126,B2CF +1126,B33C 1126,B33C +1126,B3A9 1126,B3A9 +1126,B415 1126,B415 +1126,B482 1126,B482 +1126,B4EF 1126,B4EF +1126,B55C 1126,B55C +1126,B5C9 1126,B5C9 +1126,B636 1126,B636 +1126,B6A3 1126,B6A3 +1126,B710 1126,B710 +1126,B77D 1126,B77D +1126,B7E9 1126,B7E9 +1126,B856 1126,B856 +1126,B8C3 1126,B8C3 +1126,B930 1126,B930 +1126,B99D 1126,B99D +1126,BA0A 1126,BA0A +1126,BA77 1126,BA77 +1126,BAE4 1126,BAE4 +1126,BB51 1126,BB51 +1126,BBBD 1126,BBBD +1126,BC2A 1126,BC2A +1126,BC97 1126,BC97 +1126,BD04 1126,BD04 +1126,BD71 1126,BD71 +1126,BDDE 1126,BDDE +1126,BE4B 1126,BE4B +1126,BEB8 1126,BEB8 +1126,BF25 1126,BF25 +1126,BF91 1126,BF91 +1126,BFFE 1126,BFFE +1126,C06B 1126,C06B +1126,C0D8 1126,C0D8 +1126,C145 1126,C145 +1126,C1B2 1126,C1B2 +1126,C21F 1126,C21F +1126,C28C 1126,C28C +1126,C2F9 1126,C2F9 +1126,C365 1126,C365 +1126,C3D2 1126,C3D2 +1126,C43F 1126,C43F +1126,C4AC 1126,C4AC +1126,C519 1126,C519 +1126,C586 1126,C586 +1126,C5F3 1126,C5F3 +1126,C660 1126,C660 +1126,C6CD 1126,C6CD +1126,C739 1126,C739 +1126,C7A6 1126,C7A6 +1126,C813 1126,C813 +1126,C880 1126,C880 +1126,C8ED 1126,C8ED +1126,C95A 1126,C95A +1126,C9C7 1126,C9C7 +1126,CA34 1126,CA34 +1126,CAA1 1126,CAA1 +1126,CB0D 1126,CB0D +1126,CB7A 1126,CB7A +1126,CBE7 1126,CBE7 +1126,CC54 1126,CC54 +1126,CCC1 1126,CCC1 +1126,CD2E 1126,CD2E +1126,CD9B 1126,CD9B +1126,CE08 1126,CE08 +1126,CE75 1126,CE75 +1126,CEE1 1126,CEE1 +1126,CF4E 1126,CF4E +1126,CFBB 1126,CFBB +1126,D028 1126,D028 +1126,D095 1126,D095 +1126,D102 1126,D102 +1126,D16F 1126,D16F +1126,D1DC 1126,D1DC +1126,D249 1126,D249 +1126,D2B5 1126,D2B5 +1126,D322 1126,D322 +1126,D38F 1126,D38F +1126,D3FC 1126,D3FC +1126,D469 1126,D469 +1126,D4D6 1126,D4D6 +1126,D543 1126,D543 +1126,D5B0 1126,D5B0 +1126,D61D 1126,D61D +1126,D689 1126,D689 +1126,D6F6 1126,D6F6 +1126,D763 1126,D763 +1127,AC01 1127,AC01 +1127,AC6D 1127,AC6D +1127,ACDA 1127,ACDA +1127,AD47 1127,AD47 +1127,ADB4 1127,ADB4 +1127,AE21 1127,AE21 +1127,AE8E 1127,AE8E +1127,AEFB 1127,AEFB +1127,AF68 1127,AF68 +1127,AFD5 1127,AFD5 +1127,B041 1127,B041 +1127,B0AE 1127,B0AE +1127,B11B 1127,B11B +1127,B188 1127,B188 +1127,B1F5 1127,B1F5 +1127,B262 1127,B262 +1127,B2CF 1127,B2CF +1127,B33C 1127,B33C +1127,B3A9 1127,B3A9 +1127,B415 1127,B415 +1127,B482 1127,B482 +1127,B4EF 1127,B4EF +1127,B55C 1127,B55C +1127,B5C9 1127,B5C9 +1127,B636 1127,B636 +1127,B6A3 1127,B6A3 +1127,B710 1127,B710 +1127,B77D 1127,B77D +1127,B7E9 1127,B7E9 +1127,B856 1127,B856 +1127,B8C3 1127,B8C3 +1127,B930 1127,B930 +1127,B99D 1127,B99D +1127,BA0A 1127,BA0A +1127,BA77 1127,BA77 +1127,BAE4 1127,BAE4 +1127,BB51 1127,BB51 +1127,BBBD 1127,BBBD +1127,BC2A 1127,BC2A +1127,BC97 1127,BC97 +1127,BD04 1127,BD04 +1127,BD71 1127,BD71 +1127,BDDE 1127,BDDE +1127,BE4B 1127,BE4B +1127,BEB8 1127,BEB8 +1127,BF25 1127,BF25 +1127,BF91 1127,BF91 +1127,BFFE 1127,BFFE +1127,C06B 1127,C06B +1127,C0D8 1127,C0D8 +1127,C145 1127,C145 +1127,C1B2 1127,C1B2 +1127,C21F 1127,C21F +1127,C28C 1127,C28C +1127,C2F9 1127,C2F9 +1127,C365 1127,C365 +1127,C3D2 1127,C3D2 +1127,C43F 1127,C43F +1127,C4AC 1127,C4AC +1127,C519 1127,C519 +1127,C586 1127,C586 +1127,C5F3 1127,C5F3 +1127,C660 1127,C660 +1127,C6CD 1127,C6CD +1127,C739 1127,C739 +1127,C7A6 1127,C7A6 +1127,C813 1127,C813 +1127,C880 1127,C880 +1127,C8ED 1127,C8ED +1127,C95A 1127,C95A +1127,C9C7 1127,C9C7 +1127,CA34 1127,CA34 +1127,CAA1 1127,CAA1 +1127,CB0D 1127,CB0D +1127,CB7A 1127,CB7A +1127,CBE7 1127,CBE7 +1127,CC54 1127,CC54 +1127,CCC1 1127,CCC1 +1127,CD2E 1127,CD2E +1127,CD9B 1127,CD9B +1127,CE08 1127,CE08 +1127,CE75 1127,CE75 +1127,CEE1 1127,CEE1 +1127,CF4E 1127,CF4E +1127,CFBB 1127,CFBB +1127,D028 1127,D028 +1127,D095 1127,D095 +1127,D102 1127,D102 +1127,D16F 1127,D16F +1127,D1DC 1127,D1DC +1127,D249 1127,D249 +1127,D2B5 1127,D2B5 +1127,D322 1127,D322 +1127,D38F 1127,D38F +1127,D3FC 1127,D3FC +1127,D469 1127,D469 +1127,D4D6 1127,D4D6 +1127,D543 1127,D543 +1127,D5B0 1127,D5B0 +1127,D61D 1127,D61D +1127,D689 1127,D689 +1127,D6F6 1127,D6F6 +1127,D763 1127,D763 +1128,AC01 1128,AC01 +1128,AC6D 1128,AC6D +1128,ACDA 1128,ACDA +1128,AD47 1128,AD47 +1128,ADB4 1128,ADB4 +1128,AE21 1128,AE21 +1128,AE8E 1128,AE8E +1128,AEFB 1128,AEFB +1128,AF68 1128,AF68 +1128,AFD5 1128,AFD5 +1128,B041 1128,B041 +1128,B0AE 1128,B0AE +1128,B11B 1128,B11B +1128,B188 1128,B188 +1128,B1F5 1128,B1F5 +1128,B262 1128,B262 +1128,B2CF 1128,B2CF +1128,B33C 1128,B33C +1128,B3A9 1128,B3A9 +1128,B415 1128,B415 +1128,B482 1128,B482 +1128,B4EF 1128,B4EF +1128,B55C 1128,B55C +1128,B5C9 1128,B5C9 +1128,B636 1128,B636 +1128,B6A3 1128,B6A3 +1128,B710 1128,B710 +1128,B77D 1128,B77D +1128,B7E9 1128,B7E9 +1128,B856 1128,B856 +1128,B8C3 1128,B8C3 +1128,B930 1128,B930 +1128,B99D 1128,B99D +1128,BA0A 1128,BA0A +1128,BA77 1128,BA77 +1128,BAE4 1128,BAE4 +1128,BB51 1128,BB51 +1128,BBBD 1128,BBBD +1128,BC2A 1128,BC2A +1128,BC97 1128,BC97 +1128,BD04 1128,BD04 +1128,BD71 1128,BD71 +1128,BDDE 1128,BDDE +1128,BE4B 1128,BE4B +1128,BEB8 1128,BEB8 +1128,BF25 1128,BF25 +1128,BF91 1128,BF91 +1128,BFFE 1128,BFFE +1128,C06B 1128,C06B +1128,C0D8 1128,C0D8 +1128,C145 1128,C145 +1128,C1B2 1128,C1B2 +1128,C21F 1128,C21F +1128,C28C 1128,C28C +1128,C2F9 1128,C2F9 +1128,C365 1128,C365 +1128,C3D2 1128,C3D2 +1128,C43F 1128,C43F +1128,C4AC 1128,C4AC +1128,C519 1128,C519 +1128,C586 1128,C586 +1128,C5F3 1128,C5F3 +1128,C660 1128,C660 +1128,C6CD 1128,C6CD +1128,C739 1128,C739 +1128,C7A6 1128,C7A6 +1128,C813 1128,C813 +1128,C880 1128,C880 +1128,C8ED 1128,C8ED +1128,C95A 1128,C95A +1128,C9C7 1128,C9C7 +1128,CA34 1128,CA34 +1128,CAA1 1128,CAA1 +1128,CB0D 1128,CB0D +1128,CB7A 1128,CB7A +1128,CBE7 1128,CBE7 +1128,CC54 1128,CC54 +1128,CCC1 1128,CCC1 +1128,CD2E 1128,CD2E +1128,CD9B 1128,CD9B +1128,CE08 1128,CE08 +1128,CE75 1128,CE75 +1128,CEE1 1128,CEE1 +1128,CF4E 1128,CF4E +1128,CFBB 1128,CFBB +1128,D028 1128,D028 +1128,D095 1128,D095 +1128,D102 1128,D102 +1128,D16F 1128,D16F +1128,D1DC 1128,D1DC +1128,D249 1128,D249 +1128,D2B5 1128,D2B5 +1128,D322 1128,D322 +1128,D38F 1128,D38F +1128,D3FC 1128,D3FC +1128,D469 1128,D469 +1128,D4D6 1128,D4D6 +1128,D543 1128,D543 +1128,D5B0 1128,D5B0 +1128,D61D 1128,D61D +1128,D689 1128,D689 +1128,D6F6 1128,D6F6 +1128,D763 1128,D763 +1129,AC01 1129,AC01 +1129,AC6D 1129,AC6D +1129,ACDA 1129,ACDA +1129,AD47 1129,AD47 +1129,ADB4 1129,ADB4 +1129,AE21 1129,AE21 +1129,AE8E 1129,AE8E +1129,AEFB 1129,AEFB +1129,AF68 1129,AF68 +1129,AFD5 1129,AFD5 +1129,B041 1129,B041 +1129,B0AE 1129,B0AE +1129,B11B 1129,B11B +1129,B188 1129,B188 +1129,B1F5 1129,B1F5 +1129,B262 1129,B262 +1129,B2CF 1129,B2CF +1129,B33C 1129,B33C +1129,B3A9 1129,B3A9 +1129,B415 1129,B415 +1129,B482 1129,B482 +1129,B4EF 1129,B4EF +1129,B55C 1129,B55C +1129,B5C9 1129,B5C9 +1129,B636 1129,B636 +1129,B6A3 1129,B6A3 +1129,B710 1129,B710 +1129,B77D 1129,B77D +1129,B7E9 1129,B7E9 +1129,B856 1129,B856 +1129,B8C3 1129,B8C3 +1129,B930 1129,B930 +1129,B99D 1129,B99D +1129,BA0A 1129,BA0A +1129,BA77 1129,BA77 +1129,BAE4 1129,BAE4 +1129,BB51 1129,BB51 +1129,BBBD 1129,BBBD +1129,BC2A 1129,BC2A +1129,BC97 1129,BC97 +1129,BD04 1129,BD04 +1129,BD71 1129,BD71 +1129,BDDE 1129,BDDE +1129,BE4B 1129,BE4B +1129,BEB8 1129,BEB8 +1129,BF25 1129,BF25 +1129,BF91 1129,BF91 +1129,BFFE 1129,BFFE +1129,C06B 1129,C06B +1129,C0D8 1129,C0D8 +1129,C145 1129,C145 +1129,C1B2 1129,C1B2 +1129,C21F 1129,C21F +1129,C28C 1129,C28C +1129,C2F9 1129,C2F9 +1129,C365 1129,C365 +1129,C3D2 1129,C3D2 +1129,C43F 1129,C43F +1129,C4AC 1129,C4AC +1129,C519 1129,C519 +1129,C586 1129,C586 +1129,C5F3 1129,C5F3 +1129,C660 1129,C660 +1129,C6CD 1129,C6CD +1129,C739 1129,C739 +1129,C7A6 1129,C7A6 +1129,C813 1129,C813 +1129,C880 1129,C880 +1129,C8ED 1129,C8ED +1129,C95A 1129,C95A +1129,C9C7 1129,C9C7 +1129,CA34 1129,CA34 +1129,CAA1 1129,CAA1 +1129,CB0D 1129,CB0D +1129,CB7A 1129,CB7A +1129,CBE7 1129,CBE7 +1129,CC54 1129,CC54 +1129,CCC1 1129,CCC1 +1129,CD2E 1129,CD2E +1129,CD9B 1129,CD9B +1129,CE08 1129,CE08 +1129,CE75 1129,CE75 +1129,CEE1 1129,CEE1 +1129,CF4E 1129,CF4E +1129,CFBB 1129,CFBB +1129,D028 1129,D028 +1129,D095 1129,D095 +1129,D102 1129,D102 +1129,D16F 1129,D16F +1129,D1DC 1129,D1DC +1129,D249 1129,D249 +1129,D2B5 1129,D2B5 +1129,D322 1129,D322 +1129,D38F 1129,D38F +1129,D3FC 1129,D3FC +1129,D469 1129,D469 +1129,D4D6 1129,D4D6 +1129,D543 1129,D543 +1129,D5B0 1129,D5B0 +1129,D61D 1129,D61D +1129,D689 1129,D689 +1129,D6F6 1129,D6F6 +1129,D763 1129,D763 +112A,AC01 112A,AC01 +112A,AC6D 112A,AC6D +112A,ACDA 112A,ACDA +112A,AD47 112A,AD47 +112A,ADB4 112A,ADB4 +112A,AE21 112A,AE21 +112A,AE8E 112A,AE8E +112A,AEFB 112A,AEFB +112A,AF68 112A,AF68 +112A,AFD5 112A,AFD5 +112A,B041 112A,B041 +112A,B0AE 112A,B0AE +112A,B11B 112A,B11B +112A,B188 112A,B188 +112A,B1F5 112A,B1F5 +112A,B262 112A,B262 +112A,B2CF 112A,B2CF +112A,B33C 112A,B33C +112A,B3A9 112A,B3A9 +112A,B415 112A,B415 +112A,B482 112A,B482 +112A,B4EF 112A,B4EF +112A,B55C 112A,B55C +112A,B5C9 112A,B5C9 +112A,B636 112A,B636 +112A,B6A3 112A,B6A3 +112A,B710 112A,B710 +112A,B77D 112A,B77D +112A,B7E9 112A,B7E9 +112A,B856 112A,B856 +112A,B8C3 112A,B8C3 +112A,B930 112A,B930 +112A,B99D 112A,B99D +112A,BA0A 112A,BA0A +112A,BA77 112A,BA77 +112A,BAE4 112A,BAE4 +112A,BB51 112A,BB51 +112A,BBBD 112A,BBBD +112A,BC2A 112A,BC2A +112A,BC97 112A,BC97 +112A,BD04 112A,BD04 +112A,BD71 112A,BD71 +112A,BDDE 112A,BDDE +112A,BE4B 112A,BE4B +112A,BEB8 112A,BEB8 +112A,BF25 112A,BF25 +112A,BF91 112A,BF91 +112A,BFFE 112A,BFFE +112A,C06B 112A,C06B +112A,C0D8 112A,C0D8 +112A,C145 112A,C145 +112A,C1B2 112A,C1B2 +112A,C21F 112A,C21F +112A,C28C 112A,C28C +112A,C2F9 112A,C2F9 +112A,C365 112A,C365 +112A,C3D2 112A,C3D2 +112A,C43F 112A,C43F +112A,C4AC 112A,C4AC +112A,C519 112A,C519 +112A,C586 112A,C586 +112A,C5F3 112A,C5F3 +112A,C660 112A,C660 +112A,C6CD 112A,C6CD +112A,C739 112A,C739 +112A,C7A6 112A,C7A6 +112A,C813 112A,C813 +112A,C880 112A,C880 +112A,C8ED 112A,C8ED +112A,C95A 112A,C95A +112A,C9C7 112A,C9C7 +112A,CA34 112A,CA34 +112A,CAA1 112A,CAA1 +112A,CB0D 112A,CB0D +112A,CB7A 112A,CB7A +112A,CBE7 112A,CBE7 +112A,CC54 112A,CC54 +112A,CCC1 112A,CCC1 +112A,CD2E 112A,CD2E +112A,CD9B 112A,CD9B +112A,CE08 112A,CE08 +112A,CE75 112A,CE75 +112A,CEE1 112A,CEE1 +112A,CF4E 112A,CF4E +112A,CFBB 112A,CFBB +112A,D028 112A,D028 +112A,D095 112A,D095 +112A,D102 112A,D102 +112A,D16F 112A,D16F +112A,D1DC 112A,D1DC +112A,D249 112A,D249 +112A,D2B5 112A,D2B5 +112A,D322 112A,D322 +112A,D38F 112A,D38F +112A,D3FC 112A,D3FC +112A,D469 112A,D469 +112A,D4D6 112A,D4D6 +112A,D543 112A,D543 +112A,D5B0 112A,D5B0 +112A,D61D 112A,D61D +112A,D689 112A,D689 +112A,D6F6 112A,D6F6 +112A,D763 112A,D763 +112B,AC01 112B,AC01 +112B,AC6D 112B,AC6D +112B,ACDA 112B,ACDA +112B,AD47 112B,AD47 +112B,ADB4 112B,ADB4 +112B,AE21 112B,AE21 +112B,AE8E 112B,AE8E +112B,AEFB 112B,AEFB +112B,AF68 112B,AF68 +112B,AFD5 112B,AFD5 +112B,B041 112B,B041 +112B,B0AE 112B,B0AE +112B,B11B 112B,B11B +112B,B188 112B,B188 +112B,B1F5 112B,B1F5 +112B,B262 112B,B262 +112B,B2CF 112B,B2CF +112B,B33C 112B,B33C +112B,B3A9 112B,B3A9 +112B,B415 112B,B415 +112B,B482 112B,B482 +112B,B4EF 112B,B4EF +112B,B55C 112B,B55C +112B,B5C9 112B,B5C9 +112B,B636 112B,B636 +112B,B6A3 112B,B6A3 +112B,B710 112B,B710 +112B,B77D 112B,B77D +112B,B7E9 112B,B7E9 +112B,B856 112B,B856 +112B,B8C3 112B,B8C3 +112B,B930 112B,B930 +112B,B99D 112B,B99D +112B,BA0A 112B,BA0A +112B,BA77 112B,BA77 +112B,BAE4 112B,BAE4 +112B,BB51 112B,BB51 +112B,BBBD 112B,BBBD +112B,BC2A 112B,BC2A +112B,BC97 112B,BC97 +112B,BD04 112B,BD04 +112B,BD71 112B,BD71 +112B,BDDE 112B,BDDE +112B,BE4B 112B,BE4B +112B,BEB8 112B,BEB8 +112B,BF25 112B,BF25 +112B,BF91 112B,BF91 +112B,BFFE 112B,BFFE +112B,C06B 112B,C06B +112B,C0D8 112B,C0D8 +112B,C145 112B,C145 +112B,C1B2 112B,C1B2 +112B,C21F 112B,C21F +112B,C28C 112B,C28C +112B,C2F9 112B,C2F9 +112B,C365 112B,C365 +112B,C3D2 112B,C3D2 +112B,C43F 112B,C43F +112B,C4AC 112B,C4AC +112B,C519 112B,C519 +112B,C586 112B,C586 +112B,C5F3 112B,C5F3 +112B,C660 112B,C660 +112B,C6CD 112B,C6CD +112B,C739 112B,C739 +112B,C7A6 112B,C7A6 +112B,C813 112B,C813 +112B,C880 112B,C880 +112B,C8ED 112B,C8ED +112B,C95A 112B,C95A +112B,C9C7 112B,C9C7 +112B,CA34 112B,CA34 +112B,CAA1 112B,CAA1 +112B,CB0D 112B,CB0D +112B,CB7A 112B,CB7A +112B,CBE7 112B,CBE7 +112B,CC54 112B,CC54 +112B,CCC1 112B,CCC1 +112B,CD2E 112B,CD2E +112B,CD9B 112B,CD9B +112B,CE08 112B,CE08 +112B,CE75 112B,CE75 +112B,CEE1 112B,CEE1 +112B,CF4E 112B,CF4E +112B,CFBB 112B,CFBB +112B,D028 112B,D028 +112B,D095 112B,D095 +112B,D102 112B,D102 +112B,D16F 112B,D16F +112B,D1DC 112B,D1DC +112B,D249 112B,D249 +112B,D2B5 112B,D2B5 +112B,D322 112B,D322 +112B,D38F 112B,D38F +112B,D3FC 112B,D3FC +112B,D469 112B,D469 +112B,D4D6 112B,D4D6 +112B,D543 112B,D543 +112B,D5B0 112B,D5B0 +112B,D61D 112B,D61D +112B,D689 112B,D689 +112B,D6F6 112B,D6F6 +112B,D763 112B,D763 +112C,AC01 112C,AC01 +112C,AC6D 112C,AC6D +112C,ACDA 112C,ACDA +112C,AD47 112C,AD47 +112C,ADB4 112C,ADB4 +112C,AE21 112C,AE21 +112C,AE8E 112C,AE8E +112C,AEFB 112C,AEFB +112C,AF68 112C,AF68 +112C,AFD5 112C,AFD5 +112C,B041 112C,B041 +112C,B0AE 112C,B0AE +112C,B11B 112C,B11B +112C,B188 112C,B188 +112C,B1F5 112C,B1F5 +112C,B262 112C,B262 +112C,B2CF 112C,B2CF +112C,B33C 112C,B33C +112C,B3A9 112C,B3A9 +112C,B415 112C,B415 +112C,B482 112C,B482 +112C,B4EF 112C,B4EF +112C,B55C 112C,B55C +112C,B5C9 112C,B5C9 +112C,B636 112C,B636 +112C,B6A3 112C,B6A3 +112C,B710 112C,B710 +112C,B77D 112C,B77D +112C,B7E9 112C,B7E9 +112C,B856 112C,B856 +112C,B8C3 112C,B8C3 +112C,B930 112C,B930 +112C,B99D 112C,B99D +112C,BA0A 112C,BA0A +112C,BA77 112C,BA77 +112C,BAE4 112C,BAE4 +112C,BB51 112C,BB51 +112C,BBBD 112C,BBBD +112C,BC2A 112C,BC2A +112C,BC97 112C,BC97 +112C,BD04 112C,BD04 +112C,BD71 112C,BD71 +112C,BDDE 112C,BDDE +112C,BE4B 112C,BE4B +112C,BEB8 112C,BEB8 +112C,BF25 112C,BF25 +112C,BF91 112C,BF91 +112C,BFFE 112C,BFFE +112C,C06B 112C,C06B +112C,C0D8 112C,C0D8 +112C,C145 112C,C145 +112C,C1B2 112C,C1B2 +112C,C21F 112C,C21F +112C,C28C 112C,C28C +112C,C2F9 112C,C2F9 +112C,C365 112C,C365 +112C,C3D2 112C,C3D2 +112C,C43F 112C,C43F +112C,C4AC 112C,C4AC +112C,C519 112C,C519 +112C,C586 112C,C586 +112C,C5F3 112C,C5F3 +112C,C660 112C,C660 +112C,C6CD 112C,C6CD +112C,C739 112C,C739 +112C,C7A6 112C,C7A6 +112C,C813 112C,C813 +112C,C880 112C,C880 +112C,C8ED 112C,C8ED +112C,C95A 112C,C95A +112C,C9C7 112C,C9C7 +112C,CA34 112C,CA34 +112C,CAA1 112C,CAA1 +112C,CB0D 112C,CB0D +112C,CB7A 112C,CB7A +112C,CBE7 112C,CBE7 +112C,CC54 112C,CC54 +112C,CCC1 112C,CCC1 +112C,CD2E 112C,CD2E +112C,CD9B 112C,CD9B +112C,CE08 112C,CE08 +112C,CE75 112C,CE75 +112C,CEE1 112C,CEE1 +112C,CF4E 112C,CF4E +112C,CFBB 112C,CFBB +112C,D028 112C,D028 +112C,D095 112C,D095 +112C,D102 112C,D102 +112C,D16F 112C,D16F +112C,D1DC 112C,D1DC +112C,D249 112C,D249 +112C,D2B5 112C,D2B5 +112C,D322 112C,D322 +112C,D38F 112C,D38F +112C,D3FC 112C,D3FC +112C,D469 112C,D469 +112C,D4D6 112C,D4D6 +112C,D543 112C,D543 +112C,D5B0 112C,D5B0 +112C,D61D 112C,D61D +112C,D689 112C,D689 +112C,D6F6 112C,D6F6 +112C,D763 112C,D763 +112D,AC01 112D,AC01 +112D,AC6D 112D,AC6D +112D,ACDA 112D,ACDA +112D,AD47 112D,AD47 +112D,ADB4 112D,ADB4 +112D,AE21 112D,AE21 +112D,AE8E 112D,AE8E +112D,AEFB 112D,AEFB +112D,AF68 112D,AF68 +112D,AFD5 112D,AFD5 +112D,B041 112D,B041 +112D,B0AE 112D,B0AE +112D,B11B 112D,B11B +112D,B188 112D,B188 +112D,B1F5 112D,B1F5 +112D,B262 112D,B262 +112D,B2CF 112D,B2CF +112D,B33C 112D,B33C +112D,B3A9 112D,B3A9 +112D,B415 112D,B415 +112D,B482 112D,B482 +112D,B4EF 112D,B4EF +112D,B55C 112D,B55C +112D,B5C9 112D,B5C9 +112D,B636 112D,B636 +112D,B6A3 112D,B6A3 +112D,B710 112D,B710 +112D,B77D 112D,B77D +112D,B7E9 112D,B7E9 +112D,B856 112D,B856 +112D,B8C3 112D,B8C3 +112D,B930 112D,B930 +112D,B99D 112D,B99D +112D,BA0A 112D,BA0A +112D,BA77 112D,BA77 +112D,BAE4 112D,BAE4 +112D,BB51 112D,BB51 +112D,BBBD 112D,BBBD +112D,BC2A 112D,BC2A +112D,BC97 112D,BC97 +112D,BD04 112D,BD04 +112D,BD71 112D,BD71 +112D,BDDE 112D,BDDE +112D,BE4B 112D,BE4B +112D,BEB8 112D,BEB8 +112D,BF25 112D,BF25 +112D,BF91 112D,BF91 +112D,BFFE 112D,BFFE +112D,C06B 112D,C06B +112D,C0D8 112D,C0D8 +112D,C145 112D,C145 +112D,C1B2 112D,C1B2 +112D,C21F 112D,C21F +112D,C28C 112D,C28C +112D,C2F9 112D,C2F9 +112D,C365 112D,C365 +112D,C3D2 112D,C3D2 +112D,C43F 112D,C43F +112D,C4AC 112D,C4AC +112D,C519 112D,C519 +112D,C586 112D,C586 +112D,C5F3 112D,C5F3 +112D,C660 112D,C660 +112D,C6CD 112D,C6CD +112D,C739 112D,C739 +112D,C7A6 112D,C7A6 +112D,C813 112D,C813 +112D,C880 112D,C880 +112D,C8ED 112D,C8ED +112D,C95A 112D,C95A +112D,C9C7 112D,C9C7 +112D,CA34 112D,CA34 +112D,CAA1 112D,CAA1 +112D,CB0D 112D,CB0D +112D,CB7A 112D,CB7A +112D,CBE7 112D,CBE7 +112D,CC54 112D,CC54 +112D,CCC1 112D,CCC1 +112D,CD2E 112D,CD2E +112D,CD9B 112D,CD9B +112D,CE08 112D,CE08 +112D,CE75 112D,CE75 +112D,CEE1 112D,CEE1 +112D,CF4E 112D,CF4E +112D,CFBB 112D,CFBB +112D,D028 112D,D028 +112D,D095 112D,D095 +112D,D102 112D,D102 +112D,D16F 112D,D16F +112D,D1DC 112D,D1DC +112D,D249 112D,D249 +112D,D2B5 112D,D2B5 +112D,D322 112D,D322 +112D,D38F 112D,D38F +112D,D3FC 112D,D3FC +112D,D469 112D,D469 +112D,D4D6 112D,D4D6 +112D,D543 112D,D543 +112D,D5B0 112D,D5B0 +112D,D61D 112D,D61D +112D,D689 112D,D689 +112D,D6F6 112D,D6F6 +112D,D763 112D,D763 +112E,AC01 112E,AC01 +112E,AC6D 112E,AC6D +112E,ACDA 112E,ACDA +112E,AD47 112E,AD47 +112E,ADB4 112E,ADB4 +112E,AE21 112E,AE21 +112E,AE8E 112E,AE8E +112E,AEFB 112E,AEFB +112E,AF68 112E,AF68 +112E,AFD5 112E,AFD5 +112E,B041 112E,B041 +112E,B0AE 112E,B0AE +112E,B11B 112E,B11B +112E,B188 112E,B188 +112E,B1F5 112E,B1F5 +112E,B262 112E,B262 +112E,B2CF 112E,B2CF +112E,B33C 112E,B33C +112E,B3A9 112E,B3A9 +112E,B415 112E,B415 +112E,B482 112E,B482 +112E,B4EF 112E,B4EF +112E,B55C 112E,B55C +112E,B5C9 112E,B5C9 +112E,B636 112E,B636 +112E,B6A3 112E,B6A3 +112E,B710 112E,B710 +112E,B77D 112E,B77D +112E,B7E9 112E,B7E9 +112E,B856 112E,B856 +112E,B8C3 112E,B8C3 +112E,B930 112E,B930 +112E,B99D 112E,B99D +112E,BA0A 112E,BA0A +112E,BA77 112E,BA77 +112E,BAE4 112E,BAE4 +112E,BB51 112E,BB51 +112E,BBBD 112E,BBBD +112E,BC2A 112E,BC2A +112E,BC97 112E,BC97 +112E,BD04 112E,BD04 +112E,BD71 112E,BD71 +112E,BDDE 112E,BDDE +112E,BE4B 112E,BE4B +112E,BEB8 112E,BEB8 +112E,BF25 112E,BF25 +112E,BF91 112E,BF91 +112E,BFFE 112E,BFFE +112E,C06B 112E,C06B +112E,C0D8 112E,C0D8 +112E,C145 112E,C145 +112E,C1B2 112E,C1B2 +112E,C21F 112E,C21F +112E,C28C 112E,C28C +112E,C2F9 112E,C2F9 +112E,C365 112E,C365 +112E,C3D2 112E,C3D2 +112E,C43F 112E,C43F +112E,C4AC 112E,C4AC +112E,C519 112E,C519 +112E,C586 112E,C586 +112E,C5F3 112E,C5F3 +112E,C660 112E,C660 +112E,C6CD 112E,C6CD +112E,C739 112E,C739 +112E,C7A6 112E,C7A6 +112E,C813 112E,C813 +112E,C880 112E,C880 +112E,C8ED 112E,C8ED +112E,C95A 112E,C95A +112E,C9C7 112E,C9C7 +112E,CA34 112E,CA34 +112E,CAA1 112E,CAA1 +112E,CB0D 112E,CB0D +112E,CB7A 112E,CB7A +112E,CBE7 112E,CBE7 +112E,CC54 112E,CC54 +112E,CCC1 112E,CCC1 +112E,CD2E 112E,CD2E +112E,CD9B 112E,CD9B +112E,CE08 112E,CE08 +112E,CE75 112E,CE75 +112E,CEE1 112E,CEE1 +112E,CF4E 112E,CF4E +112E,CFBB 112E,CFBB +112E,D028 112E,D028 +112E,D095 112E,D095 +112E,D102 112E,D102 +112E,D16F 112E,D16F +112E,D1DC 112E,D1DC +112E,D249 112E,D249 +112E,D2B5 112E,D2B5 +112E,D322 112E,D322 +112E,D38F 112E,D38F +112E,D3FC 112E,D3FC +112E,D469 112E,D469 +112E,D4D6 112E,D4D6 +112E,D543 112E,D543 +112E,D5B0 112E,D5B0 +112E,D61D 112E,D61D +112E,D689 112E,D689 +112E,D6F6 112E,D6F6 +112E,D763 112E,D763 +112F,AC01 112F,AC01 +112F,AC6D 112F,AC6D +112F,ACDA 112F,ACDA +112F,AD47 112F,AD47 +112F,ADB4 112F,ADB4 +112F,AE21 112F,AE21 +112F,AE8E 112F,AE8E +112F,AEFB 112F,AEFB +112F,AF68 112F,AF68 +112F,AFD5 112F,AFD5 +112F,B041 112F,B041 +112F,B0AE 112F,B0AE +112F,B11B 112F,B11B +112F,B188 112F,B188 +112F,B1F5 112F,B1F5 +112F,B262 112F,B262 +112F,B2CF 112F,B2CF +112F,B33C 112F,B33C +112F,B3A9 112F,B3A9 +112F,B415 112F,B415 +112F,B482 112F,B482 +112F,B4EF 112F,B4EF +112F,B55C 112F,B55C +112F,B5C9 112F,B5C9 +112F,B636 112F,B636 +112F,B6A3 112F,B6A3 +112F,B710 112F,B710 +112F,B77D 112F,B77D +112F,B7E9 112F,B7E9 +112F,B856 112F,B856 +112F,B8C3 112F,B8C3 +112F,B930 112F,B930 +112F,B99D 112F,B99D +112F,BA0A 112F,BA0A +112F,BA77 112F,BA77 +112F,BAE4 112F,BAE4 +112F,BB51 112F,BB51 +112F,BBBD 112F,BBBD +112F,BC2A 112F,BC2A +112F,BC97 112F,BC97 +112F,BD04 112F,BD04 +112F,BD71 112F,BD71 +112F,BDDE 112F,BDDE +112F,BE4B 112F,BE4B +112F,BEB8 112F,BEB8 +112F,BF25 112F,BF25 +112F,BF91 112F,BF91 +112F,BFFE 112F,BFFE +112F,C06B 112F,C06B +112F,C0D8 112F,C0D8 +112F,C145 112F,C145 +112F,C1B2 112F,C1B2 +112F,C21F 112F,C21F +112F,C28C 112F,C28C +112F,C2F9 112F,C2F9 +112F,C365 112F,C365 +112F,C3D2 112F,C3D2 +112F,C43F 112F,C43F +112F,C4AC 112F,C4AC +112F,C519 112F,C519 +112F,C586 112F,C586 +112F,C5F3 112F,C5F3 +112F,C660 112F,C660 +112F,C6CD 112F,C6CD +112F,C739 112F,C739 +112F,C7A6 112F,C7A6 +112F,C813 112F,C813 +112F,C880 112F,C880 +112F,C8ED 112F,C8ED +112F,C95A 112F,C95A +112F,C9C7 112F,C9C7 +112F,CA34 112F,CA34 +112F,CAA1 112F,CAA1 +112F,CB0D 112F,CB0D +112F,CB7A 112F,CB7A +112F,CBE7 112F,CBE7 +112F,CC54 112F,CC54 +112F,CCC1 112F,CCC1 +112F,CD2E 112F,CD2E +112F,CD9B 112F,CD9B +112F,CE08 112F,CE08 +112F,CE75 112F,CE75 +112F,CEE1 112F,CEE1 +112F,CF4E 112F,CF4E +112F,CFBB 112F,CFBB +112F,D028 112F,D028 +112F,D095 112F,D095 +112F,D102 112F,D102 +112F,D16F 112F,D16F +112F,D1DC 112F,D1DC +112F,D249 112F,D249 +112F,D2B5 112F,D2B5 +112F,D322 112F,D322 +112F,D38F 112F,D38F +112F,D3FC 112F,D3FC +112F,D469 112F,D469 +112F,D4D6 112F,D4D6 +112F,D543 112F,D543 +112F,D5B0 112F,D5B0 +112F,D61D 112F,D61D +112F,D689 112F,D689 +112F,D6F6 112F,D6F6 +112F,D763 112F,D763 +1130,AC01 1130,AC01 +1130,AC6D 1130,AC6D +1130,ACDA 1130,ACDA +1130,AD47 1130,AD47 +1130,ADB4 1130,ADB4 +1130,AE21 1130,AE21 +1130,AE8E 1130,AE8E +1130,AEFB 1130,AEFB +1130,AF68 1130,AF68 +1130,AFD5 1130,AFD5 +1130,B041 1130,B041 +1130,B0AE 1130,B0AE +1130,B11B 1130,B11B +1130,B188 1130,B188 +1130,B1F5 1130,B1F5 +1130,B262 1130,B262 +1130,B2CF 1130,B2CF +1130,B33C 1130,B33C +1130,B3A9 1130,B3A9 +1130,B415 1130,B415 +1130,B482 1130,B482 +1130,B4EF 1130,B4EF +1130,B55C 1130,B55C +1130,B5C9 1130,B5C9 +1130,B636 1130,B636 +1130,B6A3 1130,B6A3 +1130,B710 1130,B710 +1130,B77D 1130,B77D +1130,B7E9 1130,B7E9 +1130,B856 1130,B856 +1130,B8C3 1130,B8C3 +1130,B930 1130,B930 +1130,B99D 1130,B99D +1130,BA0A 1130,BA0A +1130,BA77 1130,BA77 +1130,BAE4 1130,BAE4 +1130,BB51 1130,BB51 +1130,BBBD 1130,BBBD +1130,BC2A 1130,BC2A +1130,BC97 1130,BC97 +1130,BD04 1130,BD04 +1130,BD71 1130,BD71 +1130,BDDE 1130,BDDE +1130,BE4B 1130,BE4B +1130,BEB8 1130,BEB8 +1130,BF25 1130,BF25 +1130,BF91 1130,BF91 +1130,BFFE 1130,BFFE +1130,C06B 1130,C06B +1130,C0D8 1130,C0D8 +1130,C145 1130,C145 +1130,C1B2 1130,C1B2 +1130,C21F 1130,C21F +1130,C28C 1130,C28C +1130,C2F9 1130,C2F9 +1130,C365 1130,C365 +1130,C3D2 1130,C3D2 +1130,C43F 1130,C43F +1130,C4AC 1130,C4AC +1130,C519 1130,C519 +1130,C586 1130,C586 +1130,C5F3 1130,C5F3 +1130,C660 1130,C660 +1130,C6CD 1130,C6CD +1130,C739 1130,C739 +1130,C7A6 1130,C7A6 +1130,C813 1130,C813 +1130,C880 1130,C880 +1130,C8ED 1130,C8ED +1130,C95A 1130,C95A +1130,C9C7 1130,C9C7 +1130,CA34 1130,CA34 +1130,CAA1 1130,CAA1 +1130,CB0D 1130,CB0D +1130,CB7A 1130,CB7A +1130,CBE7 1130,CBE7 +1130,CC54 1130,CC54 +1130,CCC1 1130,CCC1 +1130,CD2E 1130,CD2E +1130,CD9B 1130,CD9B +1130,CE08 1130,CE08 +1130,CE75 1130,CE75 +1130,CEE1 1130,CEE1 +1130,CF4E 1130,CF4E +1130,CFBB 1130,CFBB +1130,D028 1130,D028 +1130,D095 1130,D095 +1130,D102 1130,D102 +1130,D16F 1130,D16F +1130,D1DC 1130,D1DC +1130,D249 1130,D249 +1130,D2B5 1130,D2B5 +1130,D322 1130,D322 +1130,D38F 1130,D38F +1130,D3FC 1130,D3FC +1130,D469 1130,D469 +1130,D4D6 1130,D4D6 +1130,D543 1130,D543 +1130,D5B0 1130,D5B0 +1130,D61D 1130,D61D +1130,D689 1130,D689 +1130,D6F6 1130,D6F6 +1130,D763 1130,D763 +1131,AC01 1131,AC01 +1131,AC6D 1131,AC6D +1131,ACDA 1131,ACDA +1131,AD47 1131,AD47 +1131,ADB4 1131,ADB4 +1131,AE21 1131,AE21 +1131,AE8E 1131,AE8E +1131,AEFB 1131,AEFB +1131,AF68 1131,AF68 +1131,AFD5 1131,AFD5 +1131,B041 1131,B041 +1131,B0AE 1131,B0AE +1131,B11B 1131,B11B +1131,B188 1131,B188 +1131,B1F5 1131,B1F5 +1131,B262 1131,B262 +1131,B2CF 1131,B2CF +1131,B33C 1131,B33C +1131,B3A9 1131,B3A9 +1131,B415 1131,B415 +1131,B482 1131,B482 +1131,B4EF 1131,B4EF +1131,B55C 1131,B55C +1131,B5C9 1131,B5C9 +1131,B636 1131,B636 +1131,B6A3 1131,B6A3 +1131,B710 1131,B710 +1131,B77D 1131,B77D +1131,B7E9 1131,B7E9 +1131,B856 1131,B856 +1131,B8C3 1131,B8C3 +1131,B930 1131,B930 +1131,B99D 1131,B99D +1131,BA0A 1131,BA0A +1131,BA77 1131,BA77 +1131,BAE4 1131,BAE4 +1131,BB51 1131,BB51 +1131,BBBD 1131,BBBD +1131,BC2A 1131,BC2A +1131,BC97 1131,BC97 +1131,BD04 1131,BD04 +1131,BD71 1131,BD71 +1131,BDDE 1131,BDDE +1131,BE4B 1131,BE4B +1131,BEB8 1131,BEB8 +1131,BF25 1131,BF25 +1131,BF91 1131,BF91 +1131,BFFE 1131,BFFE +1131,C06B 1131,C06B +1131,C0D8 1131,C0D8 +1131,C145 1131,C145 +1131,C1B2 1131,C1B2 +1131,C21F 1131,C21F +1131,C28C 1131,C28C +1131,C2F9 1131,C2F9 +1131,C365 1131,C365 +1131,C3D2 1131,C3D2 +1131,C43F 1131,C43F +1131,C4AC 1131,C4AC +1131,C519 1131,C519 +1131,C586 1131,C586 +1131,C5F3 1131,C5F3 +1131,C660 1131,C660 +1131,C6CD 1131,C6CD +1131,C739 1131,C739 +1131,C7A6 1131,C7A6 +1131,C813 1131,C813 +1131,C880 1131,C880 +1131,C8ED 1131,C8ED +1131,C95A 1131,C95A +1131,C9C7 1131,C9C7 +1131,CA34 1131,CA34 +1131,CAA1 1131,CAA1 +1131,CB0D 1131,CB0D +1131,CB7A 1131,CB7A +1131,CBE7 1131,CBE7 +1131,CC54 1131,CC54 +1131,CCC1 1131,CCC1 +1131,CD2E 1131,CD2E +1131,CD9B 1131,CD9B +1131,CE08 1131,CE08 +1131,CE75 1131,CE75 +1131,CEE1 1131,CEE1 +1131,CF4E 1131,CF4E +1131,CFBB 1131,CFBB +1131,D028 1131,D028 +1131,D095 1131,D095 +1131,D102 1131,D102 +1131,D16F 1131,D16F +1131,D1DC 1131,D1DC +1131,D249 1131,D249 +1131,D2B5 1131,D2B5 +1131,D322 1131,D322 +1131,D38F 1131,D38F +1131,D3FC 1131,D3FC +1131,D469 1131,D469 +1131,D4D6 1131,D4D6 +1131,D543 1131,D543 +1131,D5B0 1131,D5B0 +1131,D61D 1131,D61D +1131,D689 1131,D689 +1131,D6F6 1131,D6F6 +1131,D763 1131,D763 +1132,AC01 1132,AC01 +1132,AC6D 1132,AC6D +1132,ACDA 1132,ACDA +1132,AD47 1132,AD47 +1132,ADB4 1132,ADB4 +1132,AE21 1132,AE21 +1132,AE8E 1132,AE8E +1132,AEFB 1132,AEFB +1132,AF68 1132,AF68 +1132,AFD5 1132,AFD5 +1132,B041 1132,B041 +1132,B0AE 1132,B0AE +1132,B11B 1132,B11B +1132,B188 1132,B188 +1132,B1F5 1132,B1F5 +1132,B262 1132,B262 +1132,B2CF 1132,B2CF +1132,B33C 1132,B33C +1132,B3A9 1132,B3A9 +1132,B415 1132,B415 +1132,B482 1132,B482 +1132,B4EF 1132,B4EF +1132,B55C 1132,B55C +1132,B5C9 1132,B5C9 +1132,B636 1132,B636 +1132,B6A3 1132,B6A3 +1132,B710 1132,B710 +1132,B77D 1132,B77D +1132,B7E9 1132,B7E9 +1132,B856 1132,B856 +1132,B8C3 1132,B8C3 +1132,B930 1132,B930 +1132,B99D 1132,B99D +1132,BA0A 1132,BA0A +1132,BA77 1132,BA77 +1132,BAE4 1132,BAE4 +1132,BB51 1132,BB51 +1132,BBBD 1132,BBBD +1132,BC2A 1132,BC2A +1132,BC97 1132,BC97 +1132,BD04 1132,BD04 +1132,BD71 1132,BD71 +1132,BDDE 1132,BDDE +1132,BE4B 1132,BE4B +1132,BEB8 1132,BEB8 +1132,BF25 1132,BF25 +1132,BF91 1132,BF91 +1132,BFFE 1132,BFFE +1132,C06B 1132,C06B +1132,C0D8 1132,C0D8 +1132,C145 1132,C145 +1132,C1B2 1132,C1B2 +1132,C21F 1132,C21F +1132,C28C 1132,C28C +1132,C2F9 1132,C2F9 +1132,C365 1132,C365 +1132,C3D2 1132,C3D2 +1132,C43F 1132,C43F +1132,C4AC 1132,C4AC +1132,C519 1132,C519 +1132,C586 1132,C586 +1132,C5F3 1132,C5F3 +1132,C660 1132,C660 +1132,C6CD 1132,C6CD +1132,C739 1132,C739 +1132,C7A6 1132,C7A6 +1132,C813 1132,C813 +1132,C880 1132,C880 +1132,C8ED 1132,C8ED +1132,C95A 1132,C95A +1132,C9C7 1132,C9C7 +1132,CA34 1132,CA34 +1132,CAA1 1132,CAA1 +1132,CB0D 1132,CB0D +1132,CB7A 1132,CB7A +1132,CBE7 1132,CBE7 +1132,CC54 1132,CC54 +1132,CCC1 1132,CCC1 +1132,CD2E 1132,CD2E +1132,CD9B 1132,CD9B +1132,CE08 1132,CE08 +1132,CE75 1132,CE75 +1132,CEE1 1132,CEE1 +1132,CF4E 1132,CF4E +1132,CFBB 1132,CFBB +1132,D028 1132,D028 +1132,D095 1132,D095 +1132,D102 1132,D102 +1132,D16F 1132,D16F +1132,D1DC 1132,D1DC +1132,D249 1132,D249 +1132,D2B5 1132,D2B5 +1132,D322 1132,D322 +1132,D38F 1132,D38F +1132,D3FC 1132,D3FC +1132,D469 1132,D469 +1132,D4D6 1132,D4D6 +1132,D543 1132,D543 +1132,D5B0 1132,D5B0 +1132,D61D 1132,D61D +1132,D689 1132,D689 +1132,D6F6 1132,D6F6 +1132,D763 1132,D763 +1133,AC01 1133,AC01 +1133,AC6D 1133,AC6D +1133,ACDA 1133,ACDA +1133,AD47 1133,AD47 +1133,ADB4 1133,ADB4 +1133,AE21 1133,AE21 +1133,AE8E 1133,AE8E +1133,AEFB 1133,AEFB +1133,AF68 1133,AF68 +1133,AFD5 1133,AFD5 +1133,B041 1133,B041 +1133,B0AE 1133,B0AE +1133,B11B 1133,B11B +1133,B188 1133,B188 +1133,B1F5 1133,B1F5 +1133,B262 1133,B262 +1133,B2CF 1133,B2CF +1133,B33C 1133,B33C +1133,B3A9 1133,B3A9 +1133,B415 1133,B415 +1133,B482 1133,B482 +1133,B4EF 1133,B4EF +1133,B55C 1133,B55C +1133,B5C9 1133,B5C9 +1133,B636 1133,B636 +1133,B6A3 1133,B6A3 +1133,B710 1133,B710 +1133,B77D 1133,B77D +1133,B7E9 1133,B7E9 +1133,B856 1133,B856 +1133,B8C3 1133,B8C3 +1133,B930 1133,B930 +1133,B99D 1133,B99D +1133,BA0A 1133,BA0A +1133,BA77 1133,BA77 +1133,BAE4 1133,BAE4 +1133,BB51 1133,BB51 +1133,BBBD 1133,BBBD +1133,BC2A 1133,BC2A +1133,BC97 1133,BC97 +1133,BD04 1133,BD04 +1133,BD71 1133,BD71 +1133,BDDE 1133,BDDE +1133,BE4B 1133,BE4B +1133,BEB8 1133,BEB8 +1133,BF25 1133,BF25 +1133,BF91 1133,BF91 +1133,BFFE 1133,BFFE +1133,C06B 1133,C06B +1133,C0D8 1133,C0D8 +1133,C145 1133,C145 +1133,C1B2 1133,C1B2 +1133,C21F 1133,C21F +1133,C28C 1133,C28C +1133,C2F9 1133,C2F9 +1133,C365 1133,C365 +1133,C3D2 1133,C3D2 +1133,C43F 1133,C43F +1133,C4AC 1133,C4AC +1133,C519 1133,C519 +1133,C586 1133,C586 +1133,C5F3 1133,C5F3 +1133,C660 1133,C660 +1133,C6CD 1133,C6CD +1133,C739 1133,C739 +1133,C7A6 1133,C7A6 +1133,C813 1133,C813 +1133,C880 1133,C880 +1133,C8ED 1133,C8ED +1133,C95A 1133,C95A +1133,C9C7 1133,C9C7 +1133,CA34 1133,CA34 +1133,CAA1 1133,CAA1 +1133,CB0D 1133,CB0D +1133,CB7A 1133,CB7A +1133,CBE7 1133,CBE7 +1133,CC54 1133,CC54 +1133,CCC1 1133,CCC1 +1133,CD2E 1133,CD2E +1133,CD9B 1133,CD9B +1133,CE08 1133,CE08 +1133,CE75 1133,CE75 +1133,CEE1 1133,CEE1 +1133,CF4E 1133,CF4E +1133,CFBB 1133,CFBB +1133,D028 1133,D028 +1133,D095 1133,D095 +1133,D102 1133,D102 +1133,D16F 1133,D16F +1133,D1DC 1133,D1DC +1133,D249 1133,D249 +1133,D2B5 1133,D2B5 +1133,D322 1133,D322 +1133,D38F 1133,D38F +1133,D3FC 1133,D3FC +1133,D469 1133,D469 +1133,D4D6 1133,D4D6 +1133,D543 1133,D543 +1133,D5B0 1133,D5B0 +1133,D61D 1133,D61D +1133,D689 1133,D689 +1133,D6F6 1133,D6F6 +1133,D763 1133,D763 +1134,AC01 1134,AC01 +1134,AC6D 1134,AC6D +1134,ACDA 1134,ACDA +1134,AD47 1134,AD47 +1134,ADB4 1134,ADB4 +1134,AE21 1134,AE21 +1134,AE8E 1134,AE8E +1134,AEFB 1134,AEFB +1134,AF68 1134,AF68 +1134,AFD5 1134,AFD5 +1134,B041 1134,B041 +1134,B0AE 1134,B0AE +1134,B11B 1134,B11B +1134,B188 1134,B188 +1134,B1F5 1134,B1F5 +1134,B262 1134,B262 +1134,B2CF 1134,B2CF +1134,B33C 1134,B33C +1134,B3A9 1134,B3A9 +1134,B415 1134,B415 +1134,B482 1134,B482 +1134,B4EF 1134,B4EF +1134,B55C 1134,B55C +1134,B5C9 1134,B5C9 +1134,B636 1134,B636 +1134,B6A3 1134,B6A3 +1134,B710 1134,B710 +1134,B77D 1134,B77D +1134,B7E9 1134,B7E9 +1134,B856 1134,B856 +1134,B8C3 1134,B8C3 +1134,B930 1134,B930 +1134,B99D 1134,B99D +1134,BA0A 1134,BA0A +1134,BA77 1134,BA77 +1134,BAE4 1134,BAE4 +1134,BB51 1134,BB51 +1134,BBBD 1134,BBBD +1134,BC2A 1134,BC2A +1134,BC97 1134,BC97 +1134,BD04 1134,BD04 +1134,BD71 1134,BD71 +1134,BDDE 1134,BDDE +1134,BE4B 1134,BE4B +1134,BEB8 1134,BEB8 +1134,BF25 1134,BF25 +1134,BF91 1134,BF91 +1134,BFFE 1134,BFFE +1134,C06B 1134,C06B +1134,C0D8 1134,C0D8 +1134,C145 1134,C145 +1134,C1B2 1134,C1B2 +1134,C21F 1134,C21F +1134,C28C 1134,C28C +1134,C2F9 1134,C2F9 +1134,C365 1134,C365 +1134,C3D2 1134,C3D2 +1134,C43F 1134,C43F +1134,C4AC 1134,C4AC +1134,C519 1134,C519 +1134,C586 1134,C586 +1134,C5F3 1134,C5F3 +1134,C660 1134,C660 +1134,C6CD 1134,C6CD +1134,C739 1134,C739 +1134,C7A6 1134,C7A6 +1134,C813 1134,C813 +1134,C880 1134,C880 +1134,C8ED 1134,C8ED +1134,C95A 1134,C95A +1134,C9C7 1134,C9C7 +1134,CA34 1134,CA34 +1134,CAA1 1134,CAA1 +1134,CB0D 1134,CB0D +1134,CB7A 1134,CB7A +1134,CBE7 1134,CBE7 +1134,CC54 1134,CC54 +1134,CCC1 1134,CCC1 +1134,CD2E 1134,CD2E +1134,CD9B 1134,CD9B +1134,CE08 1134,CE08 +1134,CE75 1134,CE75 +1134,CEE1 1134,CEE1 +1134,CF4E 1134,CF4E +1134,CFBB 1134,CFBB +1134,D028 1134,D028 +1134,D095 1134,D095 +1134,D102 1134,D102 +1134,D16F 1134,D16F +1134,D1DC 1134,D1DC +1134,D249 1134,D249 +1134,D2B5 1134,D2B5 +1134,D322 1134,D322 +1134,D38F 1134,D38F +1134,D3FC 1134,D3FC +1134,D469 1134,D469 +1134,D4D6 1134,D4D6 +1134,D543 1134,D543 +1134,D5B0 1134,D5B0 +1134,D61D 1134,D61D +1134,D689 1134,D689 +1134,D6F6 1134,D6F6 +1134,D763 1134,D763 +1135,AC01 1135,AC01 +1135,AC6D 1135,AC6D +1135,ACDA 1135,ACDA +1135,AD47 1135,AD47 +1135,ADB4 1135,ADB4 +1135,AE21 1135,AE21 +1135,AE8E 1135,AE8E +1135,AEFB 1135,AEFB +1135,AF68 1135,AF68 +1135,AFD5 1135,AFD5 +1135,B041 1135,B041 +1135,B0AE 1135,B0AE +1135,B11B 1135,B11B +1135,B188 1135,B188 +1135,B1F5 1135,B1F5 +1135,B262 1135,B262 +1135,B2CF 1135,B2CF +1135,B33C 1135,B33C +1135,B3A9 1135,B3A9 +1135,B415 1135,B415 +1135,B482 1135,B482 +1135,B4EF 1135,B4EF +1135,B55C 1135,B55C +1135,B5C9 1135,B5C9 +1135,B636 1135,B636 +1135,B6A3 1135,B6A3 +1135,B710 1135,B710 +1135,B77D 1135,B77D +1135,B7E9 1135,B7E9 +1135,B856 1135,B856 +1135,B8C3 1135,B8C3 +1135,B930 1135,B930 +1135,B99D 1135,B99D +1135,BA0A 1135,BA0A +1135,BA77 1135,BA77 +1135,BAE4 1135,BAE4 +1135,BB51 1135,BB51 +1135,BBBD 1135,BBBD +1135,BC2A 1135,BC2A +1135,BC97 1135,BC97 +1135,BD04 1135,BD04 +1135,BD71 1135,BD71 +1135,BDDE 1135,BDDE +1135,BE4B 1135,BE4B +1135,BEB8 1135,BEB8 +1135,BF25 1135,BF25 +1135,BF91 1135,BF91 +1135,BFFE 1135,BFFE +1135,C06B 1135,C06B +1135,C0D8 1135,C0D8 +1135,C145 1135,C145 +1135,C1B2 1135,C1B2 +1135,C21F 1135,C21F +1135,C28C 1135,C28C +1135,C2F9 1135,C2F9 +1135,C365 1135,C365 +1135,C3D2 1135,C3D2 +1135,C43F 1135,C43F +1135,C4AC 1135,C4AC +1135,C519 1135,C519 +1135,C586 1135,C586 +1135,C5F3 1135,C5F3 +1135,C660 1135,C660 +1135,C6CD 1135,C6CD +1135,C739 1135,C739 +1135,C7A6 1135,C7A6 +1135,C813 1135,C813 +1135,C880 1135,C880 +1135,C8ED 1135,C8ED +1135,C95A 1135,C95A +1135,C9C7 1135,C9C7 +1135,CA34 1135,CA34 +1135,CAA1 1135,CAA1 +1135,CB0D 1135,CB0D +1135,CB7A 1135,CB7A +1135,CBE7 1135,CBE7 +1135,CC54 1135,CC54 +1135,CCC1 1135,CCC1 +1135,CD2E 1135,CD2E +1135,CD9B 1135,CD9B +1135,CE08 1135,CE08 +1135,CE75 1135,CE75 +1135,CEE1 1135,CEE1 +1135,CF4E 1135,CF4E +1135,CFBB 1135,CFBB +1135,D028 1135,D028 +1135,D095 1135,D095 +1135,D102 1135,D102 +1135,D16F 1135,D16F +1135,D1DC 1135,D1DC +1135,D249 1135,D249 +1135,D2B5 1135,D2B5 +1135,D322 1135,D322 +1135,D38F 1135,D38F +1135,D3FC 1135,D3FC +1135,D469 1135,D469 +1135,D4D6 1135,D4D6 +1135,D543 1135,D543 +1135,D5B0 1135,D5B0 +1135,D61D 1135,D61D +1135,D689 1135,D689 +1135,D6F6 1135,D6F6 +1135,D763 1135,D763 +1136,AC01 1136,AC01 +1136,AC6D 1136,AC6D +1136,ACDA 1136,ACDA +1136,AD47 1136,AD47 +1136,ADB4 1136,ADB4 +1136,AE21 1136,AE21 +1136,AE8E 1136,AE8E +1136,AEFB 1136,AEFB +1136,AF68 1136,AF68 +1136,AFD5 1136,AFD5 +1136,B041 1136,B041 +1136,B0AE 1136,B0AE +1136,B11B 1136,B11B +1136,B188 1136,B188 +1136,B1F5 1136,B1F5 +1136,B262 1136,B262 +1136,B2CF 1136,B2CF +1136,B33C 1136,B33C +1136,B3A9 1136,B3A9 +1136,B415 1136,B415 +1136,B482 1136,B482 +1136,B4EF 1136,B4EF +1136,B55C 1136,B55C +1136,B5C9 1136,B5C9 +1136,B636 1136,B636 +1136,B6A3 1136,B6A3 +1136,B710 1136,B710 +1136,B77D 1136,B77D +1136,B7E9 1136,B7E9 +1136,B856 1136,B856 +1136,B8C3 1136,B8C3 +1136,B930 1136,B930 +1136,B99D 1136,B99D +1136,BA0A 1136,BA0A +1136,BA77 1136,BA77 +1136,BAE4 1136,BAE4 +1136,BB51 1136,BB51 +1136,BBBD 1136,BBBD +1136,BC2A 1136,BC2A +1136,BC97 1136,BC97 +1136,BD04 1136,BD04 +1136,BD71 1136,BD71 +1136,BDDE 1136,BDDE +1136,BE4B 1136,BE4B +1136,BEB8 1136,BEB8 +1136,BF25 1136,BF25 +1136,BF91 1136,BF91 +1136,BFFE 1136,BFFE +1136,C06B 1136,C06B +1136,C0D8 1136,C0D8 +1136,C145 1136,C145 +1136,C1B2 1136,C1B2 +1136,C21F 1136,C21F +1136,C28C 1136,C28C +1136,C2F9 1136,C2F9 +1136,C365 1136,C365 +1136,C3D2 1136,C3D2 +1136,C43F 1136,C43F +1136,C4AC 1136,C4AC +1136,C519 1136,C519 +1136,C586 1136,C586 +1136,C5F3 1136,C5F3 +1136,C660 1136,C660 +1136,C6CD 1136,C6CD +1136,C739 1136,C739 +1136,C7A6 1136,C7A6 +1136,C813 1136,C813 +1136,C880 1136,C880 +1136,C8ED 1136,C8ED +1136,C95A 1136,C95A +1136,C9C7 1136,C9C7 +1136,CA34 1136,CA34 +1136,CAA1 1136,CAA1 +1136,CB0D 1136,CB0D +1136,CB7A 1136,CB7A +1136,CBE7 1136,CBE7 +1136,CC54 1136,CC54 +1136,CCC1 1136,CCC1 +1136,CD2E 1136,CD2E +1136,CD9B 1136,CD9B +1136,CE08 1136,CE08 +1136,CE75 1136,CE75 +1136,CEE1 1136,CEE1 +1136,CF4E 1136,CF4E +1136,CFBB 1136,CFBB +1136,D028 1136,D028 +1136,D095 1136,D095 +1136,D102 1136,D102 +1136,D16F 1136,D16F +1136,D1DC 1136,D1DC +1136,D249 1136,D249 +1136,D2B5 1136,D2B5 +1136,D322 1136,D322 +1136,D38F 1136,D38F +1136,D3FC 1136,D3FC +1136,D469 1136,D469 +1136,D4D6 1136,D4D6 +1136,D543 1136,D543 +1136,D5B0 1136,D5B0 +1136,D61D 1136,D61D +1136,D689 1136,D689 +1136,D6F6 1136,D6F6 +1136,D763 1136,D763 +1137,AC01 1137,AC01 +1137,AC6D 1137,AC6D +1137,ACDA 1137,ACDA +1137,AD47 1137,AD47 +1137,ADB4 1137,ADB4 +1137,AE21 1137,AE21 +1137,AE8E 1137,AE8E +1137,AEFB 1137,AEFB +1137,AF68 1137,AF68 +1137,AFD5 1137,AFD5 +1137,B041 1137,B041 +1137,B0AE 1137,B0AE +1137,B11B 1137,B11B +1137,B188 1137,B188 +1137,B1F5 1137,B1F5 +1137,B262 1137,B262 +1137,B2CF 1137,B2CF +1137,B33C 1137,B33C +1137,B3A9 1137,B3A9 +1137,B415 1137,B415 +1137,B482 1137,B482 +1137,B4EF 1137,B4EF +1137,B55C 1137,B55C +1137,B5C9 1137,B5C9 +1137,B636 1137,B636 +1137,B6A3 1137,B6A3 +1137,B710 1137,B710 +1137,B77D 1137,B77D +1137,B7E9 1137,B7E9 +1137,B856 1137,B856 +1137,B8C3 1137,B8C3 +1137,B930 1137,B930 +1137,B99D 1137,B99D +1137,BA0A 1137,BA0A +1137,BA77 1137,BA77 +1137,BAE4 1137,BAE4 +1137,BB51 1137,BB51 +1137,BBBD 1137,BBBD +1137,BC2A 1137,BC2A +1137,BC97 1137,BC97 +1137,BD04 1137,BD04 +1137,BD71 1137,BD71 +1137,BDDE 1137,BDDE +1137,BE4B 1137,BE4B +1137,BEB8 1137,BEB8 +1137,BF25 1137,BF25 +1137,BF91 1137,BF91 +1137,BFFE 1137,BFFE +1137,C06B 1137,C06B +1137,C0D8 1137,C0D8 +1137,C145 1137,C145 +1137,C1B2 1137,C1B2 +1137,C21F 1137,C21F +1137,C28C 1137,C28C +1137,C2F9 1137,C2F9 +1137,C365 1137,C365 +1137,C3D2 1137,C3D2 +1137,C43F 1137,C43F +1137,C4AC 1137,C4AC +1137,C519 1137,C519 +1137,C586 1137,C586 +1137,C5F3 1137,C5F3 +1137,C660 1137,C660 +1137,C6CD 1137,C6CD +1137,C739 1137,C739 +1137,C7A6 1137,C7A6 +1137,C813 1137,C813 +1137,C880 1137,C880 +1137,C8ED 1137,C8ED +1137,C95A 1137,C95A +1137,C9C7 1137,C9C7 +1137,CA34 1137,CA34 +1137,CAA1 1137,CAA1 +1137,CB0D 1137,CB0D +1137,CB7A 1137,CB7A +1137,CBE7 1137,CBE7 +1137,CC54 1137,CC54 +1137,CCC1 1137,CCC1 +1137,CD2E 1137,CD2E +1137,CD9B 1137,CD9B +1137,CE08 1137,CE08 +1137,CE75 1137,CE75 +1137,CEE1 1137,CEE1 +1137,CF4E 1137,CF4E +1137,CFBB 1137,CFBB +1137,D028 1137,D028 +1137,D095 1137,D095 +1137,D102 1137,D102 +1137,D16F 1137,D16F +1137,D1DC 1137,D1DC +1137,D249 1137,D249 +1137,D2B5 1137,D2B5 +1137,D322 1137,D322 +1137,D38F 1137,D38F +1137,D3FC 1137,D3FC +1137,D469 1137,D469 +1137,D4D6 1137,D4D6 +1137,D543 1137,D543 +1137,D5B0 1137,D5B0 +1137,D61D 1137,D61D +1137,D689 1137,D689 +1137,D6F6 1137,D6F6 +1137,D763 1137,D763 +1138,AC01 1138,AC01 +1138,AC6D 1138,AC6D +1138,ACDA 1138,ACDA +1138,AD47 1138,AD47 +1138,ADB4 1138,ADB4 +1138,AE21 1138,AE21 +1138,AE8E 1138,AE8E +1138,AEFB 1138,AEFB +1138,AF68 1138,AF68 +1138,AFD5 1138,AFD5 +1138,B041 1138,B041 +1138,B0AE 1138,B0AE +1138,B11B 1138,B11B +1138,B188 1138,B188 +1138,B1F5 1138,B1F5 +1138,B262 1138,B262 +1138,B2CF 1138,B2CF +1138,B33C 1138,B33C +1138,B3A9 1138,B3A9 +1138,B415 1138,B415 +1138,B482 1138,B482 +1138,B4EF 1138,B4EF +1138,B55C 1138,B55C +1138,B5C9 1138,B5C9 +1138,B636 1138,B636 +1138,B6A3 1138,B6A3 +1138,B710 1138,B710 +1138,B77D 1138,B77D +1138,B7E9 1138,B7E9 +1138,B856 1138,B856 +1138,B8C3 1138,B8C3 +1138,B930 1138,B930 +1138,B99D 1138,B99D +1138,BA0A 1138,BA0A +1138,BA77 1138,BA77 +1138,BAE4 1138,BAE4 +1138,BB51 1138,BB51 +1138,BBBD 1138,BBBD +1138,BC2A 1138,BC2A +1138,BC97 1138,BC97 +1138,BD04 1138,BD04 +1138,BD71 1138,BD71 +1138,BDDE 1138,BDDE +1138,BE4B 1138,BE4B +1138,BEB8 1138,BEB8 +1138,BF25 1138,BF25 +1138,BF91 1138,BF91 +1138,BFFE 1138,BFFE +1138,C06B 1138,C06B +1138,C0D8 1138,C0D8 +1138,C145 1138,C145 +1138,C1B2 1138,C1B2 +1138,C21F 1138,C21F +1138,C28C 1138,C28C +1138,C2F9 1138,C2F9 +1138,C365 1138,C365 +1138,C3D2 1138,C3D2 +1138,C43F 1138,C43F +1138,C4AC 1138,C4AC +1138,C519 1138,C519 +1138,C586 1138,C586 +1138,C5F3 1138,C5F3 +1138,C660 1138,C660 +1138,C6CD 1138,C6CD +1138,C739 1138,C739 +1138,C7A6 1138,C7A6 +1138,C813 1138,C813 +1138,C880 1138,C880 +1138,C8ED 1138,C8ED +1138,C95A 1138,C95A +1138,C9C7 1138,C9C7 +1138,CA34 1138,CA34 +1138,CAA1 1138,CAA1 +1138,CB0D 1138,CB0D +1138,CB7A 1138,CB7A +1138,CBE7 1138,CBE7 +1138,CC54 1138,CC54 +1138,CCC1 1138,CCC1 +1138,CD2E 1138,CD2E +1138,CD9B 1138,CD9B +1138,CE08 1138,CE08 +1138,CE75 1138,CE75 +1138,CEE1 1138,CEE1 +1138,CF4E 1138,CF4E +1138,CFBB 1138,CFBB +1138,D028 1138,D028 +1138,D095 1138,D095 +1138,D102 1138,D102 +1138,D16F 1138,D16F +1138,D1DC 1138,D1DC +1138,D249 1138,D249 +1138,D2B5 1138,D2B5 +1138,D322 1138,D322 +1138,D38F 1138,D38F +1138,D3FC 1138,D3FC +1138,D469 1138,D469 +1138,D4D6 1138,D4D6 +1138,D543 1138,D543 +1138,D5B0 1138,D5B0 +1138,D61D 1138,D61D +1138,D689 1138,D689 +1138,D6F6 1138,D6F6 +1138,D763 1138,D763 +1139,AC01 1139,AC01 +1139,AC6D 1139,AC6D +1139,ACDA 1139,ACDA +1139,AD47 1139,AD47 +1139,ADB4 1139,ADB4 +1139,AE21 1139,AE21 +1139,AE8E 1139,AE8E +1139,AEFB 1139,AEFB +1139,AF68 1139,AF68 +1139,AFD5 1139,AFD5 +1139,B041 1139,B041 +1139,B0AE 1139,B0AE +1139,B11B 1139,B11B +1139,B188 1139,B188 +1139,B1F5 1139,B1F5 +1139,B262 1139,B262 +1139,B2CF 1139,B2CF +1139,B33C 1139,B33C +1139,B3A9 1139,B3A9 +1139,B415 1139,B415 +1139,B482 1139,B482 +1139,B4EF 1139,B4EF +1139,B55C 1139,B55C +1139,B5C9 1139,B5C9 +1139,B636 1139,B636 +1139,B6A3 1139,B6A3 +1139,B710 1139,B710 +1139,B77D 1139,B77D +1139,B7E9 1139,B7E9 +1139,B856 1139,B856 +1139,B8C3 1139,B8C3 +1139,B930 1139,B930 +1139,B99D 1139,B99D +1139,BA0A 1139,BA0A +1139,BA77 1139,BA77 +1139,BAE4 1139,BAE4 +1139,BB51 1139,BB51 +1139,BBBD 1139,BBBD +1139,BC2A 1139,BC2A +1139,BC97 1139,BC97 +1139,BD04 1139,BD04 +1139,BD71 1139,BD71 +1139,BDDE 1139,BDDE +1139,BE4B 1139,BE4B +1139,BEB8 1139,BEB8 +1139,BF25 1139,BF25 +1139,BF91 1139,BF91 +1139,BFFE 1139,BFFE +1139,C06B 1139,C06B +1139,C0D8 1139,C0D8 +1139,C145 1139,C145 +1139,C1B2 1139,C1B2 +1139,C21F 1139,C21F +1139,C28C 1139,C28C +1139,C2F9 1139,C2F9 +1139,C365 1139,C365 +1139,C3D2 1139,C3D2 +1139,C43F 1139,C43F +1139,C4AC 1139,C4AC +1139,C519 1139,C519 +1139,C586 1139,C586 +1139,C5F3 1139,C5F3 +1139,C660 1139,C660 +1139,C6CD 1139,C6CD +1139,C739 1139,C739 +1139,C7A6 1139,C7A6 +1139,C813 1139,C813 +1139,C880 1139,C880 +1139,C8ED 1139,C8ED +1139,C95A 1139,C95A +1139,C9C7 1139,C9C7 +1139,CA34 1139,CA34 +1139,CAA1 1139,CAA1 +1139,CB0D 1139,CB0D +1139,CB7A 1139,CB7A +1139,CBE7 1139,CBE7 +1139,CC54 1139,CC54 +1139,CCC1 1139,CCC1 +1139,CD2E 1139,CD2E +1139,CD9B 1139,CD9B +1139,CE08 1139,CE08 +1139,CE75 1139,CE75 +1139,CEE1 1139,CEE1 +1139,CF4E 1139,CF4E +1139,CFBB 1139,CFBB +1139,D028 1139,D028 +1139,D095 1139,D095 +1139,D102 1139,D102 +1139,D16F 1139,D16F +1139,D1DC 1139,D1DC +1139,D249 1139,D249 +1139,D2B5 1139,D2B5 +1139,D322 1139,D322 +1139,D38F 1139,D38F +1139,D3FC 1139,D3FC +1139,D469 1139,D469 +1139,D4D6 1139,D4D6 +1139,D543 1139,D543 +1139,D5B0 1139,D5B0 +1139,D61D 1139,D61D +1139,D689 1139,D689 +1139,D6F6 1139,D6F6 +1139,D763 1139,D763 +113A,AC01 113A,AC01 +113A,AC6D 113A,AC6D +113A,ACDA 113A,ACDA +113A,AD47 113A,AD47 +113A,ADB4 113A,ADB4 +113A,AE21 113A,AE21 +113A,AE8E 113A,AE8E +113A,AEFB 113A,AEFB +113A,AF68 113A,AF68 +113A,AFD5 113A,AFD5 +113A,B041 113A,B041 +113A,B0AE 113A,B0AE +113A,B11B 113A,B11B +113A,B188 113A,B188 +113A,B1F5 113A,B1F5 +113A,B262 113A,B262 +113A,B2CF 113A,B2CF +113A,B33C 113A,B33C +113A,B3A9 113A,B3A9 +113A,B415 113A,B415 +113A,B482 113A,B482 +113A,B4EF 113A,B4EF +113A,B55C 113A,B55C +113A,B5C9 113A,B5C9 +113A,B636 113A,B636 +113A,B6A3 113A,B6A3 +113A,B710 113A,B710 +113A,B77D 113A,B77D +113A,B7E9 113A,B7E9 +113A,B856 113A,B856 +113A,B8C3 113A,B8C3 +113A,B930 113A,B930 +113A,B99D 113A,B99D +113A,BA0A 113A,BA0A +113A,BA77 113A,BA77 +113A,BAE4 113A,BAE4 +113A,BB51 113A,BB51 +113A,BBBD 113A,BBBD +113A,BC2A 113A,BC2A +113A,BC97 113A,BC97 +113A,BD04 113A,BD04 +113A,BD71 113A,BD71 +113A,BDDE 113A,BDDE +113A,BE4B 113A,BE4B +113A,BEB8 113A,BEB8 +113A,BF25 113A,BF25 +113A,BF91 113A,BF91 +113A,BFFE 113A,BFFE +113A,C06B 113A,C06B +113A,C0D8 113A,C0D8 +113A,C145 113A,C145 +113A,C1B2 113A,C1B2 +113A,C21F 113A,C21F +113A,C28C 113A,C28C +113A,C2F9 113A,C2F9 +113A,C365 113A,C365 +113A,C3D2 113A,C3D2 +113A,C43F 113A,C43F +113A,C4AC 113A,C4AC +113A,C519 113A,C519 +113A,C586 113A,C586 +113A,C5F3 113A,C5F3 +113A,C660 113A,C660 +113A,C6CD 113A,C6CD +113A,C739 113A,C739 +113A,C7A6 113A,C7A6 +113A,C813 113A,C813 +113A,C880 113A,C880 +113A,C8ED 113A,C8ED +113A,C95A 113A,C95A +113A,C9C7 113A,C9C7 +113A,CA34 113A,CA34 +113A,CAA1 113A,CAA1 +113A,CB0D 113A,CB0D +113A,CB7A 113A,CB7A +113A,CBE7 113A,CBE7 +113A,CC54 113A,CC54 +113A,CCC1 113A,CCC1 +113A,CD2E 113A,CD2E +113A,CD9B 113A,CD9B +113A,CE08 113A,CE08 +113A,CE75 113A,CE75 +113A,CEE1 113A,CEE1 +113A,CF4E 113A,CF4E +113A,CFBB 113A,CFBB +113A,D028 113A,D028 +113A,D095 113A,D095 +113A,D102 113A,D102 +113A,D16F 113A,D16F +113A,D1DC 113A,D1DC +113A,D249 113A,D249 +113A,D2B5 113A,D2B5 +113A,D322 113A,D322 +113A,D38F 113A,D38F +113A,D3FC 113A,D3FC +113A,D469 113A,D469 +113A,D4D6 113A,D4D6 +113A,D543 113A,D543 +113A,D5B0 113A,D5B0 +113A,D61D 113A,D61D +113A,D689 113A,D689 +113A,D6F6 113A,D6F6 +113A,D763 113A,D763 +113B,AC01 113B,AC01 +113B,AC6D 113B,AC6D +113B,ACDA 113B,ACDA +113B,AD47 113B,AD47 +113B,ADB4 113B,ADB4 +113B,AE21 113B,AE21 +113B,AE8E 113B,AE8E +113B,AEFB 113B,AEFB +113B,AF68 113B,AF68 +113B,AFD5 113B,AFD5 +113B,B041 113B,B041 +113B,B0AE 113B,B0AE +113B,B11B 113B,B11B +113B,B188 113B,B188 +113B,B1F5 113B,B1F5 +113B,B262 113B,B262 +113B,B2CF 113B,B2CF +113B,B33C 113B,B33C +113B,B3A9 113B,B3A9 +113B,B415 113B,B415 +113B,B482 113B,B482 +113B,B4EF 113B,B4EF +113B,B55C 113B,B55C +113B,B5C9 113B,B5C9 +113B,B636 113B,B636 +113B,B6A3 113B,B6A3 +113B,B710 113B,B710 +113B,B77D 113B,B77D +113B,B7E9 113B,B7E9 +113B,B856 113B,B856 +113B,B8C3 113B,B8C3 +113B,B930 113B,B930 +113B,B99D 113B,B99D +113B,BA0A 113B,BA0A +113B,BA77 113B,BA77 +113B,BAE4 113B,BAE4 +113B,BB51 113B,BB51 +113B,BBBD 113B,BBBD +113B,BC2A 113B,BC2A +113B,BC97 113B,BC97 +113B,BD04 113B,BD04 +113B,BD71 113B,BD71 +113B,BDDE 113B,BDDE +113B,BE4B 113B,BE4B +113B,BEB8 113B,BEB8 +113B,BF25 113B,BF25 +113B,BF91 113B,BF91 +113B,BFFE 113B,BFFE +113B,C06B 113B,C06B +113B,C0D8 113B,C0D8 +113B,C145 113B,C145 +113B,C1B2 113B,C1B2 +113B,C21F 113B,C21F +113B,C28C 113B,C28C +113B,C2F9 113B,C2F9 +113B,C365 113B,C365 +113B,C3D2 113B,C3D2 +113B,C43F 113B,C43F +113B,C4AC 113B,C4AC +113B,C519 113B,C519 +113B,C586 113B,C586 +113B,C5F3 113B,C5F3 +113B,C660 113B,C660 +113B,C6CD 113B,C6CD +113B,C739 113B,C739 +113B,C7A6 113B,C7A6 +113B,C813 113B,C813 +113B,C880 113B,C880 +113B,C8ED 113B,C8ED +113B,C95A 113B,C95A +113B,C9C7 113B,C9C7 +113B,CA34 113B,CA34 +113B,CAA1 113B,CAA1 +113B,CB0D 113B,CB0D +113B,CB7A 113B,CB7A +113B,CBE7 113B,CBE7 +113B,CC54 113B,CC54 +113B,CCC1 113B,CCC1 +113B,CD2E 113B,CD2E +113B,CD9B 113B,CD9B +113B,CE08 113B,CE08 +113B,CE75 113B,CE75 +113B,CEE1 113B,CEE1 +113B,CF4E 113B,CF4E +113B,CFBB 113B,CFBB +113B,D028 113B,D028 +113B,D095 113B,D095 +113B,D102 113B,D102 +113B,D16F 113B,D16F +113B,D1DC 113B,D1DC +113B,D249 113B,D249 +113B,D2B5 113B,D2B5 +113B,D322 113B,D322 +113B,D38F 113B,D38F +113B,D3FC 113B,D3FC +113B,D469 113B,D469 +113B,D4D6 113B,D4D6 +113B,D543 113B,D543 +113B,D5B0 113B,D5B0 +113B,D61D 113B,D61D +113B,D689 113B,D689 +113B,D6F6 113B,D6F6 +113B,D763 113B,D763 +113C,AC01 113C,AC01 +113C,AC6D 113C,AC6D +113C,ACDA 113C,ACDA +113C,AD47 113C,AD47 +113C,ADB4 113C,ADB4 +113C,AE21 113C,AE21 +113C,AE8E 113C,AE8E +113C,AEFB 113C,AEFB +113C,AF68 113C,AF68 +113C,AFD5 113C,AFD5 +113C,B041 113C,B041 +113C,B0AE 113C,B0AE +113C,B11B 113C,B11B +113C,B188 113C,B188 +113C,B1F5 113C,B1F5 +113C,B262 113C,B262 +113C,B2CF 113C,B2CF +113C,B33C 113C,B33C +113C,B3A9 113C,B3A9 +113C,B415 113C,B415 +113C,B482 113C,B482 +113C,B4EF 113C,B4EF +113C,B55C 113C,B55C +113C,B5C9 113C,B5C9 +113C,B636 113C,B636 +113C,B6A3 113C,B6A3 +113C,B710 113C,B710 +113C,B77D 113C,B77D +113C,B7E9 113C,B7E9 +113C,B856 113C,B856 +113C,B8C3 113C,B8C3 +113C,B930 113C,B930 +113C,B99D 113C,B99D +113C,BA0A 113C,BA0A +113C,BA77 113C,BA77 +113C,BAE4 113C,BAE4 +113C,BB51 113C,BB51 +113C,BBBD 113C,BBBD +113C,BC2A 113C,BC2A +113C,BC97 113C,BC97 +113C,BD04 113C,BD04 +113C,BD71 113C,BD71 +113C,BDDE 113C,BDDE +113C,BE4B 113C,BE4B +113C,BEB8 113C,BEB8 +113C,BF25 113C,BF25 +113C,BF91 113C,BF91 +113C,BFFE 113C,BFFE +113C,C06B 113C,C06B +113C,C0D8 113C,C0D8 +113C,C145 113C,C145 +113C,C1B2 113C,C1B2 +113C,C21F 113C,C21F +113C,C28C 113C,C28C +113C,C2F9 113C,C2F9 +113C,C365 113C,C365 +113C,C3D2 113C,C3D2 +113C,C43F 113C,C43F +113C,C4AC 113C,C4AC +113C,C519 113C,C519 +113C,C586 113C,C586 +113C,C5F3 113C,C5F3 +113C,C660 113C,C660 +113C,C6CD 113C,C6CD +113C,C739 113C,C739 +113C,C7A6 113C,C7A6 +113C,C813 113C,C813 +113C,C880 113C,C880 +113C,C8ED 113C,C8ED +113C,C95A 113C,C95A +113C,C9C7 113C,C9C7 +113C,CA34 113C,CA34 +113C,CAA1 113C,CAA1 +113C,CB0D 113C,CB0D +113C,CB7A 113C,CB7A +113C,CBE7 113C,CBE7 +113C,CC54 113C,CC54 +113C,CCC1 113C,CCC1 +113C,CD2E 113C,CD2E +113C,CD9B 113C,CD9B +113C,CE08 113C,CE08 +113C,CE75 113C,CE75 +113C,CEE1 113C,CEE1 +113C,CF4E 113C,CF4E +113C,CFBB 113C,CFBB +113C,D028 113C,D028 +113C,D095 113C,D095 +113C,D102 113C,D102 +113C,D16F 113C,D16F +113C,D1DC 113C,D1DC +113C,D249 113C,D249 +113C,D2B5 113C,D2B5 +113C,D322 113C,D322 +113C,D38F 113C,D38F +113C,D3FC 113C,D3FC +113C,D469 113C,D469 +113C,D4D6 113C,D4D6 +113C,D543 113C,D543 +113C,D5B0 113C,D5B0 +113C,D61D 113C,D61D +113C,D689 113C,D689 +113C,D6F6 113C,D6F6 +113C,D763 113C,D763 +113D,AC01 113D,AC01 +113D,AC6D 113D,AC6D +113D,ACDA 113D,ACDA +113D,AD47 113D,AD47 +113D,ADB4 113D,ADB4 +113D,AE21 113D,AE21 +113D,AE8E 113D,AE8E +113D,AEFB 113D,AEFB +113D,AF68 113D,AF68 +113D,AFD5 113D,AFD5 +113D,B041 113D,B041 +113D,B0AE 113D,B0AE +113D,B11B 113D,B11B +113D,B188 113D,B188 +113D,B1F5 113D,B1F5 +113D,B262 113D,B262 +113D,B2CF 113D,B2CF +113D,B33C 113D,B33C +113D,B3A9 113D,B3A9 +113D,B415 113D,B415 +113D,B482 113D,B482 +113D,B4EF 113D,B4EF +113D,B55C 113D,B55C +113D,B5C9 113D,B5C9 +113D,B636 113D,B636 +113D,B6A3 113D,B6A3 +113D,B710 113D,B710 +113D,B77D 113D,B77D +113D,B7E9 113D,B7E9 +113D,B856 113D,B856 +113D,B8C3 113D,B8C3 +113D,B930 113D,B930 +113D,B99D 113D,B99D +113D,BA0A 113D,BA0A +113D,BA77 113D,BA77 +113D,BAE4 113D,BAE4 +113D,BB51 113D,BB51 +113D,BBBD 113D,BBBD +113D,BC2A 113D,BC2A +113D,BC97 113D,BC97 +113D,BD04 113D,BD04 +113D,BD71 113D,BD71 +113D,BDDE 113D,BDDE +113D,BE4B 113D,BE4B +113D,BEB8 113D,BEB8 +113D,BF25 113D,BF25 +113D,BF91 113D,BF91 +113D,BFFE 113D,BFFE +113D,C06B 113D,C06B +113D,C0D8 113D,C0D8 +113D,C145 113D,C145 +113D,C1B2 113D,C1B2 +113D,C21F 113D,C21F +113D,C28C 113D,C28C +113D,C2F9 113D,C2F9 +113D,C365 113D,C365 +113D,C3D2 113D,C3D2 +113D,C43F 113D,C43F +113D,C4AC 113D,C4AC +113D,C519 113D,C519 +113D,C586 113D,C586 +113D,C5F3 113D,C5F3 +113D,C660 113D,C660 +113D,C6CD 113D,C6CD +113D,C739 113D,C739 +113D,C7A6 113D,C7A6 +113D,C813 113D,C813 +113D,C880 113D,C880 +113D,C8ED 113D,C8ED +113D,C95A 113D,C95A +113D,C9C7 113D,C9C7 +113D,CA34 113D,CA34 +113D,CAA1 113D,CAA1 +113D,CB0D 113D,CB0D +113D,CB7A 113D,CB7A +113D,CBE7 113D,CBE7 +113D,CC54 113D,CC54 +113D,CCC1 113D,CCC1 +113D,CD2E 113D,CD2E +113D,CD9B 113D,CD9B +113D,CE08 113D,CE08 +113D,CE75 113D,CE75 +113D,CEE1 113D,CEE1 +113D,CF4E 113D,CF4E +113D,CFBB 113D,CFBB +113D,D028 113D,D028 +113D,D095 113D,D095 +113D,D102 113D,D102 +113D,D16F 113D,D16F +113D,D1DC 113D,D1DC +113D,D249 113D,D249 +113D,D2B5 113D,D2B5 +113D,D322 113D,D322 +113D,D38F 113D,D38F +113D,D3FC 113D,D3FC +113D,D469 113D,D469 +113D,D4D6 113D,D4D6 +113D,D543 113D,D543 +113D,D5B0 113D,D5B0 +113D,D61D 113D,D61D +113D,D689 113D,D689 +113D,D6F6 113D,D6F6 +113D,D763 113D,D763 +113E,AC01 113E,AC01 +113E,AC6D 113E,AC6D +113E,ACDA 113E,ACDA +113E,AD47 113E,AD47 +113E,ADB4 113E,ADB4 +113E,AE21 113E,AE21 +113E,AE8E 113E,AE8E +113E,AEFB 113E,AEFB +113E,AF68 113E,AF68 +113E,AFD5 113E,AFD5 +113E,B041 113E,B041 +113E,B0AE 113E,B0AE +113E,B11B 113E,B11B +113E,B188 113E,B188 +113E,B1F5 113E,B1F5 +113E,B262 113E,B262 +113E,B2CF 113E,B2CF +113E,B33C 113E,B33C +113E,B3A9 113E,B3A9 +113E,B415 113E,B415 +113E,B482 113E,B482 +113E,B4EF 113E,B4EF +113E,B55C 113E,B55C +113E,B5C9 113E,B5C9 +113E,B636 113E,B636 +113E,B6A3 113E,B6A3 +113E,B710 113E,B710 +113E,B77D 113E,B77D +113E,B7E9 113E,B7E9 +113E,B856 113E,B856 +113E,B8C3 113E,B8C3 +113E,B930 113E,B930 +113E,B99D 113E,B99D +113E,BA0A 113E,BA0A +113E,BA77 113E,BA77 +113E,BAE4 113E,BAE4 +113E,BB51 113E,BB51 +113E,BBBD 113E,BBBD +113E,BC2A 113E,BC2A +113E,BC97 113E,BC97 +113E,BD04 113E,BD04 +113E,BD71 113E,BD71 +113E,BDDE 113E,BDDE +113E,BE4B 113E,BE4B +113E,BEB8 113E,BEB8 +113E,BF25 113E,BF25 +113E,BF91 113E,BF91 +113E,BFFE 113E,BFFE +113E,C06B 113E,C06B +113E,C0D8 113E,C0D8 +113E,C145 113E,C145 +113E,C1B2 113E,C1B2 +113E,C21F 113E,C21F +113E,C28C 113E,C28C +113E,C2F9 113E,C2F9 +113E,C365 113E,C365 +113E,C3D2 113E,C3D2 +113E,C43F 113E,C43F +113E,C4AC 113E,C4AC +113E,C519 113E,C519 +113E,C586 113E,C586 +113E,C5F3 113E,C5F3 +113E,C660 113E,C660 +113E,C6CD 113E,C6CD +113E,C739 113E,C739 +113E,C7A6 113E,C7A6 +113E,C813 113E,C813 +113E,C880 113E,C880 +113E,C8ED 113E,C8ED +113E,C95A 113E,C95A +113E,C9C7 113E,C9C7 +113E,CA34 113E,CA34 +113E,CAA1 113E,CAA1 +113E,CB0D 113E,CB0D +113E,CB7A 113E,CB7A +113E,CBE7 113E,CBE7 +113E,CC54 113E,CC54 +113E,CCC1 113E,CCC1 +113E,CD2E 113E,CD2E +113E,CD9B 113E,CD9B +113E,CE08 113E,CE08 +113E,CE75 113E,CE75 +113E,CEE1 113E,CEE1 +113E,CF4E 113E,CF4E +113E,CFBB 113E,CFBB +113E,D028 113E,D028 +113E,D095 113E,D095 +113E,D102 113E,D102 +113E,D16F 113E,D16F +113E,D1DC 113E,D1DC +113E,D249 113E,D249 +113E,D2B5 113E,D2B5 +113E,D322 113E,D322 +113E,D38F 113E,D38F +113E,D3FC 113E,D3FC +113E,D469 113E,D469 +113E,D4D6 113E,D4D6 +113E,D543 113E,D543 +113E,D5B0 113E,D5B0 +113E,D61D 113E,D61D +113E,D689 113E,D689 +113E,D6F6 113E,D6F6 +113E,D763 113E,D763 +113F,AC01 113F,AC01 +113F,AC6D 113F,AC6D +113F,ACDA 113F,ACDA +113F,AD47 113F,AD47 +113F,ADB4 113F,ADB4 +113F,AE21 113F,AE21 +113F,AE8E 113F,AE8E +113F,AEFB 113F,AEFB +113F,AF68 113F,AF68 +113F,AFD5 113F,AFD5 +113F,B041 113F,B041 +113F,B0AE 113F,B0AE +113F,B11B 113F,B11B +113F,B188 113F,B188 +113F,B1F5 113F,B1F5 +113F,B262 113F,B262 +113F,B2CF 113F,B2CF +113F,B33C 113F,B33C +113F,B3A9 113F,B3A9 +113F,B415 113F,B415 +113F,B482 113F,B482 +113F,B4EF 113F,B4EF +113F,B55C 113F,B55C +113F,B5C9 113F,B5C9 +113F,B636 113F,B636 +113F,B6A3 113F,B6A3 +113F,B710 113F,B710 +113F,B77D 113F,B77D +113F,B7E9 113F,B7E9 +113F,B856 113F,B856 +113F,B8C3 113F,B8C3 +113F,B930 113F,B930 +113F,B99D 113F,B99D +113F,BA0A 113F,BA0A +113F,BA77 113F,BA77 +113F,BAE4 113F,BAE4 +113F,BB51 113F,BB51 +113F,BBBD 113F,BBBD +113F,BC2A 113F,BC2A +113F,BC97 113F,BC97 +113F,BD04 113F,BD04 +113F,BD71 113F,BD71 +113F,BDDE 113F,BDDE +113F,BE4B 113F,BE4B +113F,BEB8 113F,BEB8 +113F,BF25 113F,BF25 +113F,BF91 113F,BF91 +113F,BFFE 113F,BFFE +113F,C06B 113F,C06B +113F,C0D8 113F,C0D8 +113F,C145 113F,C145 +113F,C1B2 113F,C1B2 +113F,C21F 113F,C21F +113F,C28C 113F,C28C +113F,C2F9 113F,C2F9 +113F,C365 113F,C365 +113F,C3D2 113F,C3D2 +113F,C43F 113F,C43F +113F,C4AC 113F,C4AC +113F,C519 113F,C519 +113F,C586 113F,C586 +113F,C5F3 113F,C5F3 +113F,C660 113F,C660 +113F,C6CD 113F,C6CD +113F,C739 113F,C739 +113F,C7A6 113F,C7A6 +113F,C813 113F,C813 +113F,C880 113F,C880 +113F,C8ED 113F,C8ED +113F,C95A 113F,C95A +113F,C9C7 113F,C9C7 +113F,CA34 113F,CA34 +113F,CAA1 113F,CAA1 +113F,CB0D 113F,CB0D +113F,CB7A 113F,CB7A +113F,CBE7 113F,CBE7 +113F,CC54 113F,CC54 +113F,CCC1 113F,CCC1 +113F,CD2E 113F,CD2E +113F,CD9B 113F,CD9B +113F,CE08 113F,CE08 +113F,CE75 113F,CE75 +113F,CEE1 113F,CEE1 +113F,CF4E 113F,CF4E +113F,CFBB 113F,CFBB +113F,D028 113F,D028 +113F,D095 113F,D095 +113F,D102 113F,D102 +113F,D16F 113F,D16F +113F,D1DC 113F,D1DC +113F,D249 113F,D249 +113F,D2B5 113F,D2B5 +113F,D322 113F,D322 +113F,D38F 113F,D38F +113F,D3FC 113F,D3FC +113F,D469 113F,D469 +113F,D4D6 113F,D4D6 +113F,D543 113F,D543 +113F,D5B0 113F,D5B0 +113F,D61D 113F,D61D +113F,D689 113F,D689 +113F,D6F6 113F,D6F6 +113F,D763 113F,D763 +1140,AC01 1140,AC01 +1140,AC6D 1140,AC6D +1140,ACDA 1140,ACDA +1140,AD47 1140,AD47 +1140,ADB4 1140,ADB4 +1140,AE21 1140,AE21 +1140,AE8E 1140,AE8E +1140,AEFB 1140,AEFB +1140,AF68 1140,AF68 +1140,AFD5 1140,AFD5 +1140,B041 1140,B041 +1140,B0AE 1140,B0AE +1140,B11B 1140,B11B +1140,B188 1140,B188 +1140,B1F5 1140,B1F5 +1140,B262 1140,B262 +1140,B2CF 1140,B2CF +1140,B33C 1140,B33C +1140,B3A9 1140,B3A9 +1140,B415 1140,B415 +1140,B482 1140,B482 +1140,B4EF 1140,B4EF +1140,B55C 1140,B55C +1140,B5C9 1140,B5C9 +1140,B636 1140,B636 +1140,B6A3 1140,B6A3 +1140,B710 1140,B710 +1140,B77D 1140,B77D +1140,B7E9 1140,B7E9 +1140,B856 1140,B856 +1140,B8C3 1140,B8C3 +1140,B930 1140,B930 +1140,B99D 1140,B99D +1140,BA0A 1140,BA0A +1140,BA77 1140,BA77 +1140,BAE4 1140,BAE4 +1140,BB51 1140,BB51 +1140,BBBD 1140,BBBD +1140,BC2A 1140,BC2A +1140,BC97 1140,BC97 +1140,BD04 1140,BD04 +1140,BD71 1140,BD71 +1140,BDDE 1140,BDDE +1140,BE4B 1140,BE4B +1140,BEB8 1140,BEB8 +1140,BF25 1140,BF25 +1140,BF91 1140,BF91 +1140,BFFE 1140,BFFE +1140,C06B 1140,C06B +1140,C0D8 1140,C0D8 +1140,C145 1140,C145 +1140,C1B2 1140,C1B2 +1140,C21F 1140,C21F +1140,C28C 1140,C28C +1140,C2F9 1140,C2F9 +1140,C365 1140,C365 +1140,C3D2 1140,C3D2 +1140,C43F 1140,C43F +1140,C4AC 1140,C4AC +1140,C519 1140,C519 +1140,C586 1140,C586 +1140,C5F3 1140,C5F3 +1140,C660 1140,C660 +1140,C6CD 1140,C6CD +1140,C739 1140,C739 +1140,C7A6 1140,C7A6 +1140,C813 1140,C813 +1140,C880 1140,C880 +1140,C8ED 1140,C8ED +1140,C95A 1140,C95A +1140,C9C7 1140,C9C7 +1140,CA34 1140,CA34 +1140,CAA1 1140,CAA1 +1140,CB0D 1140,CB0D +1140,CB7A 1140,CB7A +1140,CBE7 1140,CBE7 +1140,CC54 1140,CC54 +1140,CCC1 1140,CCC1 +1140,CD2E 1140,CD2E +1140,CD9B 1140,CD9B +1140,CE08 1140,CE08 +1140,CE75 1140,CE75 +1140,CEE1 1140,CEE1 +1140,CF4E 1140,CF4E +1140,CFBB 1140,CFBB +1140,D028 1140,D028 +1140,D095 1140,D095 +1140,D102 1140,D102 +1140,D16F 1140,D16F +1140,D1DC 1140,D1DC +1140,D249 1140,D249 +1140,D2B5 1140,D2B5 +1140,D322 1140,D322 +1140,D38F 1140,D38F +1140,D3FC 1140,D3FC +1140,D469 1140,D469 +1140,D4D6 1140,D4D6 +1140,D543 1140,D543 +1140,D5B0 1140,D5B0 +1140,D61D 1140,D61D +1140,D689 1140,D689 +1140,D6F6 1140,D6F6 +1140,D763 1140,D763 +1141,AC01 1141,AC01 +1141,AC6D 1141,AC6D +1141,ACDA 1141,ACDA +1141,AD47 1141,AD47 +1141,ADB4 1141,ADB4 +1141,AE21 1141,AE21 +1141,AE8E 1141,AE8E +1141,AEFB 1141,AEFB +1141,AF68 1141,AF68 +1141,AFD5 1141,AFD5 +1141,B041 1141,B041 +1141,B0AE 1141,B0AE +1141,B11B 1141,B11B +1141,B188 1141,B188 +1141,B1F5 1141,B1F5 +1141,B262 1141,B262 +1141,B2CF 1141,B2CF +1141,B33C 1141,B33C +1141,B3A9 1141,B3A9 +1141,B415 1141,B415 +1141,B482 1141,B482 +1141,B4EF 1141,B4EF +1141,B55C 1141,B55C +1141,B5C9 1141,B5C9 +1141,B636 1141,B636 +1141,B6A3 1141,B6A3 +1141,B710 1141,B710 +1141,B77D 1141,B77D +1141,B7E9 1141,B7E9 +1141,B856 1141,B856 +1141,B8C3 1141,B8C3 +1141,B930 1141,B930 +1141,B99D 1141,B99D +1141,BA0A 1141,BA0A +1141,BA77 1141,BA77 +1141,BAE4 1141,BAE4 +1141,BB51 1141,BB51 +1141,BBBD 1141,BBBD +1141,BC2A 1141,BC2A +1141,BC97 1141,BC97 +1141,BD04 1141,BD04 +1141,BD71 1141,BD71 +1141,BDDE 1141,BDDE +1141,BE4B 1141,BE4B +1141,BEB8 1141,BEB8 +1141,BF25 1141,BF25 +1141,BF91 1141,BF91 +1141,BFFE 1141,BFFE +1141,C06B 1141,C06B +1141,C0D8 1141,C0D8 +1141,C145 1141,C145 +1141,C1B2 1141,C1B2 +1141,C21F 1141,C21F +1141,C28C 1141,C28C +1141,C2F9 1141,C2F9 +1141,C365 1141,C365 +1141,C3D2 1141,C3D2 +1141,C43F 1141,C43F +1141,C4AC 1141,C4AC +1141,C519 1141,C519 +1141,C586 1141,C586 +1141,C5F3 1141,C5F3 +1141,C660 1141,C660 +1141,C6CD 1141,C6CD +1141,C739 1141,C739 +1141,C7A6 1141,C7A6 +1141,C813 1141,C813 +1141,C880 1141,C880 +1141,C8ED 1141,C8ED +1141,C95A 1141,C95A +1141,C9C7 1141,C9C7 +1141,CA34 1141,CA34 +1141,CAA1 1141,CAA1 +1141,CB0D 1141,CB0D +1141,CB7A 1141,CB7A +1141,CBE7 1141,CBE7 +1141,CC54 1141,CC54 +1141,CCC1 1141,CCC1 +1141,CD2E 1141,CD2E +1141,CD9B 1141,CD9B +1141,CE08 1141,CE08 +1141,CE75 1141,CE75 +1141,CEE1 1141,CEE1 +1141,CF4E 1141,CF4E +1141,CFBB 1141,CFBB +1141,D028 1141,D028 +1141,D095 1141,D095 +1141,D102 1141,D102 +1141,D16F 1141,D16F +1141,D1DC 1141,D1DC +1141,D249 1141,D249 +1141,D2B5 1141,D2B5 +1141,D322 1141,D322 +1141,D38F 1141,D38F +1141,D3FC 1141,D3FC +1141,D469 1141,D469 +1141,D4D6 1141,D4D6 +1141,D543 1141,D543 +1141,D5B0 1141,D5B0 +1141,D61D 1141,D61D +1141,D689 1141,D689 +1141,D6F6 1141,D6F6 +1141,D763 1141,D763 +1142,AC01 1142,AC01 +1142,AC6D 1142,AC6D +1142,ACDA 1142,ACDA +1142,AD47 1142,AD47 +1142,ADB4 1142,ADB4 +1142,AE21 1142,AE21 +1142,AE8E 1142,AE8E +1142,AEFB 1142,AEFB +1142,AF68 1142,AF68 +1142,AFD5 1142,AFD5 +1142,B041 1142,B041 +1142,B0AE 1142,B0AE +1142,B11B 1142,B11B +1142,B188 1142,B188 +1142,B1F5 1142,B1F5 +1142,B262 1142,B262 +1142,B2CF 1142,B2CF +1142,B33C 1142,B33C +1142,B3A9 1142,B3A9 +1142,B415 1142,B415 +1142,B482 1142,B482 +1142,B4EF 1142,B4EF +1142,B55C 1142,B55C +1142,B5C9 1142,B5C9 +1142,B636 1142,B636 +1142,B6A3 1142,B6A3 +1142,B710 1142,B710 +1142,B77D 1142,B77D +1142,B7E9 1142,B7E9 +1142,B856 1142,B856 +1142,B8C3 1142,B8C3 +1142,B930 1142,B930 +1142,B99D 1142,B99D +1142,BA0A 1142,BA0A +1142,BA77 1142,BA77 +1142,BAE4 1142,BAE4 +1142,BB51 1142,BB51 +1142,BBBD 1142,BBBD +1142,BC2A 1142,BC2A +1142,BC97 1142,BC97 +1142,BD04 1142,BD04 +1142,BD71 1142,BD71 +1142,BDDE 1142,BDDE +1142,BE4B 1142,BE4B +1142,BEB8 1142,BEB8 +1142,BF25 1142,BF25 +1142,BF91 1142,BF91 +1142,BFFE 1142,BFFE +1142,C06B 1142,C06B +1142,C0D8 1142,C0D8 +1142,C145 1142,C145 +1142,C1B2 1142,C1B2 +1142,C21F 1142,C21F +1142,C28C 1142,C28C +1142,C2F9 1142,C2F9 +1142,C365 1142,C365 +1142,C3D2 1142,C3D2 +1142,C43F 1142,C43F +1142,C4AC 1142,C4AC +1142,C519 1142,C519 +1142,C586 1142,C586 +1142,C5F3 1142,C5F3 +1142,C660 1142,C660 +1142,C6CD 1142,C6CD +1142,C739 1142,C739 +1142,C7A6 1142,C7A6 +1142,C813 1142,C813 +1142,C880 1142,C880 +1142,C8ED 1142,C8ED +1142,C95A 1142,C95A +1142,C9C7 1142,C9C7 +1142,CA34 1142,CA34 +1142,CAA1 1142,CAA1 +1142,CB0D 1142,CB0D +1142,CB7A 1142,CB7A +1142,CBE7 1142,CBE7 +1142,CC54 1142,CC54 +1142,CCC1 1142,CCC1 +1142,CD2E 1142,CD2E +1142,CD9B 1142,CD9B +1142,CE08 1142,CE08 +1142,CE75 1142,CE75 +1142,CEE1 1142,CEE1 +1142,CF4E 1142,CF4E +1142,CFBB 1142,CFBB +1142,D028 1142,D028 +1142,D095 1142,D095 +1142,D102 1142,D102 +1142,D16F 1142,D16F +1142,D1DC 1142,D1DC +1142,D249 1142,D249 +1142,D2B5 1142,D2B5 +1142,D322 1142,D322 +1142,D38F 1142,D38F +1142,D3FC 1142,D3FC +1142,D469 1142,D469 +1142,D4D6 1142,D4D6 +1142,D543 1142,D543 +1142,D5B0 1142,D5B0 +1142,D61D 1142,D61D +1142,D689 1142,D689 +1142,D6F6 1142,D6F6 +1142,D763 1142,D763 +1143,AC01 1143,AC01 +1143,AC6D 1143,AC6D +1143,ACDA 1143,ACDA +1143,AD47 1143,AD47 +1143,ADB4 1143,ADB4 +1143,AE21 1143,AE21 +1143,AE8E 1143,AE8E +1143,AEFB 1143,AEFB +1143,AF68 1143,AF68 +1143,AFD5 1143,AFD5 +1143,B041 1143,B041 +1143,B0AE 1143,B0AE +1143,B11B 1143,B11B +1143,B188 1143,B188 +1143,B1F5 1143,B1F5 +1143,B262 1143,B262 +1143,B2CF 1143,B2CF +1143,B33C 1143,B33C +1143,B3A9 1143,B3A9 +1143,B415 1143,B415 +1143,B482 1143,B482 +1143,B4EF 1143,B4EF +1143,B55C 1143,B55C +1143,B5C9 1143,B5C9 +1143,B636 1143,B636 +1143,B6A3 1143,B6A3 +1143,B710 1143,B710 +1143,B77D 1143,B77D +1143,B7E9 1143,B7E9 +1143,B856 1143,B856 +1143,B8C3 1143,B8C3 +1143,B930 1143,B930 +1143,B99D 1143,B99D +1143,BA0A 1143,BA0A +1143,BA77 1143,BA77 +1143,BAE4 1143,BAE4 +1143,BB51 1143,BB51 +1143,BBBD 1143,BBBD +1143,BC2A 1143,BC2A +1143,BC97 1143,BC97 +1143,BD04 1143,BD04 +1143,BD71 1143,BD71 +1143,BDDE 1143,BDDE +1143,BE4B 1143,BE4B +1143,BEB8 1143,BEB8 +1143,BF25 1143,BF25 +1143,BF91 1143,BF91 +1143,BFFE 1143,BFFE +1143,C06B 1143,C06B +1143,C0D8 1143,C0D8 +1143,C145 1143,C145 +1143,C1B2 1143,C1B2 +1143,C21F 1143,C21F +1143,C28C 1143,C28C +1143,C2F9 1143,C2F9 +1143,C365 1143,C365 +1143,C3D2 1143,C3D2 +1143,C43F 1143,C43F +1143,C4AC 1143,C4AC +1143,C519 1143,C519 +1143,C586 1143,C586 +1143,C5F3 1143,C5F3 +1143,C660 1143,C660 +1143,C6CD 1143,C6CD +1143,C739 1143,C739 +1143,C7A6 1143,C7A6 +1143,C813 1143,C813 +1143,C880 1143,C880 +1143,C8ED 1143,C8ED +1143,C95A 1143,C95A +1143,C9C7 1143,C9C7 +1143,CA34 1143,CA34 +1143,CAA1 1143,CAA1 +1143,CB0D 1143,CB0D +1143,CB7A 1143,CB7A +1143,CBE7 1143,CBE7 +1143,CC54 1143,CC54 +1143,CCC1 1143,CCC1 +1143,CD2E 1143,CD2E +1143,CD9B 1143,CD9B +1143,CE08 1143,CE08 +1143,CE75 1143,CE75 +1143,CEE1 1143,CEE1 +1143,CF4E 1143,CF4E +1143,CFBB 1143,CFBB +1143,D028 1143,D028 +1143,D095 1143,D095 +1143,D102 1143,D102 +1143,D16F 1143,D16F +1143,D1DC 1143,D1DC +1143,D249 1143,D249 +1143,D2B5 1143,D2B5 +1143,D322 1143,D322 +1143,D38F 1143,D38F +1143,D3FC 1143,D3FC +1143,D469 1143,D469 +1143,D4D6 1143,D4D6 +1143,D543 1143,D543 +1143,D5B0 1143,D5B0 +1143,D61D 1143,D61D +1143,D689 1143,D689 +1143,D6F6 1143,D6F6 +1143,D763 1143,D763 +1144,AC01 1144,AC01 +1144,AC6D 1144,AC6D +1144,ACDA 1144,ACDA +1144,AD47 1144,AD47 +1144,ADB4 1144,ADB4 +1144,AE21 1144,AE21 +1144,AE8E 1144,AE8E +1144,AEFB 1144,AEFB +1144,AF68 1144,AF68 +1144,AFD5 1144,AFD5 +1144,B041 1144,B041 +1144,B0AE 1144,B0AE +1144,B11B 1144,B11B +1144,B188 1144,B188 +1144,B1F5 1144,B1F5 +1144,B262 1144,B262 +1144,B2CF 1144,B2CF +1144,B33C 1144,B33C +1144,B3A9 1144,B3A9 +1144,B415 1144,B415 +1144,B482 1144,B482 +1144,B4EF 1144,B4EF +1144,B55C 1144,B55C +1144,B5C9 1144,B5C9 +1144,B636 1144,B636 +1144,B6A3 1144,B6A3 +1144,B710 1144,B710 +1144,B77D 1144,B77D +1144,B7E9 1144,B7E9 +1144,B856 1144,B856 +1144,B8C3 1144,B8C3 +1144,B930 1144,B930 +1144,B99D 1144,B99D +1144,BA0A 1144,BA0A +1144,BA77 1144,BA77 +1144,BAE4 1144,BAE4 +1144,BB51 1144,BB51 +1144,BBBD 1144,BBBD +1144,BC2A 1144,BC2A +1144,BC97 1144,BC97 +1144,BD04 1144,BD04 +1144,BD71 1144,BD71 +1144,BDDE 1144,BDDE +1144,BE4B 1144,BE4B +1144,BEB8 1144,BEB8 +1144,BF25 1144,BF25 +1144,BF91 1144,BF91 +1144,BFFE 1144,BFFE +1144,C06B 1144,C06B +1144,C0D8 1144,C0D8 +1144,C145 1144,C145 +1144,C1B2 1144,C1B2 +1144,C21F 1144,C21F +1144,C28C 1144,C28C +1144,C2F9 1144,C2F9 +1144,C365 1144,C365 +1144,C3D2 1144,C3D2 +1144,C43F 1144,C43F +1144,C4AC 1144,C4AC +1144,C519 1144,C519 +1144,C586 1144,C586 +1144,C5F3 1144,C5F3 +1144,C660 1144,C660 +1144,C6CD 1144,C6CD +1144,C739 1144,C739 +1144,C7A6 1144,C7A6 +1144,C813 1144,C813 +1144,C880 1144,C880 +1144,C8ED 1144,C8ED +1144,C95A 1144,C95A +1144,C9C7 1144,C9C7 +1144,CA34 1144,CA34 +1144,CAA1 1144,CAA1 +1144,CB0D 1144,CB0D +1144,CB7A 1144,CB7A +1144,CBE7 1144,CBE7 +1144,CC54 1144,CC54 +1144,CCC1 1144,CCC1 +1144,CD2E 1144,CD2E +1144,CD9B 1144,CD9B +1144,CE08 1144,CE08 +1144,CE75 1144,CE75 +1144,CEE1 1144,CEE1 +1144,CF4E 1144,CF4E +1144,CFBB 1144,CFBB +1144,D028 1144,D028 +1144,D095 1144,D095 +1144,D102 1144,D102 +1144,D16F 1144,D16F +1144,D1DC 1144,D1DC +1144,D249 1144,D249 +1144,D2B5 1144,D2B5 +1144,D322 1144,D322 +1144,D38F 1144,D38F +1144,D3FC 1144,D3FC +1144,D469 1144,D469 +1144,D4D6 1144,D4D6 +1144,D543 1144,D543 +1144,D5B0 1144,D5B0 +1144,D61D 1144,D61D +1144,D689 1144,D689 +1144,D6F6 1144,D6F6 +1144,D763 1144,D763 +1145,AC01 1145,AC01 +1145,AC6D 1145,AC6D +1145,ACDA 1145,ACDA +1145,AD47 1145,AD47 +1145,ADB4 1145,ADB4 +1145,AE21 1145,AE21 +1145,AE8E 1145,AE8E +1145,AEFB 1145,AEFB +1145,AF68 1145,AF68 +1145,AFD5 1145,AFD5 +1145,B041 1145,B041 +1145,B0AE 1145,B0AE +1145,B11B 1145,B11B +1145,B188 1145,B188 +1145,B1F5 1145,B1F5 +1145,B262 1145,B262 +1145,B2CF 1145,B2CF +1145,B33C 1145,B33C +1145,B3A9 1145,B3A9 +1145,B415 1145,B415 +1145,B482 1145,B482 +1145,B4EF 1145,B4EF +1145,B55C 1145,B55C +1145,B5C9 1145,B5C9 +1145,B636 1145,B636 +1145,B6A3 1145,B6A3 +1145,B710 1145,B710 +1145,B77D 1145,B77D +1145,B7E9 1145,B7E9 +1145,B856 1145,B856 +1145,B8C3 1145,B8C3 +1145,B930 1145,B930 +1145,B99D 1145,B99D +1145,BA0A 1145,BA0A +1145,BA77 1145,BA77 +1145,BAE4 1145,BAE4 +1145,BB51 1145,BB51 +1145,BBBD 1145,BBBD +1145,BC2A 1145,BC2A +1145,BC97 1145,BC97 +1145,BD04 1145,BD04 +1145,BD71 1145,BD71 +1145,BDDE 1145,BDDE +1145,BE4B 1145,BE4B +1145,BEB8 1145,BEB8 +1145,BF25 1145,BF25 +1145,BF91 1145,BF91 +1145,BFFE 1145,BFFE +1145,C06B 1145,C06B +1145,C0D8 1145,C0D8 +1145,C145 1145,C145 +1145,C1B2 1145,C1B2 +1145,C21F 1145,C21F +1145,C28C 1145,C28C +1145,C2F9 1145,C2F9 +1145,C365 1145,C365 +1145,C3D2 1145,C3D2 +1145,C43F 1145,C43F +1145,C4AC 1145,C4AC +1145,C519 1145,C519 +1145,C586 1145,C586 +1145,C5F3 1145,C5F3 +1145,C660 1145,C660 +1145,C6CD 1145,C6CD +1145,C739 1145,C739 +1145,C7A6 1145,C7A6 +1145,C813 1145,C813 +1145,C880 1145,C880 +1145,C8ED 1145,C8ED +1145,C95A 1145,C95A +1145,C9C7 1145,C9C7 +1145,CA34 1145,CA34 +1145,CAA1 1145,CAA1 +1145,CB0D 1145,CB0D +1145,CB7A 1145,CB7A +1145,CBE7 1145,CBE7 +1145,CC54 1145,CC54 +1145,CCC1 1145,CCC1 +1145,CD2E 1145,CD2E +1145,CD9B 1145,CD9B +1145,CE08 1145,CE08 +1145,CE75 1145,CE75 +1145,CEE1 1145,CEE1 +1145,CF4E 1145,CF4E +1145,CFBB 1145,CFBB +1145,D028 1145,D028 +1145,D095 1145,D095 +1145,D102 1145,D102 +1145,D16F 1145,D16F +1145,D1DC 1145,D1DC +1145,D249 1145,D249 +1145,D2B5 1145,D2B5 +1145,D322 1145,D322 +1145,D38F 1145,D38F +1145,D3FC 1145,D3FC +1145,D469 1145,D469 +1145,D4D6 1145,D4D6 +1145,D543 1145,D543 +1145,D5B0 1145,D5B0 +1145,D61D 1145,D61D +1145,D689 1145,D689 +1145,D6F6 1145,D6F6 +1145,D763 1145,D763 +1146,AC01 1146,AC01 +1146,AC6D 1146,AC6D +1146,ACDA 1146,ACDA +1146,AD47 1146,AD47 +1146,ADB4 1146,ADB4 +1146,AE21 1146,AE21 +1146,AE8E 1146,AE8E +1146,AEFB 1146,AEFB +1146,AF68 1146,AF68 +1146,AFD5 1146,AFD5 +1146,B041 1146,B041 +1146,B0AE 1146,B0AE +1146,B11B 1146,B11B +1146,B188 1146,B188 +1146,B1F5 1146,B1F5 +1146,B262 1146,B262 +1146,B2CF 1146,B2CF +1146,B33C 1146,B33C +1146,B3A9 1146,B3A9 +1146,B415 1146,B415 +1146,B482 1146,B482 +1146,B4EF 1146,B4EF +1146,B55C 1146,B55C +1146,B5C9 1146,B5C9 +1146,B636 1146,B636 +1146,B6A3 1146,B6A3 +1146,B710 1146,B710 +1146,B77D 1146,B77D +1146,B7E9 1146,B7E9 +1146,B856 1146,B856 +1146,B8C3 1146,B8C3 +1146,B930 1146,B930 +1146,B99D 1146,B99D +1146,BA0A 1146,BA0A +1146,BA77 1146,BA77 +1146,BAE4 1146,BAE4 +1146,BB51 1146,BB51 +1146,BBBD 1146,BBBD +1146,BC2A 1146,BC2A +1146,BC97 1146,BC97 +1146,BD04 1146,BD04 +1146,BD71 1146,BD71 +1146,BDDE 1146,BDDE +1146,BE4B 1146,BE4B +1146,BEB8 1146,BEB8 +1146,BF25 1146,BF25 +1146,BF91 1146,BF91 +1146,BFFE 1146,BFFE +1146,C06B 1146,C06B +1146,C0D8 1146,C0D8 +1146,C145 1146,C145 +1146,C1B2 1146,C1B2 +1146,C21F 1146,C21F +1146,C28C 1146,C28C +1146,C2F9 1146,C2F9 +1146,C365 1146,C365 +1146,C3D2 1146,C3D2 +1146,C43F 1146,C43F +1146,C4AC 1146,C4AC +1146,C519 1146,C519 +1146,C586 1146,C586 +1146,C5F3 1146,C5F3 +1146,C660 1146,C660 +1146,C6CD 1146,C6CD +1146,C739 1146,C739 +1146,C7A6 1146,C7A6 +1146,C813 1146,C813 +1146,C880 1146,C880 +1146,C8ED 1146,C8ED +1146,C95A 1146,C95A +1146,C9C7 1146,C9C7 +1146,CA34 1146,CA34 +1146,CAA1 1146,CAA1 +1146,CB0D 1146,CB0D +1146,CB7A 1146,CB7A +1146,CBE7 1146,CBE7 +1146,CC54 1146,CC54 +1146,CCC1 1146,CCC1 +1146,CD2E 1146,CD2E +1146,CD9B 1146,CD9B +1146,CE08 1146,CE08 +1146,CE75 1146,CE75 +1146,CEE1 1146,CEE1 +1146,CF4E 1146,CF4E +1146,CFBB 1146,CFBB +1146,D028 1146,D028 +1146,D095 1146,D095 +1146,D102 1146,D102 +1146,D16F 1146,D16F +1146,D1DC 1146,D1DC +1146,D249 1146,D249 +1146,D2B5 1146,D2B5 +1146,D322 1146,D322 +1146,D38F 1146,D38F +1146,D3FC 1146,D3FC +1146,D469 1146,D469 +1146,D4D6 1146,D4D6 +1146,D543 1146,D543 +1146,D5B0 1146,D5B0 +1146,D61D 1146,D61D +1146,D689 1146,D689 +1146,D6F6 1146,D6F6 +1146,D763 1146,D763 +1147,AC01 1147,AC01 +1147,AC6D 1147,AC6D +1147,ACDA 1147,ACDA +1147,AD47 1147,AD47 +1147,ADB4 1147,ADB4 +1147,AE21 1147,AE21 +1147,AE8E 1147,AE8E +1147,AEFB 1147,AEFB +1147,AF68 1147,AF68 +1147,AFD5 1147,AFD5 +1147,B041 1147,B041 +1147,B0AE 1147,B0AE +1147,B11B 1147,B11B +1147,B188 1147,B188 +1147,B1F5 1147,B1F5 +1147,B262 1147,B262 +1147,B2CF 1147,B2CF +1147,B33C 1147,B33C +1147,B3A9 1147,B3A9 +1147,B415 1147,B415 +1147,B482 1147,B482 +1147,B4EF 1147,B4EF +1147,B55C 1147,B55C +1147,B5C9 1147,B5C9 +1147,B636 1147,B636 +1147,B6A3 1147,B6A3 +1147,B710 1147,B710 +1147,B77D 1147,B77D +1147,B7E9 1147,B7E9 +1147,B856 1147,B856 +1147,B8C3 1147,B8C3 +1147,B930 1147,B930 +1147,B99D 1147,B99D +1147,BA0A 1147,BA0A +1147,BA77 1147,BA77 +1147,BAE4 1147,BAE4 +1147,BB51 1147,BB51 +1147,BBBD 1147,BBBD +1147,BC2A 1147,BC2A +1147,BC97 1147,BC97 +1147,BD04 1147,BD04 +1147,BD71 1147,BD71 +1147,BDDE 1147,BDDE +1147,BE4B 1147,BE4B +1147,BEB8 1147,BEB8 +1147,BF25 1147,BF25 +1147,BF91 1147,BF91 +1147,BFFE 1147,BFFE +1147,C06B 1147,C06B +1147,C0D8 1147,C0D8 +1147,C145 1147,C145 +1147,C1B2 1147,C1B2 +1147,C21F 1147,C21F +1147,C28C 1147,C28C +1147,C2F9 1147,C2F9 +1147,C365 1147,C365 +1147,C3D2 1147,C3D2 +1147,C43F 1147,C43F +1147,C4AC 1147,C4AC +1147,C519 1147,C519 +1147,C586 1147,C586 +1147,C5F3 1147,C5F3 +1147,C660 1147,C660 +1147,C6CD 1147,C6CD +1147,C739 1147,C739 +1147,C7A6 1147,C7A6 +1147,C813 1147,C813 +1147,C880 1147,C880 +1147,C8ED 1147,C8ED +1147,C95A 1147,C95A +1147,C9C7 1147,C9C7 +1147,CA34 1147,CA34 +1147,CAA1 1147,CAA1 +1147,CB0D 1147,CB0D +1147,CB7A 1147,CB7A +1147,CBE7 1147,CBE7 +1147,CC54 1147,CC54 +1147,CCC1 1147,CCC1 +1147,CD2E 1147,CD2E +1147,CD9B 1147,CD9B +1147,CE08 1147,CE08 +1147,CE75 1147,CE75 +1147,CEE1 1147,CEE1 +1147,CF4E 1147,CF4E +1147,CFBB 1147,CFBB +1147,D028 1147,D028 +1147,D095 1147,D095 +1147,D102 1147,D102 +1147,D16F 1147,D16F +1147,D1DC 1147,D1DC +1147,D249 1147,D249 +1147,D2B5 1147,D2B5 +1147,D322 1147,D322 +1147,D38F 1147,D38F +1147,D3FC 1147,D3FC +1147,D469 1147,D469 +1147,D4D6 1147,D4D6 +1147,D543 1147,D543 +1147,D5B0 1147,D5B0 +1147,D61D 1147,D61D +1147,D689 1147,D689 +1147,D6F6 1147,D6F6 +1147,D763 1147,D763 +1148,AC01 1148,AC01 +1148,AC6D 1148,AC6D +1148,ACDA 1148,ACDA +1148,AD47 1148,AD47 +1148,ADB4 1148,ADB4 +1148,AE21 1148,AE21 +1148,AE8E 1148,AE8E +1148,AEFB 1148,AEFB +1148,AF68 1148,AF68 +1148,AFD5 1148,AFD5 +1148,B041 1148,B041 +1148,B0AE 1148,B0AE +1148,B11B 1148,B11B +1148,B188 1148,B188 +1148,B1F5 1148,B1F5 +1148,B262 1148,B262 +1148,B2CF 1148,B2CF +1148,B33C 1148,B33C +1148,B3A9 1148,B3A9 +1148,B415 1148,B415 +1148,B482 1148,B482 +1148,B4EF 1148,B4EF +1148,B55C 1148,B55C +1148,B5C9 1148,B5C9 +1148,B636 1148,B636 +1148,B6A3 1148,B6A3 +1148,B710 1148,B710 +1148,B77D 1148,B77D +1148,B7E9 1148,B7E9 +1148,B856 1148,B856 +1148,B8C3 1148,B8C3 +1148,B930 1148,B930 +1148,B99D 1148,B99D +1148,BA0A 1148,BA0A +1148,BA77 1148,BA77 +1148,BAE4 1148,BAE4 +1148,BB51 1148,BB51 +1148,BBBD 1148,BBBD +1148,BC2A 1148,BC2A +1148,BC97 1148,BC97 +1148,BD04 1148,BD04 +1148,BD71 1148,BD71 +1148,BDDE 1148,BDDE +1148,BE4B 1148,BE4B +1148,BEB8 1148,BEB8 +1148,BF25 1148,BF25 +1148,BF91 1148,BF91 +1148,BFFE 1148,BFFE +1148,C06B 1148,C06B +1148,C0D8 1148,C0D8 +1148,C145 1148,C145 +1148,C1B2 1148,C1B2 +1148,C21F 1148,C21F +1148,C28C 1148,C28C +1148,C2F9 1148,C2F9 +1148,C365 1148,C365 +1148,C3D2 1148,C3D2 +1148,C43F 1148,C43F +1148,C4AC 1148,C4AC +1148,C519 1148,C519 +1148,C586 1148,C586 +1148,C5F3 1148,C5F3 +1148,C660 1148,C660 +1148,C6CD 1148,C6CD +1148,C739 1148,C739 +1148,C7A6 1148,C7A6 +1148,C813 1148,C813 +1148,C880 1148,C880 +1148,C8ED 1148,C8ED +1148,C95A 1148,C95A +1148,C9C7 1148,C9C7 +1148,CA34 1148,CA34 +1148,CAA1 1148,CAA1 +1148,CB0D 1148,CB0D +1148,CB7A 1148,CB7A +1148,CBE7 1148,CBE7 +1148,CC54 1148,CC54 +1148,CCC1 1148,CCC1 +1148,CD2E 1148,CD2E +1148,CD9B 1148,CD9B +1148,CE08 1148,CE08 +1148,CE75 1148,CE75 +1148,CEE1 1148,CEE1 +1148,CF4E 1148,CF4E +1148,CFBB 1148,CFBB +1148,D028 1148,D028 +1148,D095 1148,D095 +1148,D102 1148,D102 +1148,D16F 1148,D16F +1148,D1DC 1148,D1DC +1148,D249 1148,D249 +1148,D2B5 1148,D2B5 +1148,D322 1148,D322 +1148,D38F 1148,D38F +1148,D3FC 1148,D3FC +1148,D469 1148,D469 +1148,D4D6 1148,D4D6 +1148,D543 1148,D543 +1148,D5B0 1148,D5B0 +1148,D61D 1148,D61D +1148,D689 1148,D689 +1148,D6F6 1148,D6F6 +1148,D763 1148,D763 +1149,AC01 1149,AC01 +1149,AC6D 1149,AC6D +1149,ACDA 1149,ACDA +1149,AD47 1149,AD47 +1149,ADB4 1149,ADB4 +1149,AE21 1149,AE21 +1149,AE8E 1149,AE8E +1149,AEFB 1149,AEFB +1149,AF68 1149,AF68 +1149,AFD5 1149,AFD5 +1149,B041 1149,B041 +1149,B0AE 1149,B0AE +1149,B11B 1149,B11B +1149,B188 1149,B188 +1149,B1F5 1149,B1F5 +1149,B262 1149,B262 +1149,B2CF 1149,B2CF +1149,B33C 1149,B33C +1149,B3A9 1149,B3A9 +1149,B415 1149,B415 +1149,B482 1149,B482 +1149,B4EF 1149,B4EF +1149,B55C 1149,B55C +1149,B5C9 1149,B5C9 +1149,B636 1149,B636 +1149,B6A3 1149,B6A3 +1149,B710 1149,B710 +1149,B77D 1149,B77D +1149,B7E9 1149,B7E9 +1149,B856 1149,B856 +1149,B8C3 1149,B8C3 +1149,B930 1149,B930 +1149,B99D 1149,B99D +1149,BA0A 1149,BA0A +1149,BA77 1149,BA77 +1149,BAE4 1149,BAE4 +1149,BB51 1149,BB51 +1149,BBBD 1149,BBBD +1149,BC2A 1149,BC2A +1149,BC97 1149,BC97 +1149,BD04 1149,BD04 +1149,BD71 1149,BD71 +1149,BDDE 1149,BDDE +1149,BE4B 1149,BE4B +1149,BEB8 1149,BEB8 +1149,BF25 1149,BF25 +1149,BF91 1149,BF91 +1149,BFFE 1149,BFFE +1149,C06B 1149,C06B +1149,C0D8 1149,C0D8 +1149,C145 1149,C145 +1149,C1B2 1149,C1B2 +1149,C21F 1149,C21F +1149,C28C 1149,C28C +1149,C2F9 1149,C2F9 +1149,C365 1149,C365 +1149,C3D2 1149,C3D2 +1149,C43F 1149,C43F +1149,C4AC 1149,C4AC +1149,C519 1149,C519 +1149,C586 1149,C586 +1149,C5F3 1149,C5F3 +1149,C660 1149,C660 +1149,C6CD 1149,C6CD +1149,C739 1149,C739 +1149,C7A6 1149,C7A6 +1149,C813 1149,C813 +1149,C880 1149,C880 +1149,C8ED 1149,C8ED +1149,C95A 1149,C95A +1149,C9C7 1149,C9C7 +1149,CA34 1149,CA34 +1149,CAA1 1149,CAA1 +1149,CB0D 1149,CB0D +1149,CB7A 1149,CB7A +1149,CBE7 1149,CBE7 +1149,CC54 1149,CC54 +1149,CCC1 1149,CCC1 +1149,CD2E 1149,CD2E +1149,CD9B 1149,CD9B +1149,CE08 1149,CE08 +1149,CE75 1149,CE75 +1149,CEE1 1149,CEE1 +1149,CF4E 1149,CF4E +1149,CFBB 1149,CFBB +1149,D028 1149,D028 +1149,D095 1149,D095 +1149,D102 1149,D102 +1149,D16F 1149,D16F +1149,D1DC 1149,D1DC +1149,D249 1149,D249 +1149,D2B5 1149,D2B5 +1149,D322 1149,D322 +1149,D38F 1149,D38F +1149,D3FC 1149,D3FC +1149,D469 1149,D469 +1149,D4D6 1149,D4D6 +1149,D543 1149,D543 +1149,D5B0 1149,D5B0 +1149,D61D 1149,D61D +1149,D689 1149,D689 +1149,D6F6 1149,D6F6 +1149,D763 1149,D763 +114A,AC01 114A,AC01 +114A,AC6D 114A,AC6D +114A,ACDA 114A,ACDA +114A,AD47 114A,AD47 +114A,ADB4 114A,ADB4 +114A,AE21 114A,AE21 +114A,AE8E 114A,AE8E +114A,AEFB 114A,AEFB +114A,AF68 114A,AF68 +114A,AFD5 114A,AFD5 +114A,B041 114A,B041 +114A,B0AE 114A,B0AE +114A,B11B 114A,B11B +114A,B188 114A,B188 +114A,B1F5 114A,B1F5 +114A,B262 114A,B262 +114A,B2CF 114A,B2CF +114A,B33C 114A,B33C +114A,B3A9 114A,B3A9 +114A,B415 114A,B415 +114A,B482 114A,B482 +114A,B4EF 114A,B4EF +114A,B55C 114A,B55C +114A,B5C9 114A,B5C9 +114A,B636 114A,B636 +114A,B6A3 114A,B6A3 +114A,B710 114A,B710 +114A,B77D 114A,B77D +114A,B7E9 114A,B7E9 +114A,B856 114A,B856 +114A,B8C3 114A,B8C3 +114A,B930 114A,B930 +114A,B99D 114A,B99D +114A,BA0A 114A,BA0A +114A,BA77 114A,BA77 +114A,BAE4 114A,BAE4 +114A,BB51 114A,BB51 +114A,BBBD 114A,BBBD +114A,BC2A 114A,BC2A +114A,BC97 114A,BC97 +114A,BD04 114A,BD04 +114A,BD71 114A,BD71 +114A,BDDE 114A,BDDE +114A,BE4B 114A,BE4B +114A,BEB8 114A,BEB8 +114A,BF25 114A,BF25 +114A,BF91 114A,BF91 +114A,BFFE 114A,BFFE +114A,C06B 114A,C06B +114A,C0D8 114A,C0D8 +114A,C145 114A,C145 +114A,C1B2 114A,C1B2 +114A,C21F 114A,C21F +114A,C28C 114A,C28C +114A,C2F9 114A,C2F9 +114A,C365 114A,C365 +114A,C3D2 114A,C3D2 +114A,C43F 114A,C43F +114A,C4AC 114A,C4AC +114A,C519 114A,C519 +114A,C586 114A,C586 +114A,C5F3 114A,C5F3 +114A,C660 114A,C660 +114A,C6CD 114A,C6CD +114A,C739 114A,C739 +114A,C7A6 114A,C7A6 +114A,C813 114A,C813 +114A,C880 114A,C880 +114A,C8ED 114A,C8ED +114A,C95A 114A,C95A +114A,C9C7 114A,C9C7 +114A,CA34 114A,CA34 +114A,CAA1 114A,CAA1 +114A,CB0D 114A,CB0D +114A,CB7A 114A,CB7A +114A,CBE7 114A,CBE7 +114A,CC54 114A,CC54 +114A,CCC1 114A,CCC1 +114A,CD2E 114A,CD2E +114A,CD9B 114A,CD9B +114A,CE08 114A,CE08 +114A,CE75 114A,CE75 +114A,CEE1 114A,CEE1 +114A,CF4E 114A,CF4E +114A,CFBB 114A,CFBB +114A,D028 114A,D028 +114A,D095 114A,D095 +114A,D102 114A,D102 +114A,D16F 114A,D16F +114A,D1DC 114A,D1DC +114A,D249 114A,D249 +114A,D2B5 114A,D2B5 +114A,D322 114A,D322 +114A,D38F 114A,D38F +114A,D3FC 114A,D3FC +114A,D469 114A,D469 +114A,D4D6 114A,D4D6 +114A,D543 114A,D543 +114A,D5B0 114A,D5B0 +114A,D61D 114A,D61D +114A,D689 114A,D689 +114A,D6F6 114A,D6F6 +114A,D763 114A,D763 +114B,AC01 114B,AC01 +114B,AC6D 114B,AC6D +114B,ACDA 114B,ACDA +114B,AD47 114B,AD47 +114B,ADB4 114B,ADB4 +114B,AE21 114B,AE21 +114B,AE8E 114B,AE8E +114B,AEFB 114B,AEFB +114B,AF68 114B,AF68 +114B,AFD5 114B,AFD5 +114B,B041 114B,B041 +114B,B0AE 114B,B0AE +114B,B11B 114B,B11B +114B,B188 114B,B188 +114B,B1F5 114B,B1F5 +114B,B262 114B,B262 +114B,B2CF 114B,B2CF +114B,B33C 114B,B33C +114B,B3A9 114B,B3A9 +114B,B415 114B,B415 +114B,B482 114B,B482 +114B,B4EF 114B,B4EF +114B,B55C 114B,B55C +114B,B5C9 114B,B5C9 +114B,B636 114B,B636 +114B,B6A3 114B,B6A3 +114B,B710 114B,B710 +114B,B77D 114B,B77D +114B,B7E9 114B,B7E9 +114B,B856 114B,B856 +114B,B8C3 114B,B8C3 +114B,B930 114B,B930 +114B,B99D 114B,B99D +114B,BA0A 114B,BA0A +114B,BA77 114B,BA77 +114B,BAE4 114B,BAE4 +114B,BB51 114B,BB51 +114B,BBBD 114B,BBBD +114B,BC2A 114B,BC2A +114B,BC97 114B,BC97 +114B,BD04 114B,BD04 +114B,BD71 114B,BD71 +114B,BDDE 114B,BDDE +114B,BE4B 114B,BE4B +114B,BEB8 114B,BEB8 +114B,BF25 114B,BF25 +114B,BF91 114B,BF91 +114B,BFFE 114B,BFFE +114B,C06B 114B,C06B +114B,C0D8 114B,C0D8 +114B,C145 114B,C145 +114B,C1B2 114B,C1B2 +114B,C21F 114B,C21F +114B,C28C 114B,C28C +114B,C2F9 114B,C2F9 +114B,C365 114B,C365 +114B,C3D2 114B,C3D2 +114B,C43F 114B,C43F +114B,C4AC 114B,C4AC +114B,C519 114B,C519 +114B,C586 114B,C586 +114B,C5F3 114B,C5F3 +114B,C660 114B,C660 +114B,C6CD 114B,C6CD +114B,C739 114B,C739 +114B,C7A6 114B,C7A6 +114B,C813 114B,C813 +114B,C880 114B,C880 +114B,C8ED 114B,C8ED +114B,C95A 114B,C95A +114B,C9C7 114B,C9C7 +114B,CA34 114B,CA34 +114B,CAA1 114B,CAA1 +114B,CB0D 114B,CB0D +114B,CB7A 114B,CB7A +114B,CBE7 114B,CBE7 +114B,CC54 114B,CC54 +114B,CCC1 114B,CCC1 +114B,CD2E 114B,CD2E +114B,CD9B 114B,CD9B +114B,CE08 114B,CE08 +114B,CE75 114B,CE75 +114B,CEE1 114B,CEE1 +114B,CF4E 114B,CF4E +114B,CFBB 114B,CFBB +114B,D028 114B,D028 +114B,D095 114B,D095 +114B,D102 114B,D102 +114B,D16F 114B,D16F +114B,D1DC 114B,D1DC +114B,D249 114B,D249 +114B,D2B5 114B,D2B5 +114B,D322 114B,D322 +114B,D38F 114B,D38F +114B,D3FC 114B,D3FC +114B,D469 114B,D469 +114B,D4D6 114B,D4D6 +114B,D543 114B,D543 +114B,D5B0 114B,D5B0 +114B,D61D 114B,D61D +114B,D689 114B,D689 +114B,D6F6 114B,D6F6 +114B,D763 114B,D763 +114C,AC01 114C,AC01 +114C,AC6D 114C,AC6D +114C,ACDA 114C,ACDA +114C,AD47 114C,AD47 +114C,ADB4 114C,ADB4 +114C,AE21 114C,AE21 +114C,AE8E 114C,AE8E +114C,AEFB 114C,AEFB +114C,AF68 114C,AF68 +114C,AFD5 114C,AFD5 +114C,B041 114C,B041 +114C,B0AE 114C,B0AE +114C,B11B 114C,B11B +114C,B188 114C,B188 +114C,B1F5 114C,B1F5 +114C,B262 114C,B262 +114C,B2CF 114C,B2CF +114C,B33C 114C,B33C +114C,B3A9 114C,B3A9 +114C,B415 114C,B415 +114C,B482 114C,B482 +114C,B4EF 114C,B4EF +114C,B55C 114C,B55C +114C,B5C9 114C,B5C9 +114C,B636 114C,B636 +114C,B6A3 114C,B6A3 +114C,B710 114C,B710 +114C,B77D 114C,B77D +114C,B7E9 114C,B7E9 +114C,B856 114C,B856 +114C,B8C3 114C,B8C3 +114C,B930 114C,B930 +114C,B99D 114C,B99D +114C,BA0A 114C,BA0A +114C,BA77 114C,BA77 +114C,BAE4 114C,BAE4 +114C,BB51 114C,BB51 +114C,BBBD 114C,BBBD +114C,BC2A 114C,BC2A +114C,BC97 114C,BC97 +114C,BD04 114C,BD04 +114C,BD71 114C,BD71 +114C,BDDE 114C,BDDE +114C,BE4B 114C,BE4B +114C,BEB8 114C,BEB8 +114C,BF25 114C,BF25 +114C,BF91 114C,BF91 +114C,BFFE 114C,BFFE +114C,C06B 114C,C06B +114C,C0D8 114C,C0D8 +114C,C145 114C,C145 +114C,C1B2 114C,C1B2 +114C,C21F 114C,C21F +114C,C28C 114C,C28C +114C,C2F9 114C,C2F9 +114C,C365 114C,C365 +114C,C3D2 114C,C3D2 +114C,C43F 114C,C43F +114C,C4AC 114C,C4AC +114C,C519 114C,C519 +114C,C586 114C,C586 +114C,C5F3 114C,C5F3 +114C,C660 114C,C660 +114C,C6CD 114C,C6CD +114C,C739 114C,C739 +114C,C7A6 114C,C7A6 +114C,C813 114C,C813 +114C,C880 114C,C880 +114C,C8ED 114C,C8ED +114C,C95A 114C,C95A +114C,C9C7 114C,C9C7 +114C,CA34 114C,CA34 +114C,CAA1 114C,CAA1 +114C,CB0D 114C,CB0D +114C,CB7A 114C,CB7A +114C,CBE7 114C,CBE7 +114C,CC54 114C,CC54 +114C,CCC1 114C,CCC1 +114C,CD2E 114C,CD2E +114C,CD9B 114C,CD9B +114C,CE08 114C,CE08 +114C,CE75 114C,CE75 +114C,CEE1 114C,CEE1 +114C,CF4E 114C,CF4E +114C,CFBB 114C,CFBB +114C,D028 114C,D028 +114C,D095 114C,D095 +114C,D102 114C,D102 +114C,D16F 114C,D16F +114C,D1DC 114C,D1DC +114C,D249 114C,D249 +114C,D2B5 114C,D2B5 +114C,D322 114C,D322 +114C,D38F 114C,D38F +114C,D3FC 114C,D3FC +114C,D469 114C,D469 +114C,D4D6 114C,D4D6 +114C,D543 114C,D543 +114C,D5B0 114C,D5B0 +114C,D61D 114C,D61D +114C,D689 114C,D689 +114C,D6F6 114C,D6F6 +114C,D763 114C,D763 +114D,AC01 114D,AC01 +114D,AC6D 114D,AC6D +114D,ACDA 114D,ACDA +114D,AD47 114D,AD47 +114D,ADB4 114D,ADB4 +114D,AE21 114D,AE21 +114D,AE8E 114D,AE8E +114D,AEFB 114D,AEFB +114D,AF68 114D,AF68 +114D,AFD5 114D,AFD5 +114D,B041 114D,B041 +114D,B0AE 114D,B0AE +114D,B11B 114D,B11B +114D,B188 114D,B188 +114D,B1F5 114D,B1F5 +114D,B262 114D,B262 +114D,B2CF 114D,B2CF +114D,B33C 114D,B33C +114D,B3A9 114D,B3A9 +114D,B415 114D,B415 +114D,B482 114D,B482 +114D,B4EF 114D,B4EF +114D,B55C 114D,B55C +114D,B5C9 114D,B5C9 +114D,B636 114D,B636 +114D,B6A3 114D,B6A3 +114D,B710 114D,B710 +114D,B77D 114D,B77D +114D,B7E9 114D,B7E9 +114D,B856 114D,B856 +114D,B8C3 114D,B8C3 +114D,B930 114D,B930 +114D,B99D 114D,B99D +114D,BA0A 114D,BA0A +114D,BA77 114D,BA77 +114D,BAE4 114D,BAE4 +114D,BB51 114D,BB51 +114D,BBBD 114D,BBBD +114D,BC2A 114D,BC2A +114D,BC97 114D,BC97 +114D,BD04 114D,BD04 +114D,BD71 114D,BD71 +114D,BDDE 114D,BDDE +114D,BE4B 114D,BE4B +114D,BEB8 114D,BEB8 +114D,BF25 114D,BF25 +114D,BF91 114D,BF91 +114D,BFFE 114D,BFFE +114D,C06B 114D,C06B +114D,C0D8 114D,C0D8 +114D,C145 114D,C145 +114D,C1B2 114D,C1B2 +114D,C21F 114D,C21F +114D,C28C 114D,C28C +114D,C2F9 114D,C2F9 +114D,C365 114D,C365 +114D,C3D2 114D,C3D2 +114D,C43F 114D,C43F +114D,C4AC 114D,C4AC +114D,C519 114D,C519 +114D,C586 114D,C586 +114D,C5F3 114D,C5F3 +114D,C660 114D,C660 +114D,C6CD 114D,C6CD +114D,C739 114D,C739 +114D,C7A6 114D,C7A6 +114D,C813 114D,C813 +114D,C880 114D,C880 +114D,C8ED 114D,C8ED +114D,C95A 114D,C95A +114D,C9C7 114D,C9C7 +114D,CA34 114D,CA34 +114D,CAA1 114D,CAA1 +114D,CB0D 114D,CB0D +114D,CB7A 114D,CB7A +114D,CBE7 114D,CBE7 +114D,CC54 114D,CC54 +114D,CCC1 114D,CCC1 +114D,CD2E 114D,CD2E +114D,CD9B 114D,CD9B +114D,CE08 114D,CE08 +114D,CE75 114D,CE75 +114D,CEE1 114D,CEE1 +114D,CF4E 114D,CF4E +114D,CFBB 114D,CFBB +114D,D028 114D,D028 +114D,D095 114D,D095 +114D,D102 114D,D102 +114D,D16F 114D,D16F +114D,D1DC 114D,D1DC +114D,D249 114D,D249 +114D,D2B5 114D,D2B5 +114D,D322 114D,D322 +114D,D38F 114D,D38F +114D,D3FC 114D,D3FC +114D,D469 114D,D469 +114D,D4D6 114D,D4D6 +114D,D543 114D,D543 +114D,D5B0 114D,D5B0 +114D,D61D 114D,D61D +114D,D689 114D,D689 +114D,D6F6 114D,D6F6 +114D,D763 114D,D763 +114E,AC01 114E,AC01 +114E,AC6D 114E,AC6D +114E,ACDA 114E,ACDA +114E,AD47 114E,AD47 +114E,ADB4 114E,ADB4 +114E,AE21 114E,AE21 +114E,AE8E 114E,AE8E +114E,AEFB 114E,AEFB +114E,AF68 114E,AF68 +114E,AFD5 114E,AFD5 +114E,B041 114E,B041 +114E,B0AE 114E,B0AE +114E,B11B 114E,B11B +114E,B188 114E,B188 +114E,B1F5 114E,B1F5 +114E,B262 114E,B262 +114E,B2CF 114E,B2CF +114E,B33C 114E,B33C +114E,B3A9 114E,B3A9 +114E,B415 114E,B415 +114E,B482 114E,B482 +114E,B4EF 114E,B4EF +114E,B55C 114E,B55C +114E,B5C9 114E,B5C9 +114E,B636 114E,B636 +114E,B6A3 114E,B6A3 +114E,B710 114E,B710 +114E,B77D 114E,B77D +114E,B7E9 114E,B7E9 +114E,B856 114E,B856 +114E,B8C3 114E,B8C3 +114E,B930 114E,B930 +114E,B99D 114E,B99D +114E,BA0A 114E,BA0A +114E,BA77 114E,BA77 +114E,BAE4 114E,BAE4 +114E,BB51 114E,BB51 +114E,BBBD 114E,BBBD +114E,BC2A 114E,BC2A +114E,BC97 114E,BC97 +114E,BD04 114E,BD04 +114E,BD71 114E,BD71 +114E,BDDE 114E,BDDE +114E,BE4B 114E,BE4B +114E,BEB8 114E,BEB8 +114E,BF25 114E,BF25 +114E,BF91 114E,BF91 +114E,BFFE 114E,BFFE +114E,C06B 114E,C06B +114E,C0D8 114E,C0D8 +114E,C145 114E,C145 +114E,C1B2 114E,C1B2 +114E,C21F 114E,C21F +114E,C28C 114E,C28C +114E,C2F9 114E,C2F9 +114E,C365 114E,C365 +114E,C3D2 114E,C3D2 +114E,C43F 114E,C43F +114E,C4AC 114E,C4AC +114E,C519 114E,C519 +114E,C586 114E,C586 +114E,C5F3 114E,C5F3 +114E,C660 114E,C660 +114E,C6CD 114E,C6CD +114E,C739 114E,C739 +114E,C7A6 114E,C7A6 +114E,C813 114E,C813 +114E,C880 114E,C880 +114E,C8ED 114E,C8ED +114E,C95A 114E,C95A +114E,C9C7 114E,C9C7 +114E,CA34 114E,CA34 +114E,CAA1 114E,CAA1 +114E,CB0D 114E,CB0D +114E,CB7A 114E,CB7A +114E,CBE7 114E,CBE7 +114E,CC54 114E,CC54 +114E,CCC1 114E,CCC1 +114E,CD2E 114E,CD2E +114E,CD9B 114E,CD9B +114E,CE08 114E,CE08 +114E,CE75 114E,CE75 +114E,CEE1 114E,CEE1 +114E,CF4E 114E,CF4E +114E,CFBB 114E,CFBB +114E,D028 114E,D028 +114E,D095 114E,D095 +114E,D102 114E,D102 +114E,D16F 114E,D16F +114E,D1DC 114E,D1DC +114E,D249 114E,D249 +114E,D2B5 114E,D2B5 +114E,D322 114E,D322 +114E,D38F 114E,D38F +114E,D3FC 114E,D3FC +114E,D469 114E,D469 +114E,D4D6 114E,D4D6 +114E,D543 114E,D543 +114E,D5B0 114E,D5B0 +114E,D61D 114E,D61D +114E,D689 114E,D689 +114E,D6F6 114E,D6F6 +114E,D763 114E,D763 +114F,AC01 114F,AC01 +114F,AC6D 114F,AC6D +114F,ACDA 114F,ACDA +114F,AD47 114F,AD47 +114F,ADB4 114F,ADB4 +114F,AE21 114F,AE21 +114F,AE8E 114F,AE8E +114F,AEFB 114F,AEFB +114F,AF68 114F,AF68 +114F,AFD5 114F,AFD5 +114F,B041 114F,B041 +114F,B0AE 114F,B0AE +114F,B11B 114F,B11B +114F,B188 114F,B188 +114F,B1F5 114F,B1F5 +114F,B262 114F,B262 +114F,B2CF 114F,B2CF +114F,B33C 114F,B33C +114F,B3A9 114F,B3A9 +114F,B415 114F,B415 +114F,B482 114F,B482 +114F,B4EF 114F,B4EF +114F,B55C 114F,B55C +114F,B5C9 114F,B5C9 +114F,B636 114F,B636 +114F,B6A3 114F,B6A3 +114F,B710 114F,B710 +114F,B77D 114F,B77D +114F,B7E9 114F,B7E9 +114F,B856 114F,B856 +114F,B8C3 114F,B8C3 +114F,B930 114F,B930 +114F,B99D 114F,B99D +114F,BA0A 114F,BA0A +114F,BA77 114F,BA77 +114F,BAE4 114F,BAE4 +114F,BB51 114F,BB51 +114F,BBBD 114F,BBBD +114F,BC2A 114F,BC2A +114F,BC97 114F,BC97 +114F,BD04 114F,BD04 +114F,BD71 114F,BD71 +114F,BDDE 114F,BDDE +114F,BE4B 114F,BE4B +114F,BEB8 114F,BEB8 +114F,BF25 114F,BF25 +114F,BF91 114F,BF91 +114F,BFFE 114F,BFFE +114F,C06B 114F,C06B +114F,C0D8 114F,C0D8 +114F,C145 114F,C145 +114F,C1B2 114F,C1B2 +114F,C21F 114F,C21F +114F,C28C 114F,C28C +114F,C2F9 114F,C2F9 +114F,C365 114F,C365 +114F,C3D2 114F,C3D2 +114F,C43F 114F,C43F +114F,C4AC 114F,C4AC +114F,C519 114F,C519 +114F,C586 114F,C586 +114F,C5F3 114F,C5F3 +114F,C660 114F,C660 +114F,C6CD 114F,C6CD +114F,C739 114F,C739 +114F,C7A6 114F,C7A6 +114F,C813 114F,C813 +114F,C880 114F,C880 +114F,C8ED 114F,C8ED +114F,C95A 114F,C95A +114F,C9C7 114F,C9C7 +114F,CA34 114F,CA34 +114F,CAA1 114F,CAA1 +114F,CB0D 114F,CB0D +114F,CB7A 114F,CB7A +114F,CBE7 114F,CBE7 +114F,CC54 114F,CC54 +114F,CCC1 114F,CCC1 +114F,CD2E 114F,CD2E +114F,CD9B 114F,CD9B +114F,CE08 114F,CE08 +114F,CE75 114F,CE75 +114F,CEE1 114F,CEE1 +114F,CF4E 114F,CF4E +114F,CFBB 114F,CFBB +114F,D028 114F,D028 +114F,D095 114F,D095 +114F,D102 114F,D102 +114F,D16F 114F,D16F +114F,D1DC 114F,D1DC +114F,D249 114F,D249 +114F,D2B5 114F,D2B5 +114F,D322 114F,D322 +114F,D38F 114F,D38F +114F,D3FC 114F,D3FC +114F,D469 114F,D469 +114F,D4D6 114F,D4D6 +114F,D543 114F,D543 +114F,D5B0 114F,D5B0 +114F,D61D 114F,D61D +114F,D689 114F,D689 +114F,D6F6 114F,D6F6 +114F,D763 114F,D763 +1150,AC01 1150,AC01 +1150,AC6D 1150,AC6D +1150,ACDA 1150,ACDA +1150,AD47 1150,AD47 +1150,ADB4 1150,ADB4 +1150,AE21 1150,AE21 +1150,AE8E 1150,AE8E +1150,AEFB 1150,AEFB +1150,AF68 1150,AF68 +1150,AFD5 1150,AFD5 +1150,B041 1150,B041 +1150,B0AE 1150,B0AE +1150,B11B 1150,B11B +1150,B188 1150,B188 +1150,B1F5 1150,B1F5 +1150,B262 1150,B262 +1150,B2CF 1150,B2CF +1150,B33C 1150,B33C +1150,B3A9 1150,B3A9 +1150,B415 1150,B415 +1150,B482 1150,B482 +1150,B4EF 1150,B4EF +1150,B55C 1150,B55C +1150,B5C9 1150,B5C9 +1150,B636 1150,B636 +1150,B6A3 1150,B6A3 +1150,B710 1150,B710 +1150,B77D 1150,B77D +1150,B7E9 1150,B7E9 +1150,B856 1150,B856 +1150,B8C3 1150,B8C3 +1150,B930 1150,B930 +1150,B99D 1150,B99D +1150,BA0A 1150,BA0A +1150,BA77 1150,BA77 +1150,BAE4 1150,BAE4 +1150,BB51 1150,BB51 +1150,BBBD 1150,BBBD +1150,BC2A 1150,BC2A +1150,BC97 1150,BC97 +1150,BD04 1150,BD04 +1150,BD71 1150,BD71 +1150,BDDE 1150,BDDE +1150,BE4B 1150,BE4B +1150,BEB8 1150,BEB8 +1150,BF25 1150,BF25 +1150,BF91 1150,BF91 +1150,BFFE 1150,BFFE +1150,C06B 1150,C06B +1150,C0D8 1150,C0D8 +1150,C145 1150,C145 +1150,C1B2 1150,C1B2 +1150,C21F 1150,C21F +1150,C28C 1150,C28C +1150,C2F9 1150,C2F9 +1150,C365 1150,C365 +1150,C3D2 1150,C3D2 +1150,C43F 1150,C43F +1150,C4AC 1150,C4AC +1150,C519 1150,C519 +1150,C586 1150,C586 +1150,C5F3 1150,C5F3 +1150,C660 1150,C660 +1150,C6CD 1150,C6CD +1150,C739 1150,C739 +1150,C7A6 1150,C7A6 +1150,C813 1150,C813 +1150,C880 1150,C880 +1150,C8ED 1150,C8ED +1150,C95A 1150,C95A +1150,C9C7 1150,C9C7 +1150,CA34 1150,CA34 +1150,CAA1 1150,CAA1 +1150,CB0D 1150,CB0D +1150,CB7A 1150,CB7A +1150,CBE7 1150,CBE7 +1150,CC54 1150,CC54 +1150,CCC1 1150,CCC1 +1150,CD2E 1150,CD2E +1150,CD9B 1150,CD9B +1150,CE08 1150,CE08 +1150,CE75 1150,CE75 +1150,CEE1 1150,CEE1 +1150,CF4E 1150,CF4E +1150,CFBB 1150,CFBB +1150,D028 1150,D028 +1150,D095 1150,D095 +1150,D102 1150,D102 +1150,D16F 1150,D16F +1150,D1DC 1150,D1DC +1150,D249 1150,D249 +1150,D2B5 1150,D2B5 +1150,D322 1150,D322 +1150,D38F 1150,D38F +1150,D3FC 1150,D3FC +1150,D469 1150,D469 +1150,D4D6 1150,D4D6 +1150,D543 1150,D543 +1150,D5B0 1150,D5B0 +1150,D61D 1150,D61D +1150,D689 1150,D689 +1150,D6F6 1150,D6F6 +1150,D763 1150,D763 +1151,AC01 1151,AC01 +1151,AC6D 1151,AC6D +1151,ACDA 1151,ACDA +1151,AD47 1151,AD47 +1151,ADB4 1151,ADB4 +1151,AE21 1151,AE21 +1151,AE8E 1151,AE8E +1151,AEFB 1151,AEFB +1151,AF68 1151,AF68 +1151,AFD5 1151,AFD5 +1151,B041 1151,B041 +1151,B0AE 1151,B0AE +1151,B11B 1151,B11B +1151,B188 1151,B188 +1151,B1F5 1151,B1F5 +1151,B262 1151,B262 +1151,B2CF 1151,B2CF +1151,B33C 1151,B33C +1151,B3A9 1151,B3A9 +1151,B415 1151,B415 +1151,B482 1151,B482 +1151,B4EF 1151,B4EF +1151,B55C 1151,B55C +1151,B5C9 1151,B5C9 +1151,B636 1151,B636 +1151,B6A3 1151,B6A3 +1151,B710 1151,B710 +1151,B77D 1151,B77D +1151,B7E9 1151,B7E9 +1151,B856 1151,B856 +1151,B8C3 1151,B8C3 +1151,B930 1151,B930 +1151,B99D 1151,B99D +1151,BA0A 1151,BA0A +1151,BA77 1151,BA77 +1151,BAE4 1151,BAE4 +1151,BB51 1151,BB51 +1151,BBBD 1151,BBBD +1151,BC2A 1151,BC2A +1151,BC97 1151,BC97 +1151,BD04 1151,BD04 +1151,BD71 1151,BD71 +1151,BDDE 1151,BDDE +1151,BE4B 1151,BE4B +1151,BEB8 1151,BEB8 +1151,BF25 1151,BF25 +1151,BF91 1151,BF91 +1151,BFFE 1151,BFFE +1151,C06B 1151,C06B +1151,C0D8 1151,C0D8 +1151,C145 1151,C145 +1151,C1B2 1151,C1B2 +1151,C21F 1151,C21F +1151,C28C 1151,C28C +1151,C2F9 1151,C2F9 +1151,C365 1151,C365 +1151,C3D2 1151,C3D2 +1151,C43F 1151,C43F +1151,C4AC 1151,C4AC +1151,C519 1151,C519 +1151,C586 1151,C586 +1151,C5F3 1151,C5F3 +1151,C660 1151,C660 +1151,C6CD 1151,C6CD +1151,C739 1151,C739 +1151,C7A6 1151,C7A6 +1151,C813 1151,C813 +1151,C880 1151,C880 +1151,C8ED 1151,C8ED +1151,C95A 1151,C95A +1151,C9C7 1151,C9C7 +1151,CA34 1151,CA34 +1151,CAA1 1151,CAA1 +1151,CB0D 1151,CB0D +1151,CB7A 1151,CB7A +1151,CBE7 1151,CBE7 +1151,CC54 1151,CC54 +1151,CCC1 1151,CCC1 +1151,CD2E 1151,CD2E +1151,CD9B 1151,CD9B +1151,CE08 1151,CE08 +1151,CE75 1151,CE75 +1151,CEE1 1151,CEE1 +1151,CF4E 1151,CF4E +1151,CFBB 1151,CFBB +1151,D028 1151,D028 +1151,D095 1151,D095 +1151,D102 1151,D102 +1151,D16F 1151,D16F +1151,D1DC 1151,D1DC +1151,D249 1151,D249 +1151,D2B5 1151,D2B5 +1151,D322 1151,D322 +1151,D38F 1151,D38F +1151,D3FC 1151,D3FC +1151,D469 1151,D469 +1151,D4D6 1151,D4D6 +1151,D543 1151,D543 +1151,D5B0 1151,D5B0 +1151,D61D 1151,D61D +1151,D689 1151,D689 +1151,D6F6 1151,D6F6 +1151,D763 1151,D763 +1152,AC01 1152,AC01 +1152,AC6D 1152,AC6D +1152,ACDA 1152,ACDA +1152,AD47 1152,AD47 +1152,ADB4 1152,ADB4 +1152,AE21 1152,AE21 +1152,AE8E 1152,AE8E +1152,AEFB 1152,AEFB +1152,AF68 1152,AF68 +1152,AFD5 1152,AFD5 +1152,B041 1152,B041 +1152,B0AE 1152,B0AE +1152,B11B 1152,B11B +1152,B188 1152,B188 +1152,B1F5 1152,B1F5 +1152,B262 1152,B262 +1152,B2CF 1152,B2CF +1152,B33C 1152,B33C +1152,B3A9 1152,B3A9 +1152,B415 1152,B415 +1152,B482 1152,B482 +1152,B4EF 1152,B4EF +1152,B55C 1152,B55C +1152,B5C9 1152,B5C9 +1152,B636 1152,B636 +1152,B6A3 1152,B6A3 +1152,B710 1152,B710 +1152,B77D 1152,B77D +1152,B7E9 1152,B7E9 +1152,B856 1152,B856 +1152,B8C3 1152,B8C3 +1152,B930 1152,B930 +1152,B99D 1152,B99D +1152,BA0A 1152,BA0A +1152,BA77 1152,BA77 +1152,BAE4 1152,BAE4 +1152,BB51 1152,BB51 +1152,BBBD 1152,BBBD +1152,BC2A 1152,BC2A +1152,BC97 1152,BC97 +1152,BD04 1152,BD04 +1152,BD71 1152,BD71 +1152,BDDE 1152,BDDE +1152,BE4B 1152,BE4B +1152,BEB8 1152,BEB8 +1152,BF25 1152,BF25 +1152,BF91 1152,BF91 +1152,BFFE 1152,BFFE +1152,C06B 1152,C06B +1152,C0D8 1152,C0D8 +1152,C145 1152,C145 +1152,C1B2 1152,C1B2 +1152,C21F 1152,C21F +1152,C28C 1152,C28C +1152,C2F9 1152,C2F9 +1152,C365 1152,C365 +1152,C3D2 1152,C3D2 +1152,C43F 1152,C43F +1152,C4AC 1152,C4AC +1152,C519 1152,C519 +1152,C586 1152,C586 +1152,C5F3 1152,C5F3 +1152,C660 1152,C660 +1152,C6CD 1152,C6CD +1152,C739 1152,C739 +1152,C7A6 1152,C7A6 +1152,C813 1152,C813 +1152,C880 1152,C880 +1152,C8ED 1152,C8ED +1152,C95A 1152,C95A +1152,C9C7 1152,C9C7 +1152,CA34 1152,CA34 +1152,CAA1 1152,CAA1 +1152,CB0D 1152,CB0D +1152,CB7A 1152,CB7A +1152,CBE7 1152,CBE7 +1152,CC54 1152,CC54 +1152,CCC1 1152,CCC1 +1152,CD2E 1152,CD2E +1152,CD9B 1152,CD9B +1152,CE08 1152,CE08 +1152,CE75 1152,CE75 +1152,CEE1 1152,CEE1 +1152,CF4E 1152,CF4E +1152,CFBB 1152,CFBB +1152,D028 1152,D028 +1152,D095 1152,D095 +1152,D102 1152,D102 +1152,D16F 1152,D16F +1152,D1DC 1152,D1DC +1152,D249 1152,D249 +1152,D2B5 1152,D2B5 +1152,D322 1152,D322 +1152,D38F 1152,D38F +1152,D3FC 1152,D3FC +1152,D469 1152,D469 +1152,D4D6 1152,D4D6 +1152,D543 1152,D543 +1152,D5B0 1152,D5B0 +1152,D61D 1152,D61D +1152,D689 1152,D689 +1152,D6F6 1152,D6F6 +1152,D763 1152,D763 +1153,AC01 1153,AC01 +1153,AC6D 1153,AC6D +1153,ACDA 1153,ACDA +1153,AD47 1153,AD47 +1153,ADB4 1153,ADB4 +1153,AE21 1153,AE21 +1153,AE8E 1153,AE8E +1153,AEFB 1153,AEFB +1153,AF68 1153,AF68 +1153,AFD5 1153,AFD5 +1153,B041 1153,B041 +1153,B0AE 1153,B0AE +1153,B11B 1153,B11B +1153,B188 1153,B188 +1153,B1F5 1153,B1F5 +1153,B262 1153,B262 +1153,B2CF 1153,B2CF +1153,B33C 1153,B33C +1153,B3A9 1153,B3A9 +1153,B415 1153,B415 +1153,B482 1153,B482 +1153,B4EF 1153,B4EF +1153,B55C 1153,B55C +1153,B5C9 1153,B5C9 +1153,B636 1153,B636 +1153,B6A3 1153,B6A3 +1153,B710 1153,B710 +1153,B77D 1153,B77D +1153,B7E9 1153,B7E9 +1153,B856 1153,B856 +1153,B8C3 1153,B8C3 +1153,B930 1153,B930 +1153,B99D 1153,B99D +1153,BA0A 1153,BA0A +1153,BA77 1153,BA77 +1153,BAE4 1153,BAE4 +1153,BB51 1153,BB51 +1153,BBBD 1153,BBBD +1153,BC2A 1153,BC2A +1153,BC97 1153,BC97 +1153,BD04 1153,BD04 +1153,BD71 1153,BD71 +1153,BDDE 1153,BDDE +1153,BE4B 1153,BE4B +1153,BEB8 1153,BEB8 +1153,BF25 1153,BF25 +1153,BF91 1153,BF91 +1153,BFFE 1153,BFFE +1153,C06B 1153,C06B +1153,C0D8 1153,C0D8 +1153,C145 1153,C145 +1153,C1B2 1153,C1B2 +1153,C21F 1153,C21F +1153,C28C 1153,C28C +1153,C2F9 1153,C2F9 +1153,C365 1153,C365 +1153,C3D2 1153,C3D2 +1153,C43F 1153,C43F +1153,C4AC 1153,C4AC +1153,C519 1153,C519 +1153,C586 1153,C586 +1153,C5F3 1153,C5F3 +1153,C660 1153,C660 +1153,C6CD 1153,C6CD +1153,C739 1153,C739 +1153,C7A6 1153,C7A6 +1153,C813 1153,C813 +1153,C880 1153,C880 +1153,C8ED 1153,C8ED +1153,C95A 1153,C95A +1153,C9C7 1153,C9C7 +1153,CA34 1153,CA34 +1153,CAA1 1153,CAA1 +1153,CB0D 1153,CB0D +1153,CB7A 1153,CB7A +1153,CBE7 1153,CBE7 +1153,CC54 1153,CC54 +1153,CCC1 1153,CCC1 +1153,CD2E 1153,CD2E +1153,CD9B 1153,CD9B +1153,CE08 1153,CE08 +1153,CE75 1153,CE75 +1153,CEE1 1153,CEE1 +1153,CF4E 1153,CF4E +1153,CFBB 1153,CFBB +1153,D028 1153,D028 +1153,D095 1153,D095 +1153,D102 1153,D102 +1153,D16F 1153,D16F +1153,D1DC 1153,D1DC +1153,D249 1153,D249 +1153,D2B5 1153,D2B5 +1153,D322 1153,D322 +1153,D38F 1153,D38F +1153,D3FC 1153,D3FC +1153,D469 1153,D469 +1153,D4D6 1153,D4D6 +1153,D543 1153,D543 +1153,D5B0 1153,D5B0 +1153,D61D 1153,D61D +1153,D689 1153,D689 +1153,D6F6 1153,D6F6 +1153,D763 1153,D763 +1154,AC01 1154,AC01 +1154,AC6D 1154,AC6D +1154,ACDA 1154,ACDA +1154,AD47 1154,AD47 +1154,ADB4 1154,ADB4 +1154,AE21 1154,AE21 +1154,AE8E 1154,AE8E +1154,AEFB 1154,AEFB +1154,AF68 1154,AF68 +1154,AFD5 1154,AFD5 +1154,B041 1154,B041 +1154,B0AE 1154,B0AE +1154,B11B 1154,B11B +1154,B188 1154,B188 +1154,B1F5 1154,B1F5 +1154,B262 1154,B262 +1154,B2CF 1154,B2CF +1154,B33C 1154,B33C +1154,B3A9 1154,B3A9 +1154,B415 1154,B415 +1154,B482 1154,B482 +1154,B4EF 1154,B4EF +1154,B55C 1154,B55C +1154,B5C9 1154,B5C9 +1154,B636 1154,B636 +1154,B6A3 1154,B6A3 +1154,B710 1154,B710 +1154,B77D 1154,B77D +1154,B7E9 1154,B7E9 +1154,B856 1154,B856 +1154,B8C3 1154,B8C3 +1154,B930 1154,B930 +1154,B99D 1154,B99D +1154,BA0A 1154,BA0A +1154,BA77 1154,BA77 +1154,BAE4 1154,BAE4 +1154,BB51 1154,BB51 +1154,BBBD 1154,BBBD +1154,BC2A 1154,BC2A +1154,BC97 1154,BC97 +1154,BD04 1154,BD04 +1154,BD71 1154,BD71 +1154,BDDE 1154,BDDE +1154,BE4B 1154,BE4B +1154,BEB8 1154,BEB8 +1154,BF25 1154,BF25 +1154,BF91 1154,BF91 +1154,BFFE 1154,BFFE +1154,C06B 1154,C06B +1154,C0D8 1154,C0D8 +1154,C145 1154,C145 +1154,C1B2 1154,C1B2 +1154,C21F 1154,C21F +1154,C28C 1154,C28C +1154,C2F9 1154,C2F9 +1154,C365 1154,C365 +1154,C3D2 1154,C3D2 +1154,C43F 1154,C43F +1154,C4AC 1154,C4AC +1154,C519 1154,C519 +1154,C586 1154,C586 +1154,C5F3 1154,C5F3 +1154,C660 1154,C660 +1154,C6CD 1154,C6CD +1154,C739 1154,C739 +1154,C7A6 1154,C7A6 +1154,C813 1154,C813 +1154,C880 1154,C880 +1154,C8ED 1154,C8ED +1154,C95A 1154,C95A +1154,C9C7 1154,C9C7 +1154,CA34 1154,CA34 +1154,CAA1 1154,CAA1 +1154,CB0D 1154,CB0D +1154,CB7A 1154,CB7A +1154,CBE7 1154,CBE7 +1154,CC54 1154,CC54 +1154,CCC1 1154,CCC1 +1154,CD2E 1154,CD2E +1154,CD9B 1154,CD9B +1154,CE08 1154,CE08 +1154,CE75 1154,CE75 +1154,CEE1 1154,CEE1 +1154,CF4E 1154,CF4E +1154,CFBB 1154,CFBB +1154,D028 1154,D028 +1154,D095 1154,D095 +1154,D102 1154,D102 +1154,D16F 1154,D16F +1154,D1DC 1154,D1DC +1154,D249 1154,D249 +1154,D2B5 1154,D2B5 +1154,D322 1154,D322 +1154,D38F 1154,D38F +1154,D3FC 1154,D3FC +1154,D469 1154,D469 +1154,D4D6 1154,D4D6 +1154,D543 1154,D543 +1154,D5B0 1154,D5B0 +1154,D61D 1154,D61D +1154,D689 1154,D689 +1154,D6F6 1154,D6F6 +1154,D763 1154,D763 +1155,AC01 1155,AC01 +1155,AC6D 1155,AC6D +1155,ACDA 1155,ACDA +1155,AD47 1155,AD47 +1155,ADB4 1155,ADB4 +1155,AE21 1155,AE21 +1155,AE8E 1155,AE8E +1155,AEFB 1155,AEFB +1155,AF68 1155,AF68 +1155,AFD5 1155,AFD5 +1155,B041 1155,B041 +1155,B0AE 1155,B0AE +1155,B11B 1155,B11B +1155,B188 1155,B188 +1155,B1F5 1155,B1F5 +1155,B262 1155,B262 +1155,B2CF 1155,B2CF +1155,B33C 1155,B33C +1155,B3A9 1155,B3A9 +1155,B415 1155,B415 +1155,B482 1155,B482 +1155,B4EF 1155,B4EF +1155,B55C 1155,B55C +1155,B5C9 1155,B5C9 +1155,B636 1155,B636 +1155,B6A3 1155,B6A3 +1155,B710 1155,B710 +1155,B77D 1155,B77D +1155,B7E9 1155,B7E9 +1155,B856 1155,B856 +1155,B8C3 1155,B8C3 +1155,B930 1155,B930 +1155,B99D 1155,B99D +1155,BA0A 1155,BA0A +1155,BA77 1155,BA77 +1155,BAE4 1155,BAE4 +1155,BB51 1155,BB51 +1155,BBBD 1155,BBBD +1155,BC2A 1155,BC2A +1155,BC97 1155,BC97 +1155,BD04 1155,BD04 +1155,BD71 1155,BD71 +1155,BDDE 1155,BDDE +1155,BE4B 1155,BE4B +1155,BEB8 1155,BEB8 +1155,BF25 1155,BF25 +1155,BF91 1155,BF91 +1155,BFFE 1155,BFFE +1155,C06B 1155,C06B +1155,C0D8 1155,C0D8 +1155,C145 1155,C145 +1155,C1B2 1155,C1B2 +1155,C21F 1155,C21F +1155,C28C 1155,C28C +1155,C2F9 1155,C2F9 +1155,C365 1155,C365 +1155,C3D2 1155,C3D2 +1155,C43F 1155,C43F +1155,C4AC 1155,C4AC +1155,C519 1155,C519 +1155,C586 1155,C586 +1155,C5F3 1155,C5F3 +1155,C660 1155,C660 +1155,C6CD 1155,C6CD +1155,C739 1155,C739 +1155,C7A6 1155,C7A6 +1155,C813 1155,C813 +1155,C880 1155,C880 +1155,C8ED 1155,C8ED +1155,C95A 1155,C95A +1155,C9C7 1155,C9C7 +1155,CA34 1155,CA34 +1155,CAA1 1155,CAA1 +1155,CB0D 1155,CB0D +1155,CB7A 1155,CB7A +1155,CBE7 1155,CBE7 +1155,CC54 1155,CC54 +1155,CCC1 1155,CCC1 +1155,CD2E 1155,CD2E +1155,CD9B 1155,CD9B +1155,CE08 1155,CE08 +1155,CE75 1155,CE75 +1155,CEE1 1155,CEE1 +1155,CF4E 1155,CF4E +1155,CFBB 1155,CFBB +1155,D028 1155,D028 +1155,D095 1155,D095 +1155,D102 1155,D102 +1155,D16F 1155,D16F +1155,D1DC 1155,D1DC +1155,D249 1155,D249 +1155,D2B5 1155,D2B5 +1155,D322 1155,D322 +1155,D38F 1155,D38F +1155,D3FC 1155,D3FC +1155,D469 1155,D469 +1155,D4D6 1155,D4D6 +1155,D543 1155,D543 +1155,D5B0 1155,D5B0 +1155,D61D 1155,D61D +1155,D689 1155,D689 +1155,D6F6 1155,D6F6 +1155,D763 1155,D763 +1156,AC01 1156,AC01 +1156,AC6D 1156,AC6D +1156,ACDA 1156,ACDA +1156,AD47 1156,AD47 +1156,ADB4 1156,ADB4 +1156,AE21 1156,AE21 +1156,AE8E 1156,AE8E +1156,AEFB 1156,AEFB +1156,AF68 1156,AF68 +1156,AFD5 1156,AFD5 +1156,B041 1156,B041 +1156,B0AE 1156,B0AE +1156,B11B 1156,B11B +1156,B188 1156,B188 +1156,B1F5 1156,B1F5 +1156,B262 1156,B262 +1156,B2CF 1156,B2CF +1156,B33C 1156,B33C +1156,B3A9 1156,B3A9 +1156,B415 1156,B415 +1156,B482 1156,B482 +1156,B4EF 1156,B4EF +1156,B55C 1156,B55C +1156,B5C9 1156,B5C9 +1156,B636 1156,B636 +1156,B6A3 1156,B6A3 +1156,B710 1156,B710 +1156,B77D 1156,B77D +1156,B7E9 1156,B7E9 +1156,B856 1156,B856 +1156,B8C3 1156,B8C3 +1156,B930 1156,B930 +1156,B99D 1156,B99D +1156,BA0A 1156,BA0A +1156,BA77 1156,BA77 +1156,BAE4 1156,BAE4 +1156,BB51 1156,BB51 +1156,BBBD 1156,BBBD +1156,BC2A 1156,BC2A +1156,BC97 1156,BC97 +1156,BD04 1156,BD04 +1156,BD71 1156,BD71 +1156,BDDE 1156,BDDE +1156,BE4B 1156,BE4B +1156,BEB8 1156,BEB8 +1156,BF25 1156,BF25 +1156,BF91 1156,BF91 +1156,BFFE 1156,BFFE +1156,C06B 1156,C06B +1156,C0D8 1156,C0D8 +1156,C145 1156,C145 +1156,C1B2 1156,C1B2 +1156,C21F 1156,C21F +1156,C28C 1156,C28C +1156,C2F9 1156,C2F9 +1156,C365 1156,C365 +1156,C3D2 1156,C3D2 +1156,C43F 1156,C43F +1156,C4AC 1156,C4AC +1156,C519 1156,C519 +1156,C586 1156,C586 +1156,C5F3 1156,C5F3 +1156,C660 1156,C660 +1156,C6CD 1156,C6CD +1156,C739 1156,C739 +1156,C7A6 1156,C7A6 +1156,C813 1156,C813 +1156,C880 1156,C880 +1156,C8ED 1156,C8ED +1156,C95A 1156,C95A +1156,C9C7 1156,C9C7 +1156,CA34 1156,CA34 +1156,CAA1 1156,CAA1 +1156,CB0D 1156,CB0D +1156,CB7A 1156,CB7A +1156,CBE7 1156,CBE7 +1156,CC54 1156,CC54 +1156,CCC1 1156,CCC1 +1156,CD2E 1156,CD2E +1156,CD9B 1156,CD9B +1156,CE08 1156,CE08 +1156,CE75 1156,CE75 +1156,CEE1 1156,CEE1 +1156,CF4E 1156,CF4E +1156,CFBB 1156,CFBB +1156,D028 1156,D028 +1156,D095 1156,D095 +1156,D102 1156,D102 +1156,D16F 1156,D16F +1156,D1DC 1156,D1DC +1156,D249 1156,D249 +1156,D2B5 1156,D2B5 +1156,D322 1156,D322 +1156,D38F 1156,D38F +1156,D3FC 1156,D3FC +1156,D469 1156,D469 +1156,D4D6 1156,D4D6 +1156,D543 1156,D543 +1156,D5B0 1156,D5B0 +1156,D61D 1156,D61D +1156,D689 1156,D689 +1156,D6F6 1156,D6F6 +1156,D763 1156,D763 +1157,AC01 1157,AC01 +1157,AC6D 1157,AC6D +1157,ACDA 1157,ACDA +1157,AD47 1157,AD47 +1157,ADB4 1157,ADB4 +1157,AE21 1157,AE21 +1157,AE8E 1157,AE8E +1157,AEFB 1157,AEFB +1157,AF68 1157,AF68 +1157,AFD5 1157,AFD5 +1157,B041 1157,B041 +1157,B0AE 1157,B0AE +1157,B11B 1157,B11B +1157,B188 1157,B188 +1157,B1F5 1157,B1F5 +1157,B262 1157,B262 +1157,B2CF 1157,B2CF +1157,B33C 1157,B33C +1157,B3A9 1157,B3A9 +1157,B415 1157,B415 +1157,B482 1157,B482 +1157,B4EF 1157,B4EF +1157,B55C 1157,B55C +1157,B5C9 1157,B5C9 +1157,B636 1157,B636 +1157,B6A3 1157,B6A3 +1157,B710 1157,B710 +1157,B77D 1157,B77D +1157,B7E9 1157,B7E9 +1157,B856 1157,B856 +1157,B8C3 1157,B8C3 +1157,B930 1157,B930 +1157,B99D 1157,B99D +1157,BA0A 1157,BA0A +1157,BA77 1157,BA77 +1157,BAE4 1157,BAE4 +1157,BB51 1157,BB51 +1157,BBBD 1157,BBBD +1157,BC2A 1157,BC2A +1157,BC97 1157,BC97 +1157,BD04 1157,BD04 +1157,BD71 1157,BD71 +1157,BDDE 1157,BDDE +1157,BE4B 1157,BE4B +1157,BEB8 1157,BEB8 +1157,BF25 1157,BF25 +1157,BF91 1157,BF91 +1157,BFFE 1157,BFFE +1157,C06B 1157,C06B +1157,C0D8 1157,C0D8 +1157,C145 1157,C145 +1157,C1B2 1157,C1B2 +1157,C21F 1157,C21F +1157,C28C 1157,C28C +1157,C2F9 1157,C2F9 +1157,C365 1157,C365 +1157,C3D2 1157,C3D2 +1157,C43F 1157,C43F +1157,C4AC 1157,C4AC +1157,C519 1157,C519 +1157,C586 1157,C586 +1157,C5F3 1157,C5F3 +1157,C660 1157,C660 +1157,C6CD 1157,C6CD +1157,C739 1157,C739 +1157,C7A6 1157,C7A6 +1157,C813 1157,C813 +1157,C880 1157,C880 +1157,C8ED 1157,C8ED +1157,C95A 1157,C95A +1157,C9C7 1157,C9C7 +1157,CA34 1157,CA34 +1157,CAA1 1157,CAA1 +1157,CB0D 1157,CB0D +1157,CB7A 1157,CB7A +1157,CBE7 1157,CBE7 +1157,CC54 1157,CC54 +1157,CCC1 1157,CCC1 +1157,CD2E 1157,CD2E +1157,CD9B 1157,CD9B +1157,CE08 1157,CE08 +1157,CE75 1157,CE75 +1157,CEE1 1157,CEE1 +1157,CF4E 1157,CF4E +1157,CFBB 1157,CFBB +1157,D028 1157,D028 +1157,D095 1157,D095 +1157,D102 1157,D102 +1157,D16F 1157,D16F +1157,D1DC 1157,D1DC +1157,D249 1157,D249 +1157,D2B5 1157,D2B5 +1157,D322 1157,D322 +1157,D38F 1157,D38F +1157,D3FC 1157,D3FC +1157,D469 1157,D469 +1157,D4D6 1157,D4D6 +1157,D543 1157,D543 +1157,D5B0 1157,D5B0 +1157,D61D 1157,D61D +1157,D689 1157,D689 +1157,D6F6 1157,D6F6 +1157,D763 1157,D763 +1158,AC01 1158,AC01 +1158,AC6D 1158,AC6D +1158,ACDA 1158,ACDA +1158,AD47 1158,AD47 +1158,ADB4 1158,ADB4 +1158,AE21 1158,AE21 +1158,AE8E 1158,AE8E +1158,AEFB 1158,AEFB +1158,AF68 1158,AF68 +1158,AFD5 1158,AFD5 +1158,B041 1158,B041 +1158,B0AE 1158,B0AE +1158,B11B 1158,B11B +1158,B188 1158,B188 +1158,B1F5 1158,B1F5 +1158,B262 1158,B262 +1158,B2CF 1158,B2CF +1158,B33C 1158,B33C +1158,B3A9 1158,B3A9 +1158,B415 1158,B415 +1158,B482 1158,B482 +1158,B4EF 1158,B4EF +1158,B55C 1158,B55C +1158,B5C9 1158,B5C9 +1158,B636 1158,B636 +1158,B6A3 1158,B6A3 +1158,B710 1158,B710 +1158,B77D 1158,B77D +1158,B7E9 1158,B7E9 +1158,B856 1158,B856 +1158,B8C3 1158,B8C3 +1158,B930 1158,B930 +1158,B99D 1158,B99D +1158,BA0A 1158,BA0A +1158,BA77 1158,BA77 +1158,BAE4 1158,BAE4 +1158,BB51 1158,BB51 +1158,BBBD 1158,BBBD +1158,BC2A 1158,BC2A +1158,BC97 1158,BC97 +1158,BD04 1158,BD04 +1158,BD71 1158,BD71 +1158,BDDE 1158,BDDE +1158,BE4B 1158,BE4B +1158,BEB8 1158,BEB8 +1158,BF25 1158,BF25 +1158,BF91 1158,BF91 +1158,BFFE 1158,BFFE +1158,C06B 1158,C06B +1158,C0D8 1158,C0D8 +1158,C145 1158,C145 +1158,C1B2 1158,C1B2 +1158,C21F 1158,C21F +1158,C28C 1158,C28C +1158,C2F9 1158,C2F9 +1158,C365 1158,C365 +1158,C3D2 1158,C3D2 +1158,C43F 1158,C43F +1158,C4AC 1158,C4AC +1158,C519 1158,C519 +1158,C586 1158,C586 +1158,C5F3 1158,C5F3 +1158,C660 1158,C660 +1158,C6CD 1158,C6CD +1158,C739 1158,C739 +1158,C7A6 1158,C7A6 +1158,C813 1158,C813 +1158,C880 1158,C880 +1158,C8ED 1158,C8ED +1158,C95A 1158,C95A +1158,C9C7 1158,C9C7 +1158,CA34 1158,CA34 +1158,CAA1 1158,CAA1 +1158,CB0D 1158,CB0D +1158,CB7A 1158,CB7A +1158,CBE7 1158,CBE7 +1158,CC54 1158,CC54 +1158,CCC1 1158,CCC1 +1158,CD2E 1158,CD2E +1158,CD9B 1158,CD9B +1158,CE08 1158,CE08 +1158,CE75 1158,CE75 +1158,CEE1 1158,CEE1 +1158,CF4E 1158,CF4E +1158,CFBB 1158,CFBB +1158,D028 1158,D028 +1158,D095 1158,D095 +1158,D102 1158,D102 +1158,D16F 1158,D16F +1158,D1DC 1158,D1DC +1158,D249 1158,D249 +1158,D2B5 1158,D2B5 +1158,D322 1158,D322 +1158,D38F 1158,D38F +1158,D3FC 1158,D3FC +1158,D469 1158,D469 +1158,D4D6 1158,D4D6 +1158,D543 1158,D543 +1158,D5B0 1158,D5B0 +1158,D61D 1158,D61D +1158,D689 1158,D689 +1158,D6F6 1158,D6F6 +1158,D763 1158,D763 +1159,AC01 1159,AC01 +1159,AC6D 1159,AC6D +1159,ACDA 1159,ACDA +1159,AD47 1159,AD47 +1159,ADB4 1159,ADB4 +1159,AE21 1159,AE21 +1159,AE8E 1159,AE8E +1159,AEFB 1159,AEFB +1159,AF68 1159,AF68 +1159,AFD5 1159,AFD5 +1159,B041 1159,B041 +1159,B0AE 1159,B0AE +1159,B11B 1159,B11B +1159,B188 1159,B188 +1159,B1F5 1159,B1F5 +1159,B262 1159,B262 +1159,B2CF 1159,B2CF +1159,B33C 1159,B33C +1159,B3A9 1159,B3A9 +1159,B415 1159,B415 +1159,B482 1159,B482 +1159,B4EF 1159,B4EF +1159,B55C 1159,B55C +1159,B5C9 1159,B5C9 +1159,B636 1159,B636 +1159,B6A3 1159,B6A3 +1159,B710 1159,B710 +1159,B77D 1159,B77D +1159,B7E9 1159,B7E9 +1159,B856 1159,B856 +1159,B8C3 1159,B8C3 +1159,B930 1159,B930 +1159,B99D 1159,B99D +1159,BA0A 1159,BA0A +1159,BA77 1159,BA77 +1159,BAE4 1159,BAE4 +1159,BB51 1159,BB51 +1159,BBBD 1159,BBBD +1159,BC2A 1159,BC2A +1159,BC97 1159,BC97 +1159,BD04 1159,BD04 +1159,BD71 1159,BD71 +1159,BDDE 1159,BDDE +1159,BE4B 1159,BE4B +1159,BEB8 1159,BEB8 +1159,BF25 1159,BF25 +1159,BF91 1159,BF91 +1159,BFFE 1159,BFFE +1159,C06B 1159,C06B +1159,C0D8 1159,C0D8 +1159,C145 1159,C145 +1159,C1B2 1159,C1B2 +1159,C21F 1159,C21F +1159,C28C 1159,C28C +1159,C2F9 1159,C2F9 +1159,C365 1159,C365 +1159,C3D2 1159,C3D2 +1159,C43F 1159,C43F +1159,C4AC 1159,C4AC +1159,C519 1159,C519 +1159,C586 1159,C586 +1159,C5F3 1159,C5F3 +1159,C660 1159,C660 +1159,C6CD 1159,C6CD +1159,C739 1159,C739 +1159,C7A6 1159,C7A6 +1159,C813 1159,C813 +1159,C880 1159,C880 +1159,C8ED 1159,C8ED +1159,C95A 1159,C95A +1159,C9C7 1159,C9C7 +1159,CA34 1159,CA34 +1159,CAA1 1159,CAA1 +1159,CB0D 1159,CB0D +1159,CB7A 1159,CB7A +1159,CBE7 1159,CBE7 +1159,CC54 1159,CC54 +1159,CCC1 1159,CCC1 +1159,CD2E 1159,CD2E +1159,CD9B 1159,CD9B +1159,CE08 1159,CE08 +1159,CE75 1159,CE75 +1159,CEE1 1159,CEE1 +1159,CF4E 1159,CF4E +1159,CFBB 1159,CFBB +1159,D028 1159,D028 +1159,D095 1159,D095 +1159,D102 1159,D102 +1159,D16F 1159,D16F +1159,D1DC 1159,D1DC +1159,D249 1159,D249 +1159,D2B5 1159,D2B5 +1159,D322 1159,D322 +1159,D38F 1159,D38F +1159,D3FC 1159,D3FC +1159,D469 1159,D469 +1159,D4D6 1159,D4D6 +1159,D543 1159,D543 +1159,D5B0 1159,D5B0 +1159,D61D 1159,D61D +1159,D689 1159,D689 +1159,D6F6 1159,D6F6 +1159,D763 1159,D763 +115A,AC01 115A,AC01 +115A,AC6D 115A,AC6D +115A,ACDA 115A,ACDA +115A,AD47 115A,AD47 +115A,ADB4 115A,ADB4 +115A,AE21 115A,AE21 +115A,AE8E 115A,AE8E +115A,AEFB 115A,AEFB +115A,AF68 115A,AF68 +115A,AFD5 115A,AFD5 +115A,B041 115A,B041 +115A,B0AE 115A,B0AE +115A,B11B 115A,B11B +115A,B188 115A,B188 +115A,B1F5 115A,B1F5 +115A,B262 115A,B262 +115A,B2CF 115A,B2CF +115A,B33C 115A,B33C +115A,B3A9 115A,B3A9 +115A,B415 115A,B415 +115A,B482 115A,B482 +115A,B4EF 115A,B4EF +115A,B55C 115A,B55C +115A,B5C9 115A,B5C9 +115A,B636 115A,B636 +115A,B6A3 115A,B6A3 +115A,B710 115A,B710 +115A,B77D 115A,B77D +115A,B7E9 115A,B7E9 +115A,B856 115A,B856 +115A,B8C3 115A,B8C3 +115A,B930 115A,B930 +115A,B99D 115A,B99D +115A,BA0A 115A,BA0A +115A,BA77 115A,BA77 +115A,BAE4 115A,BAE4 +115A,BB51 115A,BB51 +115A,BBBD 115A,BBBD +115A,BC2A 115A,BC2A +115A,BC97 115A,BC97 +115A,BD04 115A,BD04 +115A,BD71 115A,BD71 +115A,BDDE 115A,BDDE +115A,BE4B 115A,BE4B +115A,BEB8 115A,BEB8 +115A,BF25 115A,BF25 +115A,BF91 115A,BF91 +115A,BFFE 115A,BFFE +115A,C06B 115A,C06B +115A,C0D8 115A,C0D8 +115A,C145 115A,C145 +115A,C1B2 115A,C1B2 +115A,C21F 115A,C21F +115A,C28C 115A,C28C +115A,C2F9 115A,C2F9 +115A,C365 115A,C365 +115A,C3D2 115A,C3D2 +115A,C43F 115A,C43F +115A,C4AC 115A,C4AC +115A,C519 115A,C519 +115A,C586 115A,C586 +115A,C5F3 115A,C5F3 +115A,C660 115A,C660 +115A,C6CD 115A,C6CD +115A,C739 115A,C739 +115A,C7A6 115A,C7A6 +115A,C813 115A,C813 +115A,C880 115A,C880 +115A,C8ED 115A,C8ED +115A,C95A 115A,C95A +115A,C9C7 115A,C9C7 +115A,CA34 115A,CA34 +115A,CAA1 115A,CAA1 +115A,CB0D 115A,CB0D +115A,CB7A 115A,CB7A +115A,CBE7 115A,CBE7 +115A,CC54 115A,CC54 +115A,CCC1 115A,CCC1 +115A,CD2E 115A,CD2E +115A,CD9B 115A,CD9B +115A,CE08 115A,CE08 +115A,CE75 115A,CE75 +115A,CEE1 115A,CEE1 +115A,CF4E 115A,CF4E +115A,CFBB 115A,CFBB +115A,D028 115A,D028 +115A,D095 115A,D095 +115A,D102 115A,D102 +115A,D16F 115A,D16F +115A,D1DC 115A,D1DC +115A,D249 115A,D249 +115A,D2B5 115A,D2B5 +115A,D322 115A,D322 +115A,D38F 115A,D38F +115A,D3FC 115A,D3FC +115A,D469 115A,D469 +115A,D4D6 115A,D4D6 +115A,D543 115A,D543 +115A,D5B0 115A,D5B0 +115A,D61D 115A,D61D +115A,D689 115A,D689 +115A,D6F6 115A,D6F6 +115A,D763 115A,D763 +115B,AC01 115B,AC01 +115B,AC6D 115B,AC6D +115B,ACDA 115B,ACDA +115B,AD47 115B,AD47 +115B,ADB4 115B,ADB4 +115B,AE21 115B,AE21 +115B,AE8E 115B,AE8E +115B,AEFB 115B,AEFB +115B,AF68 115B,AF68 +115B,AFD5 115B,AFD5 +115B,B041 115B,B041 +115B,B0AE 115B,B0AE +115B,B11B 115B,B11B +115B,B188 115B,B188 +115B,B1F5 115B,B1F5 +115B,B262 115B,B262 +115B,B2CF 115B,B2CF +115B,B33C 115B,B33C +115B,B3A9 115B,B3A9 +115B,B415 115B,B415 +115B,B482 115B,B482 +115B,B4EF 115B,B4EF +115B,B55C 115B,B55C +115B,B5C9 115B,B5C9 +115B,B636 115B,B636 +115B,B6A3 115B,B6A3 +115B,B710 115B,B710 +115B,B77D 115B,B77D +115B,B7E9 115B,B7E9 +115B,B856 115B,B856 +115B,B8C3 115B,B8C3 +115B,B930 115B,B930 +115B,B99D 115B,B99D +115B,BA0A 115B,BA0A +115B,BA77 115B,BA77 +115B,BAE4 115B,BAE4 +115B,BB51 115B,BB51 +115B,BBBD 115B,BBBD +115B,BC2A 115B,BC2A +115B,BC97 115B,BC97 +115B,BD04 115B,BD04 +115B,BD71 115B,BD71 +115B,BDDE 115B,BDDE +115B,BE4B 115B,BE4B +115B,BEB8 115B,BEB8 +115B,BF25 115B,BF25 +115B,BF91 115B,BF91 +115B,BFFE 115B,BFFE +115B,C06B 115B,C06B +115B,C0D8 115B,C0D8 +115B,C145 115B,C145 +115B,C1B2 115B,C1B2 +115B,C21F 115B,C21F +115B,C28C 115B,C28C +115B,C2F9 115B,C2F9 +115B,C365 115B,C365 +115B,C3D2 115B,C3D2 +115B,C43F 115B,C43F +115B,C4AC 115B,C4AC +115B,C519 115B,C519 +115B,C586 115B,C586 +115B,C5F3 115B,C5F3 +115B,C660 115B,C660 +115B,C6CD 115B,C6CD +115B,C739 115B,C739 +115B,C7A6 115B,C7A6 +115B,C813 115B,C813 +115B,C880 115B,C880 +115B,C8ED 115B,C8ED +115B,C95A 115B,C95A +115B,C9C7 115B,C9C7 +115B,CA34 115B,CA34 +115B,CAA1 115B,CAA1 +115B,CB0D 115B,CB0D +115B,CB7A 115B,CB7A +115B,CBE7 115B,CBE7 +115B,CC54 115B,CC54 +115B,CCC1 115B,CCC1 +115B,CD2E 115B,CD2E +115B,CD9B 115B,CD9B +115B,CE08 115B,CE08 +115B,CE75 115B,CE75 +115B,CEE1 115B,CEE1 +115B,CF4E 115B,CF4E +115B,CFBB 115B,CFBB +115B,D028 115B,D028 +115B,D095 115B,D095 +115B,D102 115B,D102 +115B,D16F 115B,D16F +115B,D1DC 115B,D1DC +115B,D249 115B,D249 +115B,D2B5 115B,D2B5 +115B,D322 115B,D322 +115B,D38F 115B,D38F +115B,D3FC 115B,D3FC +115B,D469 115B,D469 +115B,D4D6 115B,D4D6 +115B,D543 115B,D543 +115B,D5B0 115B,D5B0 +115B,D61D 115B,D61D +115B,D689 115B,D689 +115B,D6F6 115B,D6F6 +115B,D763 115B,D763 +115C,AC01 115C,AC01 +115C,AC6D 115C,AC6D +115C,ACDA 115C,ACDA +115C,AD47 115C,AD47 +115C,ADB4 115C,ADB4 +115C,AE21 115C,AE21 +115C,AE8E 115C,AE8E +115C,AEFB 115C,AEFB +115C,AF68 115C,AF68 +115C,AFD5 115C,AFD5 +115C,B041 115C,B041 +115C,B0AE 115C,B0AE +115C,B11B 115C,B11B +115C,B188 115C,B188 +115C,B1F5 115C,B1F5 +115C,B262 115C,B262 +115C,B2CF 115C,B2CF +115C,B33C 115C,B33C +115C,B3A9 115C,B3A9 +115C,B415 115C,B415 +115C,B482 115C,B482 +115C,B4EF 115C,B4EF +115C,B55C 115C,B55C +115C,B5C9 115C,B5C9 +115C,B636 115C,B636 +115C,B6A3 115C,B6A3 +115C,B710 115C,B710 +115C,B77D 115C,B77D +115C,B7E9 115C,B7E9 +115C,B856 115C,B856 +115C,B8C3 115C,B8C3 +115C,B930 115C,B930 +115C,B99D 115C,B99D +115C,BA0A 115C,BA0A +115C,BA77 115C,BA77 +115C,BAE4 115C,BAE4 +115C,BB51 115C,BB51 +115C,BBBD 115C,BBBD +115C,BC2A 115C,BC2A +115C,BC97 115C,BC97 +115C,BD04 115C,BD04 +115C,BD71 115C,BD71 +115C,BDDE 115C,BDDE +115C,BE4B 115C,BE4B +115C,BEB8 115C,BEB8 +115C,BF25 115C,BF25 +115C,BF91 115C,BF91 +115C,BFFE 115C,BFFE +115C,C06B 115C,C06B +115C,C0D8 115C,C0D8 +115C,C145 115C,C145 +115C,C1B2 115C,C1B2 +115C,C21F 115C,C21F +115C,C28C 115C,C28C +115C,C2F9 115C,C2F9 +115C,C365 115C,C365 +115C,C3D2 115C,C3D2 +115C,C43F 115C,C43F +115C,C4AC 115C,C4AC +115C,C519 115C,C519 +115C,C586 115C,C586 +115C,C5F3 115C,C5F3 +115C,C660 115C,C660 +115C,C6CD 115C,C6CD +115C,C739 115C,C739 +115C,C7A6 115C,C7A6 +115C,C813 115C,C813 +115C,C880 115C,C880 +115C,C8ED 115C,C8ED +115C,C95A 115C,C95A +115C,C9C7 115C,C9C7 +115C,CA34 115C,CA34 +115C,CAA1 115C,CAA1 +115C,CB0D 115C,CB0D +115C,CB7A 115C,CB7A +115C,CBE7 115C,CBE7 +115C,CC54 115C,CC54 +115C,CCC1 115C,CCC1 +115C,CD2E 115C,CD2E +115C,CD9B 115C,CD9B +115C,CE08 115C,CE08 +115C,CE75 115C,CE75 +115C,CEE1 115C,CEE1 +115C,CF4E 115C,CF4E +115C,CFBB 115C,CFBB +115C,D028 115C,D028 +115C,D095 115C,D095 +115C,D102 115C,D102 +115C,D16F 115C,D16F +115C,D1DC 115C,D1DC +115C,D249 115C,D249 +115C,D2B5 115C,D2B5 +115C,D322 115C,D322 +115C,D38F 115C,D38F +115C,D3FC 115C,D3FC +115C,D469 115C,D469 +115C,D4D6 115C,D4D6 +115C,D543 115C,D543 +115C,D5B0 115C,D5B0 +115C,D61D 115C,D61D +115C,D689 115C,D689 +115C,D6F6 115C,D6F6 +115C,D763 115C,D763 +115D,AC01 115D,AC01 +115D,AC6D 115D,AC6D +115D,ACDA 115D,ACDA +115D,AD47 115D,AD47 +115D,ADB4 115D,ADB4 +115D,AE21 115D,AE21 +115D,AE8E 115D,AE8E +115D,AEFB 115D,AEFB +115D,AF68 115D,AF68 +115D,AFD5 115D,AFD5 +115D,B041 115D,B041 +115D,B0AE 115D,B0AE +115D,B11B 115D,B11B +115D,B188 115D,B188 +115D,B1F5 115D,B1F5 +115D,B262 115D,B262 +115D,B2CF 115D,B2CF +115D,B33C 115D,B33C +115D,B3A9 115D,B3A9 +115D,B415 115D,B415 +115D,B482 115D,B482 +115D,B4EF 115D,B4EF +115D,B55C 115D,B55C +115D,B5C9 115D,B5C9 +115D,B636 115D,B636 +115D,B6A3 115D,B6A3 +115D,B710 115D,B710 +115D,B77D 115D,B77D +115D,B7E9 115D,B7E9 +115D,B856 115D,B856 +115D,B8C3 115D,B8C3 +115D,B930 115D,B930 +115D,B99D 115D,B99D +115D,BA0A 115D,BA0A +115D,BA77 115D,BA77 +115D,BAE4 115D,BAE4 +115D,BB51 115D,BB51 +115D,BBBD 115D,BBBD +115D,BC2A 115D,BC2A +115D,BC97 115D,BC97 +115D,BD04 115D,BD04 +115D,BD71 115D,BD71 +115D,BDDE 115D,BDDE +115D,BE4B 115D,BE4B +115D,BEB8 115D,BEB8 +115D,BF25 115D,BF25 +115D,BF91 115D,BF91 +115D,BFFE 115D,BFFE +115D,C06B 115D,C06B +115D,C0D8 115D,C0D8 +115D,C145 115D,C145 +115D,C1B2 115D,C1B2 +115D,C21F 115D,C21F +115D,C28C 115D,C28C +115D,C2F9 115D,C2F9 +115D,C365 115D,C365 +115D,C3D2 115D,C3D2 +115D,C43F 115D,C43F +115D,C4AC 115D,C4AC +115D,C519 115D,C519 +115D,C586 115D,C586 +115D,C5F3 115D,C5F3 +115D,C660 115D,C660 +115D,C6CD 115D,C6CD +115D,C739 115D,C739 +115D,C7A6 115D,C7A6 +115D,C813 115D,C813 +115D,C880 115D,C880 +115D,C8ED 115D,C8ED +115D,C95A 115D,C95A +115D,C9C7 115D,C9C7 +115D,CA34 115D,CA34 +115D,CAA1 115D,CAA1 +115D,CB0D 115D,CB0D +115D,CB7A 115D,CB7A +115D,CBE7 115D,CBE7 +115D,CC54 115D,CC54 +115D,CCC1 115D,CCC1 +115D,CD2E 115D,CD2E +115D,CD9B 115D,CD9B +115D,CE08 115D,CE08 +115D,CE75 115D,CE75 +115D,CEE1 115D,CEE1 +115D,CF4E 115D,CF4E +115D,CFBB 115D,CFBB +115D,D028 115D,D028 +115D,D095 115D,D095 +115D,D102 115D,D102 +115D,D16F 115D,D16F +115D,D1DC 115D,D1DC +115D,D249 115D,D249 +115D,D2B5 115D,D2B5 +115D,D322 115D,D322 +115D,D38F 115D,D38F +115D,D3FC 115D,D3FC +115D,D469 115D,D469 +115D,D4D6 115D,D4D6 +115D,D543 115D,D543 +115D,D5B0 115D,D5B0 +115D,D61D 115D,D61D +115D,D689 115D,D689 +115D,D6F6 115D,D6F6 +115D,D763 115D,D763 +115E,AC01 115E,AC01 +115E,AC6D 115E,AC6D +115E,ACDA 115E,ACDA +115E,AD47 115E,AD47 +115E,ADB4 115E,ADB4 +115E,AE21 115E,AE21 +115E,AE8E 115E,AE8E +115E,AEFB 115E,AEFB +115E,AF68 115E,AF68 +115E,AFD5 115E,AFD5 +115E,B041 115E,B041 +115E,B0AE 115E,B0AE +115E,B11B 115E,B11B +115E,B188 115E,B188 +115E,B1F5 115E,B1F5 +115E,B262 115E,B262 +115E,B2CF 115E,B2CF +115E,B33C 115E,B33C +115E,B3A9 115E,B3A9 +115E,B415 115E,B415 +115E,B482 115E,B482 +115E,B4EF 115E,B4EF +115E,B55C 115E,B55C +115E,B5C9 115E,B5C9 +115E,B636 115E,B636 +115E,B6A3 115E,B6A3 +115E,B710 115E,B710 +115E,B77D 115E,B77D +115E,B7E9 115E,B7E9 +115E,B856 115E,B856 +115E,B8C3 115E,B8C3 +115E,B930 115E,B930 +115E,B99D 115E,B99D +115E,BA0A 115E,BA0A +115E,BA77 115E,BA77 +115E,BAE4 115E,BAE4 +115E,BB51 115E,BB51 +115E,BBBD 115E,BBBD +115E,BC2A 115E,BC2A +115E,BC97 115E,BC97 +115E,BD04 115E,BD04 +115E,BD71 115E,BD71 +115E,BDDE 115E,BDDE +115E,BE4B 115E,BE4B +115E,BEB8 115E,BEB8 +115E,BF25 115E,BF25 +115E,BF91 115E,BF91 +115E,BFFE 115E,BFFE +115E,C06B 115E,C06B +115E,C0D8 115E,C0D8 +115E,C145 115E,C145 +115E,C1B2 115E,C1B2 +115E,C21F 115E,C21F +115E,C28C 115E,C28C +115E,C2F9 115E,C2F9 +115E,C365 115E,C365 +115E,C3D2 115E,C3D2 +115E,C43F 115E,C43F +115E,C4AC 115E,C4AC +115E,C519 115E,C519 +115E,C586 115E,C586 +115E,C5F3 115E,C5F3 +115E,C660 115E,C660 +115E,C6CD 115E,C6CD +115E,C739 115E,C739 +115E,C7A6 115E,C7A6 +115E,C813 115E,C813 +115E,C880 115E,C880 +115E,C8ED 115E,C8ED +115E,C95A 115E,C95A +115E,C9C7 115E,C9C7 +115E,CA34 115E,CA34 +115E,CAA1 115E,CAA1 +115E,CB0D 115E,CB0D +115E,CB7A 115E,CB7A +115E,CBE7 115E,CBE7 +115E,CC54 115E,CC54 +115E,CCC1 115E,CCC1 +115E,CD2E 115E,CD2E +115E,CD9B 115E,CD9B +115E,CE08 115E,CE08 +115E,CE75 115E,CE75 +115E,CEE1 115E,CEE1 +115E,CF4E 115E,CF4E +115E,CFBB 115E,CFBB +115E,D028 115E,D028 +115E,D095 115E,D095 +115E,D102 115E,D102 +115E,D16F 115E,D16F +115E,D1DC 115E,D1DC +115E,D249 115E,D249 +115E,D2B5 115E,D2B5 +115E,D322 115E,D322 +115E,D38F 115E,D38F +115E,D3FC 115E,D3FC +115E,D469 115E,D469 +115E,D4D6 115E,D4D6 +115E,D543 115E,D543 +115E,D5B0 115E,D5B0 +115E,D61D 115E,D61D +115E,D689 115E,D689 +115E,D6F6 115E,D6F6 +115E,D763 115E,D763 +115F,AC01 115F,AC01 +115F,AC6D 115F,AC6D +115F,ACDA 115F,ACDA +115F,AD47 115F,AD47 +115F,ADB4 115F,ADB4 +115F,AE21 115F,AE21 +115F,AE8E 115F,AE8E +115F,AEFB 115F,AEFB +115F,AF68 115F,AF68 +115F,AFD5 115F,AFD5 +115F,B041 115F,B041 +115F,B0AE 115F,B0AE +115F,B11B 115F,B11B +115F,B188 115F,B188 +115F,B1F5 115F,B1F5 +115F,B262 115F,B262 +115F,B2CF 115F,B2CF +115F,B33C 115F,B33C +115F,B3A9 115F,B3A9 +115F,B415 115F,B415 +115F,B482 115F,B482 +115F,B4EF 115F,B4EF +115F,B55C 115F,B55C +115F,B5C9 115F,B5C9 +115F,B636 115F,B636 +115F,B6A3 115F,B6A3 +115F,B710 115F,B710 +115F,B77D 115F,B77D +115F,B7E9 115F,B7E9 +115F,B856 115F,B856 +115F,B8C3 115F,B8C3 +115F,B930 115F,B930 +115F,B99D 115F,B99D +115F,BA0A 115F,BA0A +115F,BA77 115F,BA77 +115F,BAE4 115F,BAE4 +115F,BB51 115F,BB51 +115F,BBBD 115F,BBBD +115F,BC2A 115F,BC2A +115F,BC97 115F,BC97 +115F,BD04 115F,BD04 +115F,BD71 115F,BD71 +115F,BDDE 115F,BDDE +115F,BE4B 115F,BE4B +115F,BEB8 115F,BEB8 +115F,BF25 115F,BF25 +115F,BF91 115F,BF91 +115F,BFFE 115F,BFFE +115F,C06B 115F,C06B +115F,C0D8 115F,C0D8 +115F,C145 115F,C145 +115F,C1B2 115F,C1B2 +115F,C21F 115F,C21F +115F,C28C 115F,C28C +115F,C2F9 115F,C2F9 +115F,C365 115F,C365 +115F,C3D2 115F,C3D2 +115F,C43F 115F,C43F +115F,C4AC 115F,C4AC +115F,C519 115F,C519 +115F,C586 115F,C586 +115F,C5F3 115F,C5F3 +115F,C660 115F,C660 +115F,C6CD 115F,C6CD +115F,C739 115F,C739 +115F,C7A6 115F,C7A6 +115F,C813 115F,C813 +115F,C880 115F,C880 +115F,C8ED 115F,C8ED +115F,C95A 115F,C95A +115F,C9C7 115F,C9C7 +115F,CA34 115F,CA34 +115F,CAA1 115F,CAA1 +115F,CB0D 115F,CB0D +115F,CB7A 115F,CB7A +115F,CBE7 115F,CBE7 +115F,CC54 115F,CC54 +115F,CCC1 115F,CCC1 +115F,CD2E 115F,CD2E +115F,CD9B 115F,CD9B +115F,CE08 115F,CE08 +115F,CE75 115F,CE75 +115F,CEE1 115F,CEE1 +115F,CF4E 115F,CF4E +115F,CFBB 115F,CFBB +115F,D028 115F,D028 +115F,D095 115F,D095 +115F,D102 115F,D102 +115F,D16F 115F,D16F +115F,D1DC 115F,D1DC +115F,D249 115F,D249 +115F,D2B5 115F,D2B5 +115F,D322 115F,D322 +115F,D38F 115F,D38F +115F,D3FC 115F,D3FC +115F,D469 115F,D469 +115F,D4D6 115F,D4D6 +115F,D543 115F,D543 +115F,D5B0 115F,D5B0 +115F,D61D 115F,D61D +115F,D689 115F,D689 +115F,D6F6 115F,D6F6 +115F,D763 115F,D763 +600,AC00 600,AC00 +600,AE4C 600,AE4C +600,D55C 600,D55C +6DD,AC00 6DD,AC00 +6DD,AE4C 6DD,AE4C +6DD,D55C 6DD,D55C +890,AC00 890,AC00 +890,AE4C 890,AE4C +890,D55C 890,D55C +D4E,AC00 D4E,AC00 +D4E,AE4C D4E,AE4C +D4E,D55C D4E,D55C +11A3A,AC00 11A3A,AC00 +11A3A,AE4C 11A3A,AE4C +11A3A,D55C 11A3A,D55C +11D46,AC00 11D46,AC00 +11D46,AE4C 11D46,AE4C +11D46,D55C 11D46,D55C +11F02,AC00 11F02,AC00 +11F02,AE4C 11F02,AE4C +11F02,D55C 11F02,D55C +# --- group 2C: jamo + bare jamo (reverse direction of 2B) (126 rows) --- +600,1100,1161 600,AC00 +600,1100,1162 600,AC1C +600,1100,1163 600,AC38 +600,1101,1161 600,AE4C +600,1101,1162 600,AE68 +600,1101,1163 600,AE84 +600,1102,1161 600,B098 +600,1102,1162 600,B0B4 +600,1102,1163 600,B0D0 +600,1103,1161 600,B2E4 +600,1103,1162 600,B300 +600,1103,1163 600,B31C +600,1104,1161 600,B530 +600,1104,1162 600,B54C +600,1104,1163 600,B568 +600,1105,1161 600,B77C +600,1105,1162 600,B798 +600,1105,1163 600,B7B4 +6DD,1100,1161 6DD,AC00 +6DD,1100,1162 6DD,AC1C +6DD,1100,1163 6DD,AC38 +6DD,1101,1161 6DD,AE4C +6DD,1101,1162 6DD,AE68 +6DD,1101,1163 6DD,AE84 +6DD,1102,1161 6DD,B098 +6DD,1102,1162 6DD,B0B4 +6DD,1102,1163 6DD,B0D0 +6DD,1103,1161 6DD,B2E4 +6DD,1103,1162 6DD,B300 +6DD,1103,1163 6DD,B31C +6DD,1104,1161 6DD,B530 +6DD,1104,1162 6DD,B54C +6DD,1104,1163 6DD,B568 +6DD,1105,1161 6DD,B77C +6DD,1105,1162 6DD,B798 +6DD,1105,1163 6DD,B7B4 +890,1100,1161 890,AC00 +890,1100,1162 890,AC1C +890,1100,1163 890,AC38 +890,1101,1161 890,AE4C +890,1101,1162 890,AE68 +890,1101,1163 890,AE84 +890,1102,1161 890,B098 +890,1102,1162 890,B0B4 +890,1102,1163 890,B0D0 +890,1103,1161 890,B2E4 +890,1103,1162 890,B300 +890,1103,1163 890,B31C +890,1104,1161 890,B530 +890,1104,1162 890,B54C +890,1104,1163 890,B568 +890,1105,1161 890,B77C +890,1105,1162 890,B798 +890,1105,1163 890,B7B4 +D4E,1100,1161 D4E,AC00 +D4E,1100,1162 D4E,AC1C +D4E,1100,1163 D4E,AC38 +D4E,1101,1161 D4E,AE4C +D4E,1101,1162 D4E,AE68 +D4E,1101,1163 D4E,AE84 +D4E,1102,1161 D4E,B098 +D4E,1102,1162 D4E,B0B4 +D4E,1102,1163 D4E,B0D0 +D4E,1103,1161 D4E,B2E4 +D4E,1103,1162 D4E,B300 +D4E,1103,1163 D4E,B31C +D4E,1104,1161 D4E,B530 +D4E,1104,1162 D4E,B54C +D4E,1104,1163 D4E,B568 +D4E,1105,1161 D4E,B77C +D4E,1105,1162 D4E,B798 +D4E,1105,1163 D4E,B7B4 +11A3A,1100,1161 11A3A,AC00 +11A3A,1100,1162 11A3A,AC1C +11A3A,1100,1163 11A3A,AC38 +11A3A,1101,1161 11A3A,AE4C +11A3A,1101,1162 11A3A,AE68 +11A3A,1101,1163 11A3A,AE84 +11A3A,1102,1161 11A3A,B098 +11A3A,1102,1162 11A3A,B0B4 +11A3A,1102,1163 11A3A,B0D0 +11A3A,1103,1161 11A3A,B2E4 +11A3A,1103,1162 11A3A,B300 +11A3A,1103,1163 11A3A,B31C +11A3A,1104,1161 11A3A,B530 +11A3A,1104,1162 11A3A,B54C +11A3A,1104,1163 11A3A,B568 +11A3A,1105,1161 11A3A,B77C +11A3A,1105,1162 11A3A,B798 +11A3A,1105,1163 11A3A,B7B4 +11D46,1100,1161 11D46,AC00 +11D46,1100,1162 11D46,AC1C +11D46,1100,1163 11D46,AC38 +11D46,1101,1161 11D46,AE4C +11D46,1101,1162 11D46,AE68 +11D46,1101,1163 11D46,AE84 +11D46,1102,1161 11D46,B098 +11D46,1102,1162 11D46,B0B4 +11D46,1102,1163 11D46,B0D0 +11D46,1103,1161 11D46,B2E4 +11D46,1103,1162 11D46,B300 +11D46,1103,1163 11D46,B31C +11D46,1104,1161 11D46,B530 +11D46,1104,1162 11D46,B54C +11D46,1104,1163 11D46,B568 +11D46,1105,1161 11D46,B77C +11D46,1105,1162 11D46,B798 +11D46,1105,1163 11D46,B7B4 +11F02,1100,1161 11F02,AC00 +11F02,1100,1162 11F02,AC1C +11F02,1100,1163 11F02,AC38 +11F02,1101,1161 11F02,AE4C +11F02,1101,1162 11F02,AE68 +11F02,1101,1163 11F02,AE84 +11F02,1102,1161 11F02,B098 +11F02,1102,1162 11F02,B0B4 +11F02,1102,1163 11F02,B0D0 +11F02,1103,1161 11F02,B2E4 +11F02,1103,1162 11F02,B300 +11F02,1103,1163 11F02,B31C +11F02,1104,1161 11F02,B530 +11F02,1104,1162 11F02,B54C +11F02,1104,1163 11F02,B568 +11F02,1105,1161 11F02,B77C +11F02,1105,1162 11F02,B798 +11F02,1105,1163 11F02,B7B4 +# --- group 2D: OTP deletes U+11A7 (pure Hangul) (997 rows) --- +1100,AC00,11A7 1100,AC00,11A7 +1100,ACE0,11A7 1100,ACE0,11A7 +1100,ADC0,11A7 1100,ADC0,11A7 +1100,AEA0,11A7 1100,AEA0,11A7 +1100,AF80,11A7 1100,AF80,11A7 +1100,B060,11A7 1100,B060,11A7 +1100,B140,11A7 1100,B140,11A7 +1100,B220,11A7 1100,B220,11A7 +1100,B300,11A7 1100,B300,11A7 +1100,B3E0,11A7 1100,B3E0,11A7 +1100,B4C0,11A7 1100,B4C0,11A7 +1100,B5A0,11A7 1100,B5A0,11A7 +1100,B680,11A7 1100,B680,11A7 +1100,B760,11A7 1100,B760,11A7 +1100,B840,11A7 1100,B840,11A7 +1100,B920,11A7 1100,B920,11A7 +1100,BA00,11A7 1100,BA00,11A7 +1100,BAE0,11A7 1100,BAE0,11A7 +1100,BBC0,11A7 1100,BBC0,11A7 +1100,BCA0,11A7 1100,BCA0,11A7 +1100,BD80,11A7 1100,BD80,11A7 +1100,BE60,11A7 1100,BE60,11A7 +1100,BF40,11A7 1100,BF40,11A7 +1100,C020,11A7 1100,C020,11A7 +1100,C100,11A7 1100,C100,11A7 +1100,C1E0,11A7 1100,C1E0,11A7 +1100,C2C0,11A7 1100,C2C0,11A7 +1100,C3A0,11A7 1100,C3A0,11A7 +1100,C480,11A7 1100,C480,11A7 +1100,C560,11A7 1100,C560,11A7 +1100,C640,11A7 1100,C640,11A7 +1100,C720,11A7 1100,C720,11A7 +1100,C800,11A7 1100,C800,11A7 +1100,C8E0,11A7 1100,C8E0,11A7 +1100,C9C0,11A7 1100,C9C0,11A7 +1100,CAA0,11A7 1100,CAA0,11A7 +1100,CB80,11A7 1100,CB80,11A7 +1100,CC60,11A7 1100,CC60,11A7 +1100,CD40,11A7 1100,CD40,11A7 +1100,CE20,11A7 1100,CE20,11A7 +1100,CF00,11A7 1100,CF00,11A7 +1100,CFE0,11A7 1100,CFE0,11A7 +1100,D0C0,11A7 1100,D0C0,11A7 +1100,D1A0,11A7 1100,D1A0,11A7 +1100,D280,11A7 1100,D280,11A7 +1100,D360,11A7 1100,D360,11A7 +1100,D440,11A7 1100,D440,11A7 +1100,D520,11A7 1100,D520,11A7 +1100,D600,11A7 1100,D600,11A7 +1100,D6E0,11A7 1100,D6E0,11A7 +1101,AC00,11A7 1101,AC00,11A7 +1101,ACE0,11A7 1101,ACE0,11A7 +1101,ADC0,11A7 1101,ADC0,11A7 +1101,AEA0,11A7 1101,AEA0,11A7 +1101,AF80,11A7 1101,AF80,11A7 +1101,B060,11A7 1101,B060,11A7 +1101,B140,11A7 1101,B140,11A7 +1101,B220,11A7 1101,B220,11A7 +1101,B300,11A7 1101,B300,11A7 +1101,B3E0,11A7 1101,B3E0,11A7 +1101,B4C0,11A7 1101,B4C0,11A7 +1101,B5A0,11A7 1101,B5A0,11A7 +1101,B680,11A7 1101,B680,11A7 +1101,B760,11A7 1101,B760,11A7 +1101,B840,11A7 1101,B840,11A7 +1101,B920,11A7 1101,B920,11A7 +1101,BA00,11A7 1101,BA00,11A7 +1101,BAE0,11A7 1101,BAE0,11A7 +1101,BBC0,11A7 1101,BBC0,11A7 +1101,BCA0,11A7 1101,BCA0,11A7 +1101,BD80,11A7 1101,BD80,11A7 +1101,BE60,11A7 1101,BE60,11A7 +1101,BF40,11A7 1101,BF40,11A7 +1101,C020,11A7 1101,C020,11A7 +1101,C100,11A7 1101,C100,11A7 +1101,C1E0,11A7 1101,C1E0,11A7 +1101,C2C0,11A7 1101,C2C0,11A7 +1101,C3A0,11A7 1101,C3A0,11A7 +1101,C480,11A7 1101,C480,11A7 +1101,C560,11A7 1101,C560,11A7 +1101,C640,11A7 1101,C640,11A7 +1101,C720,11A7 1101,C720,11A7 +1101,C800,11A7 1101,C800,11A7 +1101,C8E0,11A7 1101,C8E0,11A7 +1101,C9C0,11A7 1101,C9C0,11A7 +1101,CAA0,11A7 1101,CAA0,11A7 +1101,CB80,11A7 1101,CB80,11A7 +1101,CC60,11A7 1101,CC60,11A7 +1101,CD40,11A7 1101,CD40,11A7 +1101,CE20,11A7 1101,CE20,11A7 +1101,CF00,11A7 1101,CF00,11A7 +1101,CFE0,11A7 1101,CFE0,11A7 +1101,D0C0,11A7 1101,D0C0,11A7 +1101,D1A0,11A7 1101,D1A0,11A7 +1101,D280,11A7 1101,D280,11A7 +1101,D360,11A7 1101,D360,11A7 +1101,D440,11A7 1101,D440,11A7 +1101,D520,11A7 1101,D520,11A7 +1101,D600,11A7 1101,D600,11A7 +1101,D6E0,11A7 1101,D6E0,11A7 +1102,AC00,11A7 1102,AC00,11A7 +1102,ACE0,11A7 1102,ACE0,11A7 +1102,ADC0,11A7 1102,ADC0,11A7 +1102,AEA0,11A7 1102,AEA0,11A7 +1102,AF80,11A7 1102,AF80,11A7 +1102,B060,11A7 1102,B060,11A7 +1102,B140,11A7 1102,B140,11A7 +1102,B220,11A7 1102,B220,11A7 +1102,B300,11A7 1102,B300,11A7 +1102,B3E0,11A7 1102,B3E0,11A7 +1102,B4C0,11A7 1102,B4C0,11A7 +1102,B5A0,11A7 1102,B5A0,11A7 +1102,B680,11A7 1102,B680,11A7 +1102,B760,11A7 1102,B760,11A7 +1102,B840,11A7 1102,B840,11A7 +1102,B920,11A7 1102,B920,11A7 +1102,BA00,11A7 1102,BA00,11A7 +1102,BAE0,11A7 1102,BAE0,11A7 +1102,BBC0,11A7 1102,BBC0,11A7 +1102,BCA0,11A7 1102,BCA0,11A7 +1102,BD80,11A7 1102,BD80,11A7 +1102,BE60,11A7 1102,BE60,11A7 +1102,BF40,11A7 1102,BF40,11A7 +1102,C020,11A7 1102,C020,11A7 +1102,C100,11A7 1102,C100,11A7 +1102,C1E0,11A7 1102,C1E0,11A7 +1102,C2C0,11A7 1102,C2C0,11A7 +1102,C3A0,11A7 1102,C3A0,11A7 +1102,C480,11A7 1102,C480,11A7 +1102,C560,11A7 1102,C560,11A7 +1102,C640,11A7 1102,C640,11A7 +1102,C720,11A7 1102,C720,11A7 +1102,C800,11A7 1102,C800,11A7 +1102,C8E0,11A7 1102,C8E0,11A7 +1102,C9C0,11A7 1102,C9C0,11A7 +1102,CAA0,11A7 1102,CAA0,11A7 +1102,CB80,11A7 1102,CB80,11A7 +1102,CC60,11A7 1102,CC60,11A7 +1102,CD40,11A7 1102,CD40,11A7 +1102,CE20,11A7 1102,CE20,11A7 +1102,CF00,11A7 1102,CF00,11A7 +1102,CFE0,11A7 1102,CFE0,11A7 +1102,D0C0,11A7 1102,D0C0,11A7 +1102,D1A0,11A7 1102,D1A0,11A7 +1102,D280,11A7 1102,D280,11A7 +1102,D360,11A7 1102,D360,11A7 +1102,D440,11A7 1102,D440,11A7 +1102,D520,11A7 1102,D520,11A7 +1102,D600,11A7 1102,D600,11A7 +1102,D6E0,11A7 1102,D6E0,11A7 +1103,AC00,11A7 1103,AC00,11A7 +1103,ACE0,11A7 1103,ACE0,11A7 +1103,ADC0,11A7 1103,ADC0,11A7 +1103,AEA0,11A7 1103,AEA0,11A7 +1103,AF80,11A7 1103,AF80,11A7 +1103,B060,11A7 1103,B060,11A7 +1103,B140,11A7 1103,B140,11A7 +1103,B220,11A7 1103,B220,11A7 +1103,B300,11A7 1103,B300,11A7 +1103,B3E0,11A7 1103,B3E0,11A7 +1103,B4C0,11A7 1103,B4C0,11A7 +1103,B5A0,11A7 1103,B5A0,11A7 +1103,B680,11A7 1103,B680,11A7 +1103,B760,11A7 1103,B760,11A7 +1103,B840,11A7 1103,B840,11A7 +1103,B920,11A7 1103,B920,11A7 +1103,BA00,11A7 1103,BA00,11A7 +1103,BAE0,11A7 1103,BAE0,11A7 +1103,BBC0,11A7 1103,BBC0,11A7 +1103,BCA0,11A7 1103,BCA0,11A7 +1103,BD80,11A7 1103,BD80,11A7 +1103,BE60,11A7 1103,BE60,11A7 +1103,BF40,11A7 1103,BF40,11A7 +1103,C020,11A7 1103,C020,11A7 +1103,C100,11A7 1103,C100,11A7 +1103,C1E0,11A7 1103,C1E0,11A7 +1103,C2C0,11A7 1103,C2C0,11A7 +1103,C3A0,11A7 1103,C3A0,11A7 +1103,C480,11A7 1103,C480,11A7 +1103,C560,11A7 1103,C560,11A7 +1103,C640,11A7 1103,C640,11A7 +1103,C720,11A7 1103,C720,11A7 +1103,C800,11A7 1103,C800,11A7 +1103,C8E0,11A7 1103,C8E0,11A7 +1103,C9C0,11A7 1103,C9C0,11A7 +1103,CAA0,11A7 1103,CAA0,11A7 +1103,CB80,11A7 1103,CB80,11A7 +1103,CC60,11A7 1103,CC60,11A7 +1103,CD40,11A7 1103,CD40,11A7 +1103,CE20,11A7 1103,CE20,11A7 +1103,CF00,11A7 1103,CF00,11A7 +1103,CFE0,11A7 1103,CFE0,11A7 +1103,D0C0,11A7 1103,D0C0,11A7 +1103,D1A0,11A7 1103,D1A0,11A7 +1103,D280,11A7 1103,D280,11A7 +1103,D360,11A7 1103,D360,11A7 +1103,D440,11A7 1103,D440,11A7 +1103,D520,11A7 1103,D520,11A7 +1103,D600,11A7 1103,D600,11A7 +1103,D6E0,11A7 1103,D6E0,11A7 +1104,AC00,11A7 1104,AC00,11A7 +1104,ACE0,11A7 1104,ACE0,11A7 +1104,ADC0,11A7 1104,ADC0,11A7 +1104,AEA0,11A7 1104,AEA0,11A7 +1104,AF80,11A7 1104,AF80,11A7 +1104,B060,11A7 1104,B060,11A7 +1104,B140,11A7 1104,B140,11A7 +1104,B220,11A7 1104,B220,11A7 +1104,B300,11A7 1104,B300,11A7 +1104,B3E0,11A7 1104,B3E0,11A7 +1104,B4C0,11A7 1104,B4C0,11A7 +1104,B5A0,11A7 1104,B5A0,11A7 +1104,B680,11A7 1104,B680,11A7 +1104,B760,11A7 1104,B760,11A7 +1104,B840,11A7 1104,B840,11A7 +1104,B920,11A7 1104,B920,11A7 +1104,BA00,11A7 1104,BA00,11A7 +1104,BAE0,11A7 1104,BAE0,11A7 +1104,BBC0,11A7 1104,BBC0,11A7 +1104,BCA0,11A7 1104,BCA0,11A7 +1104,BD80,11A7 1104,BD80,11A7 +1104,BE60,11A7 1104,BE60,11A7 +1104,BF40,11A7 1104,BF40,11A7 +1104,C020,11A7 1104,C020,11A7 +1104,C100,11A7 1104,C100,11A7 +1104,C1E0,11A7 1104,C1E0,11A7 +1104,C2C0,11A7 1104,C2C0,11A7 +1104,C3A0,11A7 1104,C3A0,11A7 +1104,C480,11A7 1104,C480,11A7 +1104,C560,11A7 1104,C560,11A7 +1104,C640,11A7 1104,C640,11A7 +1104,C720,11A7 1104,C720,11A7 +1104,C800,11A7 1104,C800,11A7 +1104,C8E0,11A7 1104,C8E0,11A7 +1104,C9C0,11A7 1104,C9C0,11A7 +1104,CAA0,11A7 1104,CAA0,11A7 +1104,CB80,11A7 1104,CB80,11A7 +1104,CC60,11A7 1104,CC60,11A7 +1104,CD40,11A7 1104,CD40,11A7 +1104,CE20,11A7 1104,CE20,11A7 +1104,CF00,11A7 1104,CF00,11A7 +1104,CFE0,11A7 1104,CFE0,11A7 +1104,D0C0,11A7 1104,D0C0,11A7 +1104,D1A0,11A7 1104,D1A0,11A7 +1104,D280,11A7 1104,D280,11A7 +1104,D360,11A7 1104,D360,11A7 +1104,D440,11A7 1104,D440,11A7 +1104,D520,11A7 1104,D520,11A7 +1104,D600,11A7 1104,D600,11A7 +1104,D6E0,11A7 1104,D6E0,11A7 +1105,AC00,11A7 1105,AC00,11A7 +1105,ACE0,11A7 1105,ACE0,11A7 +1105,ADC0,11A7 1105,ADC0,11A7 +1105,AEA0,11A7 1105,AEA0,11A7 +1105,AF80,11A7 1105,AF80,11A7 +1105,B060,11A7 1105,B060,11A7 +1105,B140,11A7 1105,B140,11A7 +1105,B220,11A7 1105,B220,11A7 +1105,B300,11A7 1105,B300,11A7 +1105,B3E0,11A7 1105,B3E0,11A7 +1105,B4C0,11A7 1105,B4C0,11A7 +1105,B5A0,11A7 1105,B5A0,11A7 +1105,B680,11A7 1105,B680,11A7 +1105,B760,11A7 1105,B760,11A7 +1105,B840,11A7 1105,B840,11A7 +1105,B920,11A7 1105,B920,11A7 +1105,BA00,11A7 1105,BA00,11A7 +1105,BAE0,11A7 1105,BAE0,11A7 +1105,BBC0,11A7 1105,BBC0,11A7 +1105,BCA0,11A7 1105,BCA0,11A7 +1105,BD80,11A7 1105,BD80,11A7 +1105,BE60,11A7 1105,BE60,11A7 +1105,BF40,11A7 1105,BF40,11A7 +1105,C020,11A7 1105,C020,11A7 +1105,C100,11A7 1105,C100,11A7 +1105,C1E0,11A7 1105,C1E0,11A7 +1105,C2C0,11A7 1105,C2C0,11A7 +1105,C3A0,11A7 1105,C3A0,11A7 +1105,C480,11A7 1105,C480,11A7 +1105,C560,11A7 1105,C560,11A7 +1105,C640,11A7 1105,C640,11A7 +1105,C720,11A7 1105,C720,11A7 +1105,C800,11A7 1105,C800,11A7 +1105,C8E0,11A7 1105,C8E0,11A7 +1105,C9C0,11A7 1105,C9C0,11A7 +1105,CAA0,11A7 1105,CAA0,11A7 +1105,CB80,11A7 1105,CB80,11A7 +1105,CC60,11A7 1105,CC60,11A7 +1105,CD40,11A7 1105,CD40,11A7 +1105,CE20,11A7 1105,CE20,11A7 +1105,CF00,11A7 1105,CF00,11A7 +1105,CFE0,11A7 1105,CFE0,11A7 +1105,D0C0,11A7 1105,D0C0,11A7 +1105,D1A0,11A7 1105,D1A0,11A7 +1105,D280,11A7 1105,D280,11A7 +1105,D360,11A7 1105,D360,11A7 +1105,D440,11A7 1105,D440,11A7 +1105,D520,11A7 1105,D520,11A7 +1105,D600,11A7 1105,D600,11A7 +1105,D6E0,11A7 1105,D6E0,11A7 +1106,AC00,11A7 1106,AC00,11A7 +1106,ACE0,11A7 1106,ACE0,11A7 +1106,ADC0,11A7 1106,ADC0,11A7 +1106,AEA0,11A7 1106,AEA0,11A7 +1106,AF80,11A7 1106,AF80,11A7 +1106,B060,11A7 1106,B060,11A7 +1106,B140,11A7 1106,B140,11A7 +1106,B220,11A7 1106,B220,11A7 +1106,B300,11A7 1106,B300,11A7 +1106,B3E0,11A7 1106,B3E0,11A7 +1106,B4C0,11A7 1106,B4C0,11A7 +1106,B5A0,11A7 1106,B5A0,11A7 +1106,B680,11A7 1106,B680,11A7 +1106,B760,11A7 1106,B760,11A7 +1106,B840,11A7 1106,B840,11A7 +1106,B920,11A7 1106,B920,11A7 +1106,BA00,11A7 1106,BA00,11A7 +1106,BAE0,11A7 1106,BAE0,11A7 +1106,BBC0,11A7 1106,BBC0,11A7 +1106,BCA0,11A7 1106,BCA0,11A7 +1106,BD80,11A7 1106,BD80,11A7 +1106,BE60,11A7 1106,BE60,11A7 +1106,BF40,11A7 1106,BF40,11A7 +1106,C020,11A7 1106,C020,11A7 +1106,C100,11A7 1106,C100,11A7 +1106,C1E0,11A7 1106,C1E0,11A7 +1106,C2C0,11A7 1106,C2C0,11A7 +1106,C3A0,11A7 1106,C3A0,11A7 +1106,C480,11A7 1106,C480,11A7 +1106,C560,11A7 1106,C560,11A7 +1106,C640,11A7 1106,C640,11A7 +1106,C720,11A7 1106,C720,11A7 +1106,C800,11A7 1106,C800,11A7 +1106,C8E0,11A7 1106,C8E0,11A7 +1106,C9C0,11A7 1106,C9C0,11A7 +1106,CAA0,11A7 1106,CAA0,11A7 +1106,CB80,11A7 1106,CB80,11A7 +1106,CC60,11A7 1106,CC60,11A7 +1106,CD40,11A7 1106,CD40,11A7 +1106,CE20,11A7 1106,CE20,11A7 +1106,CF00,11A7 1106,CF00,11A7 +1106,CFE0,11A7 1106,CFE0,11A7 +1106,D0C0,11A7 1106,D0C0,11A7 +1106,D1A0,11A7 1106,D1A0,11A7 +1106,D280,11A7 1106,D280,11A7 +1106,D360,11A7 1106,D360,11A7 +1106,D440,11A7 1106,D440,11A7 +1106,D520,11A7 1106,D520,11A7 +1106,D600,11A7 1106,D600,11A7 +1106,D6E0,11A7 1106,D6E0,11A7 +1107,AC00,11A7 1107,AC00,11A7 +1107,ACE0,11A7 1107,ACE0,11A7 +1107,ADC0,11A7 1107,ADC0,11A7 +1107,AEA0,11A7 1107,AEA0,11A7 +1107,AF80,11A7 1107,AF80,11A7 +1107,B060,11A7 1107,B060,11A7 +1107,B140,11A7 1107,B140,11A7 +1107,B220,11A7 1107,B220,11A7 +1107,B300,11A7 1107,B300,11A7 +1107,B3E0,11A7 1107,B3E0,11A7 +1107,B4C0,11A7 1107,B4C0,11A7 +1107,B5A0,11A7 1107,B5A0,11A7 +1107,B680,11A7 1107,B680,11A7 +1107,B760,11A7 1107,B760,11A7 +1107,B840,11A7 1107,B840,11A7 +1107,B920,11A7 1107,B920,11A7 +1107,BA00,11A7 1107,BA00,11A7 +1107,BAE0,11A7 1107,BAE0,11A7 +1107,BBC0,11A7 1107,BBC0,11A7 +1107,BCA0,11A7 1107,BCA0,11A7 +1107,BD80,11A7 1107,BD80,11A7 +1107,BE60,11A7 1107,BE60,11A7 +1107,BF40,11A7 1107,BF40,11A7 +1107,C020,11A7 1107,C020,11A7 +1107,C100,11A7 1107,C100,11A7 +1107,C1E0,11A7 1107,C1E0,11A7 +1107,C2C0,11A7 1107,C2C0,11A7 +1107,C3A0,11A7 1107,C3A0,11A7 +1107,C480,11A7 1107,C480,11A7 +1107,C560,11A7 1107,C560,11A7 +1107,C640,11A7 1107,C640,11A7 +1107,C720,11A7 1107,C720,11A7 +1107,C800,11A7 1107,C800,11A7 +1107,C8E0,11A7 1107,C8E0,11A7 +1107,C9C0,11A7 1107,C9C0,11A7 +1107,CAA0,11A7 1107,CAA0,11A7 +1107,CB80,11A7 1107,CB80,11A7 +1107,CC60,11A7 1107,CC60,11A7 +1107,CD40,11A7 1107,CD40,11A7 +1107,CE20,11A7 1107,CE20,11A7 +1107,CF00,11A7 1107,CF00,11A7 +1107,CFE0,11A7 1107,CFE0,11A7 +1107,D0C0,11A7 1107,D0C0,11A7 +1107,D1A0,11A7 1107,D1A0,11A7 +1107,D280,11A7 1107,D280,11A7 +1107,D360,11A7 1107,D360,11A7 +1107,D440,11A7 1107,D440,11A7 +1107,D520,11A7 1107,D520,11A7 +1107,D600,11A7 1107,D600,11A7 +1107,D6E0,11A7 1107,D6E0,11A7 +1108,AC00,11A7 1108,AC00,11A7 +1108,ACE0,11A7 1108,ACE0,11A7 +1108,ADC0,11A7 1108,ADC0,11A7 +1108,AEA0,11A7 1108,AEA0,11A7 +1108,AF80,11A7 1108,AF80,11A7 +1108,B060,11A7 1108,B060,11A7 +1108,B140,11A7 1108,B140,11A7 +1108,B220,11A7 1108,B220,11A7 +1108,B300,11A7 1108,B300,11A7 +1108,B3E0,11A7 1108,B3E0,11A7 +1108,B4C0,11A7 1108,B4C0,11A7 +1108,B5A0,11A7 1108,B5A0,11A7 +1108,B680,11A7 1108,B680,11A7 +1108,B760,11A7 1108,B760,11A7 +1108,B840,11A7 1108,B840,11A7 +1108,B920,11A7 1108,B920,11A7 +1108,BA00,11A7 1108,BA00,11A7 +1108,BAE0,11A7 1108,BAE0,11A7 +1108,BBC0,11A7 1108,BBC0,11A7 +1108,BCA0,11A7 1108,BCA0,11A7 +1108,BD80,11A7 1108,BD80,11A7 +1108,BE60,11A7 1108,BE60,11A7 +1108,BF40,11A7 1108,BF40,11A7 +1108,C020,11A7 1108,C020,11A7 +1108,C100,11A7 1108,C100,11A7 +1108,C1E0,11A7 1108,C1E0,11A7 +1108,C2C0,11A7 1108,C2C0,11A7 +1108,C3A0,11A7 1108,C3A0,11A7 +1108,C480,11A7 1108,C480,11A7 +1108,C560,11A7 1108,C560,11A7 +1108,C640,11A7 1108,C640,11A7 +1108,C720,11A7 1108,C720,11A7 +1108,C800,11A7 1108,C800,11A7 +1108,C8E0,11A7 1108,C8E0,11A7 +1108,C9C0,11A7 1108,C9C0,11A7 +1108,CAA0,11A7 1108,CAA0,11A7 +1108,CB80,11A7 1108,CB80,11A7 +1108,CC60,11A7 1108,CC60,11A7 +1108,CD40,11A7 1108,CD40,11A7 +1108,CE20,11A7 1108,CE20,11A7 +1108,CF00,11A7 1108,CF00,11A7 +1108,CFE0,11A7 1108,CFE0,11A7 +1108,D0C0,11A7 1108,D0C0,11A7 +1108,D1A0,11A7 1108,D1A0,11A7 +1108,D280,11A7 1108,D280,11A7 +1108,D360,11A7 1108,D360,11A7 +1108,D440,11A7 1108,D440,11A7 +1108,D520,11A7 1108,D520,11A7 +1108,D600,11A7 1108,D600,11A7 +1108,D6E0,11A7 1108,D6E0,11A7 +1109,AC00,11A7 1109,AC00,11A7 +1109,ACE0,11A7 1109,ACE0,11A7 +1109,ADC0,11A7 1109,ADC0,11A7 +1109,AEA0,11A7 1109,AEA0,11A7 +1109,AF80,11A7 1109,AF80,11A7 +1109,B060,11A7 1109,B060,11A7 +1109,B140,11A7 1109,B140,11A7 +1109,B220,11A7 1109,B220,11A7 +1109,B300,11A7 1109,B300,11A7 +1109,B3E0,11A7 1109,B3E0,11A7 +1109,B4C0,11A7 1109,B4C0,11A7 +1109,B5A0,11A7 1109,B5A0,11A7 +1109,B680,11A7 1109,B680,11A7 +1109,B760,11A7 1109,B760,11A7 +1109,B840,11A7 1109,B840,11A7 +1109,B920,11A7 1109,B920,11A7 +1109,BA00,11A7 1109,BA00,11A7 +1109,BAE0,11A7 1109,BAE0,11A7 +1109,BBC0,11A7 1109,BBC0,11A7 +1109,BCA0,11A7 1109,BCA0,11A7 +1109,BD80,11A7 1109,BD80,11A7 +1109,BE60,11A7 1109,BE60,11A7 +1109,BF40,11A7 1109,BF40,11A7 +1109,C020,11A7 1109,C020,11A7 +1109,C100,11A7 1109,C100,11A7 +1109,C1E0,11A7 1109,C1E0,11A7 +1109,C2C0,11A7 1109,C2C0,11A7 +1109,C3A0,11A7 1109,C3A0,11A7 +1109,C480,11A7 1109,C480,11A7 +1109,C560,11A7 1109,C560,11A7 +1109,C640,11A7 1109,C640,11A7 +1109,C720,11A7 1109,C720,11A7 +1109,C800,11A7 1109,C800,11A7 +1109,C8E0,11A7 1109,C8E0,11A7 +1109,C9C0,11A7 1109,C9C0,11A7 +1109,CAA0,11A7 1109,CAA0,11A7 +1109,CB80,11A7 1109,CB80,11A7 +1109,CC60,11A7 1109,CC60,11A7 +1109,CD40,11A7 1109,CD40,11A7 +1109,CE20,11A7 1109,CE20,11A7 +1109,CF00,11A7 1109,CF00,11A7 +1109,CFE0,11A7 1109,CFE0,11A7 +1109,D0C0,11A7 1109,D0C0,11A7 +1109,D1A0,11A7 1109,D1A0,11A7 +1109,D280,11A7 1109,D280,11A7 +1109,D360,11A7 1109,D360,11A7 +1109,D440,11A7 1109,D440,11A7 +1109,D520,11A7 1109,D520,11A7 +1109,D600,11A7 1109,D600,11A7 +1109,D6E0,11A7 1109,D6E0,11A7 +110A,AC00,11A7 110A,AC00,11A7 +110A,ACE0,11A7 110A,ACE0,11A7 +110A,ADC0,11A7 110A,ADC0,11A7 +110A,AEA0,11A7 110A,AEA0,11A7 +110A,AF80,11A7 110A,AF80,11A7 +110A,B060,11A7 110A,B060,11A7 +110A,B140,11A7 110A,B140,11A7 +110A,B220,11A7 110A,B220,11A7 +110A,B300,11A7 110A,B300,11A7 +110A,B3E0,11A7 110A,B3E0,11A7 +110A,B4C0,11A7 110A,B4C0,11A7 +110A,B5A0,11A7 110A,B5A0,11A7 +110A,B680,11A7 110A,B680,11A7 +110A,B760,11A7 110A,B760,11A7 +110A,B840,11A7 110A,B840,11A7 +110A,B920,11A7 110A,B920,11A7 +110A,BA00,11A7 110A,BA00,11A7 +110A,BAE0,11A7 110A,BAE0,11A7 +110A,BBC0,11A7 110A,BBC0,11A7 +110A,BCA0,11A7 110A,BCA0,11A7 +110A,BD80,11A7 110A,BD80,11A7 +110A,BE60,11A7 110A,BE60,11A7 +110A,BF40,11A7 110A,BF40,11A7 +110A,C020,11A7 110A,C020,11A7 +110A,C100,11A7 110A,C100,11A7 +110A,C1E0,11A7 110A,C1E0,11A7 +110A,C2C0,11A7 110A,C2C0,11A7 +110A,C3A0,11A7 110A,C3A0,11A7 +110A,C480,11A7 110A,C480,11A7 +110A,C560,11A7 110A,C560,11A7 +110A,C640,11A7 110A,C640,11A7 +110A,C720,11A7 110A,C720,11A7 +110A,C800,11A7 110A,C800,11A7 +110A,C8E0,11A7 110A,C8E0,11A7 +110A,C9C0,11A7 110A,C9C0,11A7 +110A,CAA0,11A7 110A,CAA0,11A7 +110A,CB80,11A7 110A,CB80,11A7 +110A,CC60,11A7 110A,CC60,11A7 +110A,CD40,11A7 110A,CD40,11A7 +110A,CE20,11A7 110A,CE20,11A7 +110A,CF00,11A7 110A,CF00,11A7 +110A,CFE0,11A7 110A,CFE0,11A7 +110A,D0C0,11A7 110A,D0C0,11A7 +110A,D1A0,11A7 110A,D1A0,11A7 +110A,D280,11A7 110A,D280,11A7 +110A,D360,11A7 110A,D360,11A7 +110A,D440,11A7 110A,D440,11A7 +110A,D520,11A7 110A,D520,11A7 +110A,D600,11A7 110A,D600,11A7 +110A,D6E0,11A7 110A,D6E0,11A7 +110B,AC00,11A7 110B,AC00,11A7 +110B,ACE0,11A7 110B,ACE0,11A7 +110B,ADC0,11A7 110B,ADC0,11A7 +110B,AEA0,11A7 110B,AEA0,11A7 +110B,AF80,11A7 110B,AF80,11A7 +110B,B060,11A7 110B,B060,11A7 +110B,B140,11A7 110B,B140,11A7 +110B,B220,11A7 110B,B220,11A7 +110B,B300,11A7 110B,B300,11A7 +110B,B3E0,11A7 110B,B3E0,11A7 +110B,B4C0,11A7 110B,B4C0,11A7 +110B,B5A0,11A7 110B,B5A0,11A7 +110B,B680,11A7 110B,B680,11A7 +110B,B760,11A7 110B,B760,11A7 +110B,B840,11A7 110B,B840,11A7 +110B,B920,11A7 110B,B920,11A7 +110B,BA00,11A7 110B,BA00,11A7 +110B,BAE0,11A7 110B,BAE0,11A7 +110B,BBC0,11A7 110B,BBC0,11A7 +110B,BCA0,11A7 110B,BCA0,11A7 +110B,BD80,11A7 110B,BD80,11A7 +110B,BE60,11A7 110B,BE60,11A7 +110B,BF40,11A7 110B,BF40,11A7 +110B,C020,11A7 110B,C020,11A7 +110B,C100,11A7 110B,C100,11A7 +110B,C1E0,11A7 110B,C1E0,11A7 +110B,C2C0,11A7 110B,C2C0,11A7 +110B,C3A0,11A7 110B,C3A0,11A7 +110B,C480,11A7 110B,C480,11A7 +110B,C560,11A7 110B,C560,11A7 +110B,C640,11A7 110B,C640,11A7 +110B,C720,11A7 110B,C720,11A7 +110B,C800,11A7 110B,C800,11A7 +110B,C8E0,11A7 110B,C8E0,11A7 +110B,C9C0,11A7 110B,C9C0,11A7 +110B,CAA0,11A7 110B,CAA0,11A7 +110B,CB80,11A7 110B,CB80,11A7 +110B,CC60,11A7 110B,CC60,11A7 +110B,CD40,11A7 110B,CD40,11A7 +110B,CE20,11A7 110B,CE20,11A7 +110B,CF00,11A7 110B,CF00,11A7 +110B,CFE0,11A7 110B,CFE0,11A7 +110B,D0C0,11A7 110B,D0C0,11A7 +110B,D1A0,11A7 110B,D1A0,11A7 +110B,D280,11A7 110B,D280,11A7 +110B,D360,11A7 110B,D360,11A7 +110B,D440,11A7 110B,D440,11A7 +110B,D520,11A7 110B,D520,11A7 +110B,D600,11A7 110B,D600,11A7 +110B,D6E0,11A7 110B,D6E0,11A7 +110C,AC00,11A7 110C,AC00,11A7 +110C,ACE0,11A7 110C,ACE0,11A7 +110C,ADC0,11A7 110C,ADC0,11A7 +110C,AEA0,11A7 110C,AEA0,11A7 +110C,AF80,11A7 110C,AF80,11A7 +110C,B060,11A7 110C,B060,11A7 +110C,B140,11A7 110C,B140,11A7 +110C,B220,11A7 110C,B220,11A7 +110C,B300,11A7 110C,B300,11A7 +110C,B3E0,11A7 110C,B3E0,11A7 +110C,B4C0,11A7 110C,B4C0,11A7 +110C,B5A0,11A7 110C,B5A0,11A7 +110C,B680,11A7 110C,B680,11A7 +110C,B760,11A7 110C,B760,11A7 +110C,B840,11A7 110C,B840,11A7 +110C,B920,11A7 110C,B920,11A7 +110C,BA00,11A7 110C,BA00,11A7 +110C,BAE0,11A7 110C,BAE0,11A7 +110C,BBC0,11A7 110C,BBC0,11A7 +110C,BCA0,11A7 110C,BCA0,11A7 +110C,BD80,11A7 110C,BD80,11A7 +110C,BE60,11A7 110C,BE60,11A7 +110C,BF40,11A7 110C,BF40,11A7 +110C,C020,11A7 110C,C020,11A7 +110C,C100,11A7 110C,C100,11A7 +110C,C1E0,11A7 110C,C1E0,11A7 +110C,C2C0,11A7 110C,C2C0,11A7 +110C,C3A0,11A7 110C,C3A0,11A7 +110C,C480,11A7 110C,C480,11A7 +110C,C560,11A7 110C,C560,11A7 +110C,C640,11A7 110C,C640,11A7 +110C,C720,11A7 110C,C720,11A7 +110C,C800,11A7 110C,C800,11A7 +110C,C8E0,11A7 110C,C8E0,11A7 +110C,C9C0,11A7 110C,C9C0,11A7 +110C,CAA0,11A7 110C,CAA0,11A7 +110C,CB80,11A7 110C,CB80,11A7 +110C,CC60,11A7 110C,CC60,11A7 +110C,CD40,11A7 110C,CD40,11A7 +110C,CE20,11A7 110C,CE20,11A7 +110C,CF00,11A7 110C,CF00,11A7 +110C,CFE0,11A7 110C,CFE0,11A7 +110C,D0C0,11A7 110C,D0C0,11A7 +110C,D1A0,11A7 110C,D1A0,11A7 +110C,D280,11A7 110C,D280,11A7 +110C,D360,11A7 110C,D360,11A7 +110C,D440,11A7 110C,D440,11A7 +110C,D520,11A7 110C,D520,11A7 +110C,D600,11A7 110C,D600,11A7 +110C,D6E0,11A7 110C,D6E0,11A7 +110D,AC00,11A7 110D,AC00,11A7 +110D,ACE0,11A7 110D,ACE0,11A7 +110D,ADC0,11A7 110D,ADC0,11A7 +110D,AEA0,11A7 110D,AEA0,11A7 +110D,AF80,11A7 110D,AF80,11A7 +110D,B060,11A7 110D,B060,11A7 +110D,B140,11A7 110D,B140,11A7 +110D,B220,11A7 110D,B220,11A7 +110D,B300,11A7 110D,B300,11A7 +110D,B3E0,11A7 110D,B3E0,11A7 +110D,B4C0,11A7 110D,B4C0,11A7 +110D,B5A0,11A7 110D,B5A0,11A7 +110D,B680,11A7 110D,B680,11A7 +110D,B760,11A7 110D,B760,11A7 +110D,B840,11A7 110D,B840,11A7 +110D,B920,11A7 110D,B920,11A7 +110D,BA00,11A7 110D,BA00,11A7 +110D,BAE0,11A7 110D,BAE0,11A7 +110D,BBC0,11A7 110D,BBC0,11A7 +110D,BCA0,11A7 110D,BCA0,11A7 +110D,BD80,11A7 110D,BD80,11A7 +110D,BE60,11A7 110D,BE60,11A7 +110D,BF40,11A7 110D,BF40,11A7 +110D,C020,11A7 110D,C020,11A7 +110D,C100,11A7 110D,C100,11A7 +110D,C1E0,11A7 110D,C1E0,11A7 +110D,C2C0,11A7 110D,C2C0,11A7 +110D,C3A0,11A7 110D,C3A0,11A7 +110D,C480,11A7 110D,C480,11A7 +110D,C560,11A7 110D,C560,11A7 +110D,C640,11A7 110D,C640,11A7 +110D,C720,11A7 110D,C720,11A7 +110D,C800,11A7 110D,C800,11A7 +110D,C8E0,11A7 110D,C8E0,11A7 +110D,C9C0,11A7 110D,C9C0,11A7 +110D,CAA0,11A7 110D,CAA0,11A7 +110D,CB80,11A7 110D,CB80,11A7 +110D,CC60,11A7 110D,CC60,11A7 +110D,CD40,11A7 110D,CD40,11A7 +110D,CE20,11A7 110D,CE20,11A7 +110D,CF00,11A7 110D,CF00,11A7 +110D,CFE0,11A7 110D,CFE0,11A7 +110D,D0C0,11A7 110D,D0C0,11A7 +110D,D1A0,11A7 110D,D1A0,11A7 +110D,D280,11A7 110D,D280,11A7 +110D,D360,11A7 110D,D360,11A7 +110D,D440,11A7 110D,D440,11A7 +110D,D520,11A7 110D,D520,11A7 +110D,D600,11A7 110D,D600,11A7 +110D,D6E0,11A7 110D,D6E0,11A7 +110E,AC00,11A7 110E,AC00,11A7 +110E,ACE0,11A7 110E,ACE0,11A7 +110E,ADC0,11A7 110E,ADC0,11A7 +110E,AEA0,11A7 110E,AEA0,11A7 +110E,AF80,11A7 110E,AF80,11A7 +110E,B060,11A7 110E,B060,11A7 +110E,B140,11A7 110E,B140,11A7 +110E,B220,11A7 110E,B220,11A7 +110E,B300,11A7 110E,B300,11A7 +110E,B3E0,11A7 110E,B3E0,11A7 +110E,B4C0,11A7 110E,B4C0,11A7 +110E,B5A0,11A7 110E,B5A0,11A7 +110E,B680,11A7 110E,B680,11A7 +110E,B760,11A7 110E,B760,11A7 +110E,B840,11A7 110E,B840,11A7 +110E,B920,11A7 110E,B920,11A7 +110E,BA00,11A7 110E,BA00,11A7 +110E,BAE0,11A7 110E,BAE0,11A7 +110E,BBC0,11A7 110E,BBC0,11A7 +110E,BCA0,11A7 110E,BCA0,11A7 +110E,BD80,11A7 110E,BD80,11A7 +110E,BE60,11A7 110E,BE60,11A7 +110E,BF40,11A7 110E,BF40,11A7 +110E,C020,11A7 110E,C020,11A7 +110E,C100,11A7 110E,C100,11A7 +110E,C1E0,11A7 110E,C1E0,11A7 +110E,C2C0,11A7 110E,C2C0,11A7 +110E,C3A0,11A7 110E,C3A0,11A7 +110E,C480,11A7 110E,C480,11A7 +110E,C560,11A7 110E,C560,11A7 +110E,C640,11A7 110E,C640,11A7 +110E,C720,11A7 110E,C720,11A7 +110E,C800,11A7 110E,C800,11A7 +110E,C8E0,11A7 110E,C8E0,11A7 +110E,C9C0,11A7 110E,C9C0,11A7 +110E,CAA0,11A7 110E,CAA0,11A7 +110E,CB80,11A7 110E,CB80,11A7 +110E,CC60,11A7 110E,CC60,11A7 +110E,CD40,11A7 110E,CD40,11A7 +110E,CE20,11A7 110E,CE20,11A7 +110E,CF00,11A7 110E,CF00,11A7 +110E,CFE0,11A7 110E,CFE0,11A7 +110E,D0C0,11A7 110E,D0C0,11A7 +110E,D1A0,11A7 110E,D1A0,11A7 +110E,D280,11A7 110E,D280,11A7 +110E,D360,11A7 110E,D360,11A7 +110E,D440,11A7 110E,D440,11A7 +110E,D520,11A7 110E,D520,11A7 +110E,D600,11A7 110E,D600,11A7 +110E,D6E0,11A7 110E,D6E0,11A7 +110F,AC00,11A7 110F,AC00,11A7 +110F,ACE0,11A7 110F,ACE0,11A7 +110F,ADC0,11A7 110F,ADC0,11A7 +110F,AEA0,11A7 110F,AEA0,11A7 +110F,AF80,11A7 110F,AF80,11A7 +110F,B060,11A7 110F,B060,11A7 +110F,B140,11A7 110F,B140,11A7 +110F,B220,11A7 110F,B220,11A7 +110F,B300,11A7 110F,B300,11A7 +110F,B3E0,11A7 110F,B3E0,11A7 +110F,B4C0,11A7 110F,B4C0,11A7 +110F,B5A0,11A7 110F,B5A0,11A7 +110F,B680,11A7 110F,B680,11A7 +110F,B760,11A7 110F,B760,11A7 +110F,B840,11A7 110F,B840,11A7 +110F,B920,11A7 110F,B920,11A7 +110F,BA00,11A7 110F,BA00,11A7 +110F,BAE0,11A7 110F,BAE0,11A7 +110F,BBC0,11A7 110F,BBC0,11A7 +110F,BCA0,11A7 110F,BCA0,11A7 +110F,BD80,11A7 110F,BD80,11A7 +110F,BE60,11A7 110F,BE60,11A7 +110F,BF40,11A7 110F,BF40,11A7 +110F,C020,11A7 110F,C020,11A7 +110F,C100,11A7 110F,C100,11A7 +110F,C1E0,11A7 110F,C1E0,11A7 +110F,C2C0,11A7 110F,C2C0,11A7 +110F,C3A0,11A7 110F,C3A0,11A7 +110F,C480,11A7 110F,C480,11A7 +110F,C560,11A7 110F,C560,11A7 +110F,C640,11A7 110F,C640,11A7 +110F,C720,11A7 110F,C720,11A7 +110F,C800,11A7 110F,C800,11A7 +110F,C8E0,11A7 110F,C8E0,11A7 +110F,C9C0,11A7 110F,C9C0,11A7 +110F,CAA0,11A7 110F,CAA0,11A7 +110F,CB80,11A7 110F,CB80,11A7 +110F,CC60,11A7 110F,CC60,11A7 +110F,CD40,11A7 110F,CD40,11A7 +110F,CE20,11A7 110F,CE20,11A7 +110F,CF00,11A7 110F,CF00,11A7 +110F,CFE0,11A7 110F,CFE0,11A7 +110F,D0C0,11A7 110F,D0C0,11A7 +110F,D1A0,11A7 110F,D1A0,11A7 +110F,D280,11A7 110F,D280,11A7 +110F,D360,11A7 110F,D360,11A7 +110F,D440,11A7 110F,D440,11A7 +110F,D520,11A7 110F,D520,11A7 +110F,D600,11A7 110F,D600,11A7 +110F,D6E0,11A7 110F,D6E0,11A7 +1110,AC00,11A7 1110,AC00,11A7 +1110,ACE0,11A7 1110,ACE0,11A7 +1110,ADC0,11A7 1110,ADC0,11A7 +1110,AEA0,11A7 1110,AEA0,11A7 +1110,AF80,11A7 1110,AF80,11A7 +1110,B060,11A7 1110,B060,11A7 +1110,B140,11A7 1110,B140,11A7 +1110,B220,11A7 1110,B220,11A7 +1110,B300,11A7 1110,B300,11A7 +1110,B3E0,11A7 1110,B3E0,11A7 +1110,B4C0,11A7 1110,B4C0,11A7 +1110,B5A0,11A7 1110,B5A0,11A7 +1110,B680,11A7 1110,B680,11A7 +1110,B760,11A7 1110,B760,11A7 +1110,B840,11A7 1110,B840,11A7 +1110,B920,11A7 1110,B920,11A7 +1110,BA00,11A7 1110,BA00,11A7 +1110,BAE0,11A7 1110,BAE0,11A7 +1110,BBC0,11A7 1110,BBC0,11A7 +1110,BCA0,11A7 1110,BCA0,11A7 +1110,BD80,11A7 1110,BD80,11A7 +1110,BE60,11A7 1110,BE60,11A7 +1110,BF40,11A7 1110,BF40,11A7 +1110,C020,11A7 1110,C020,11A7 +1110,C100,11A7 1110,C100,11A7 +1110,C1E0,11A7 1110,C1E0,11A7 +1110,C2C0,11A7 1110,C2C0,11A7 +1110,C3A0,11A7 1110,C3A0,11A7 +1110,C480,11A7 1110,C480,11A7 +1110,C560,11A7 1110,C560,11A7 +1110,C640,11A7 1110,C640,11A7 +1110,C720,11A7 1110,C720,11A7 +1110,C800,11A7 1110,C800,11A7 +1110,C8E0,11A7 1110,C8E0,11A7 +1110,C9C0,11A7 1110,C9C0,11A7 +1110,CAA0,11A7 1110,CAA0,11A7 +1110,CB80,11A7 1110,CB80,11A7 +1110,CC60,11A7 1110,CC60,11A7 +1110,CD40,11A7 1110,CD40,11A7 +1110,CE20,11A7 1110,CE20,11A7 +1110,CF00,11A7 1110,CF00,11A7 +1110,CFE0,11A7 1110,CFE0,11A7 +1110,D0C0,11A7 1110,D0C0,11A7 +1110,D1A0,11A7 1110,D1A0,11A7 +1110,D280,11A7 1110,D280,11A7 +1110,D360,11A7 1110,D360,11A7 +1110,D440,11A7 1110,D440,11A7 +1110,D520,11A7 1110,D520,11A7 +1110,D600,11A7 1110,D600,11A7 +1110,D6E0,11A7 1110,D6E0,11A7 +1111,AC00,11A7 1111,AC00,11A7 +1111,ACE0,11A7 1111,ACE0,11A7 +1111,ADC0,11A7 1111,ADC0,11A7 +1111,AEA0,11A7 1111,AEA0,11A7 +1111,AF80,11A7 1111,AF80,11A7 +1111,B060,11A7 1111,B060,11A7 +1111,B140,11A7 1111,B140,11A7 +1111,B220,11A7 1111,B220,11A7 +1111,B300,11A7 1111,B300,11A7 +1111,B3E0,11A7 1111,B3E0,11A7 +1111,B4C0,11A7 1111,B4C0,11A7 +1111,B5A0,11A7 1111,B5A0,11A7 +1111,B680,11A7 1111,B680,11A7 +1111,B760,11A7 1111,B760,11A7 +1111,B840,11A7 1111,B840,11A7 +1111,B920,11A7 1111,B920,11A7 +1111,BA00,11A7 1111,BA00,11A7 +1111,BAE0,11A7 1111,BAE0,11A7 +1111,BBC0,11A7 1111,BBC0,11A7 +1111,BCA0,11A7 1111,BCA0,11A7 +1111,BD80,11A7 1111,BD80,11A7 +1111,BE60,11A7 1111,BE60,11A7 +1111,BF40,11A7 1111,BF40,11A7 +1111,C020,11A7 1111,C020,11A7 +1111,C100,11A7 1111,C100,11A7 +1111,C1E0,11A7 1111,C1E0,11A7 +1111,C2C0,11A7 1111,C2C0,11A7 +1111,C3A0,11A7 1111,C3A0,11A7 +1111,C480,11A7 1111,C480,11A7 +1111,C560,11A7 1111,C560,11A7 +1111,C640,11A7 1111,C640,11A7 +1111,C720,11A7 1111,C720,11A7 +1111,C800,11A7 1111,C800,11A7 +1111,C8E0,11A7 1111,C8E0,11A7 +1111,C9C0,11A7 1111,C9C0,11A7 +1111,CAA0,11A7 1111,CAA0,11A7 +1111,CB80,11A7 1111,CB80,11A7 +1111,CC60,11A7 1111,CC60,11A7 +1111,CD40,11A7 1111,CD40,11A7 +1111,CE20,11A7 1111,CE20,11A7 +1111,CF00,11A7 1111,CF00,11A7 +1111,CFE0,11A7 1111,CFE0,11A7 +1111,D0C0,11A7 1111,D0C0,11A7 +1111,D1A0,11A7 1111,D1A0,11A7 +1111,D280,11A7 1111,D280,11A7 +1111,D360,11A7 1111,D360,11A7 +1111,D440,11A7 1111,D440,11A7 +1111,D520,11A7 1111,D520,11A7 +1111,D600,11A7 1111,D600,11A7 +1111,D6E0,11A7 1111,D6E0,11A7 +1112,AC00,11A7 1112,AC00,11A7 +1112,ACE0,11A7 1112,ACE0,11A7 +1112,ADC0,11A7 1112,ADC0,11A7 +1112,AEA0,11A7 1112,AEA0,11A7 +1112,AF80,11A7 1112,AF80,11A7 +1112,B060,11A7 1112,B060,11A7 +1112,B140,11A7 1112,B140,11A7 +1112,B220,11A7 1112,B220,11A7 +1112,B300,11A7 1112,B300,11A7 +1112,B3E0,11A7 1112,B3E0,11A7 +1112,B4C0,11A7 1112,B4C0,11A7 +1112,B5A0,11A7 1112,B5A0,11A7 +1112,B680,11A7 1112,B680,11A7 +1112,B760,11A7 1112,B760,11A7 +1112,B840,11A7 1112,B840,11A7 +1112,B920,11A7 1112,B920,11A7 +1112,BA00,11A7 1112,BA00,11A7 +1112,BAE0,11A7 1112,BAE0,11A7 +1112,BBC0,11A7 1112,BBC0,11A7 +1112,BCA0,11A7 1112,BCA0,11A7 +1112,BD80,11A7 1112,BD80,11A7 +1112,BE60,11A7 1112,BE60,11A7 +1112,BF40,11A7 1112,BF40,11A7 +1112,C020,11A7 1112,C020,11A7 +1112,C100,11A7 1112,C100,11A7 +1112,C1E0,11A7 1112,C1E0,11A7 +1112,C2C0,11A7 1112,C2C0,11A7 +1112,C3A0,11A7 1112,C3A0,11A7 +1112,C480,11A7 1112,C480,11A7 +1112,C560,11A7 1112,C560,11A7 +1112,C640,11A7 1112,C640,11A7 +1112,C720,11A7 1112,C720,11A7 +1112,C800,11A7 1112,C800,11A7 +1112,C8E0,11A7 1112,C8E0,11A7 +1112,C9C0,11A7 1112,C9C0,11A7 +1112,CAA0,11A7 1112,CAA0,11A7 +1112,CB80,11A7 1112,CB80,11A7 +1112,CC60,11A7 1112,CC60,11A7 +1112,CD40,11A7 1112,CD40,11A7 +1112,CE20,11A7 1112,CE20,11A7 +1112,CF00,11A7 1112,CF00,11A7 +1112,CFE0,11A7 1112,CFE0,11A7 +1112,D0C0,11A7 1112,D0C0,11A7 +1112,D1A0,11A7 1112,D1A0,11A7 +1112,D280,11A7 1112,D280,11A7 +1112,D360,11A7 1112,D360,11A7 +1112,D440,11A7 1112,D440,11A7 +1112,D520,11A7 1112,D520,11A7 +1112,D600,11A7 1112,D600,11A7 +1112,D6E0,11A7 1112,D6E0,11A7 +AC00,11A7 AC00,11A7 +1100,1161,11A7 AC00,11A7 +1100,1162,11A7 AC1C,11A7 +1100,1163,11A7 AC38,11A7 +1100,1164,11A7 AC54,11A7 +1100,1165,11A7 AC70,11A7 +1101,1161,11A7 AE4C,11A7 +1101,1162,11A7 AE68,11A7 +1101,1163,11A7 AE84,11A7 +1101,1164,11A7 AEA0,11A7 +1101,1165,11A7 AEBC,11A7 +1102,1161,11A7 B098,11A7 +1102,1162,11A7 B0B4,11A7 +1102,1163,11A7 B0D0,11A7 +1102,1164,11A7 B0EC,11A7 +1102,1165,11A7 B108,11A7 +1103,1161,11A7 B2E4,11A7 +1103,1162,11A7 B300,11A7 +1103,1163,11A7 B31C,11A7 +1103,1164,11A7 B338,11A7 +1103,1165,11A7 B354,11A7 +1104,1161,11A7 B530,11A7 +1104,1162,11A7 B54C,11A7 +1104,1163,11A7 B568,11A7 +1104,1164,11A7 B584,11A7 +1104,1165,11A7 B5A0,11A7 +1105,1161,11A7 B77C,11A7 +1105,1162,11A7 B798,11A7 +1105,1163,11A7 B7B4,11A7 +1105,1164,11A7 B7D0,11A7 +1105,1165,11A7 B7EC,11A7 +1100,1166,11A7 AC8C,11A7 +1100,1167,11A7 ACA8,11A7 +1100,1168,11A7 ACC4,11A7 +1100,1169,11A7 ACE0,11A7 +1100,116A,11A7 ACFC,11A7 +1100,116B,11A7 AD18,11A7 +1100,116C,11A7 AD34,11A7 +1100,116D,11A7 AD50,11A7 +1100,116E,11A7 AD6C,11A7 +1100,116F,11A7 AD88,11A7 +1100,1170,11A7 ADA4,11A7 +1100,1171,11A7 ADC0,11A7 +1100,1172,11A7 ADDC,11A7 +1100,1173,11A7 ADF8,11A7 +1100,1174,11A7 AE14,11A7 +1100,1175,11A7 AE30,11A7 diff --git a/tools/unicode_parity/probe.exs b/tools/unicode_parity/probe.exs new file mode 100644 index 00000000..ad2d84a6 --- /dev/null +++ b/tools/unicode_parity/probe.exs @@ -0,0 +1,284 @@ +# Ground truth for services/name_rules.py, generated from the Elixir that +# Lightning actually runs. +# +# Apollo caps step names at 100 graphemes because Ecto's `validate_length` +# counts graphemes, so Apollo's clustering has to agree with Elixir's +# `String.length/1`. Elixir deviates from UAX #29 in two known places, so the +# target is Elixir's behaviour, not the spec, and the only honest way to get it +# is to ask Elixir. +# +# Usage, from this directory, with the Elixir version Lightning runs: +# +# elixir probe.exs # writes the data files below +# python3 check.py # compares, and prints tables to paste back +# +# Outputs (all under ./out): +# classmap.txt every codepoint's grapheme-break bucket +# extpict.txt the Extended_Pictographic set +# trim.txt what String.trim/1 strips +# lookback.txt what a GB11 emoji run may be separated from its ZWJ by +# ccc.txt canonical combining class, for NFC parity +# nfc_strings.txt whole strings, with OTP's NFC of each +# clusters.txt the same strings, split into graphemes +# version.txt the Elixir and OTP versions these came from +# +# Run `python3 edges.py` FIRST: it writes out/range_edges.txt from the range +# tables in name_rules, and this probe crosses those edges into its shapes. +# +# Re-run whenever Elixir's or Python's Unicode version moves. + +File.mkdir_p!("out") + +zwj = <<0x200D::utf8>> +emoji = <<0x1F600::utf8>> +acute = <<0x301::utf8>> + +codepoints = Enum.reject(0..0x10FFFF, &(&1 >= 0xD800 and &1 <= 0xDFFF)) + +hex = fn cp -> Integer.to_string(cp, 16) end + +# --- 1. break-class buckets --------------------------------------------------- +# A = attaches to what precedes it, P = prepends to what follows, +# C = control (breaks on both sides), O = anything else (not emitted). +bucket = fn cp -> + s = <> + + cond do + String.length("a" <> s) == 1 -> "A" + String.length(s <> "a") == 1 -> "P" + String.length(s <> acute) == 2 -> "C" + true -> "O" + end +end + +classmap = + codepoints + |> Enum.map(&{&1, bucket.(&1)}) + |> Enum.reject(fn {_, b} -> b == "O" end) + |> Enum.map_join("\n", fn {cp, b} -> "#{hex.(cp)} #{b}" end) + +File.write!("out/classmap.txt", classmap <> "\n") + +# --- 2. Extended_Pictographic ------------------------------------------------- +# ExtPict is NOT a break class, so the bucket sweep above cannot see it and an +# over-broad set here is invisible to that check. Probe it through GB11 instead: +# `cp ZWJ emoji` collapses to one grapheme only when cp is pictographic. +lead = Enum.filter(codepoints, &(String.length(<<&1::utf8>> <> zwj <> emoji) == 1)) +follow = Enum.filter(codepoints, &(String.length(emoji <> zwj <> <<&1::utf8>>) == 1)) + +if lead != follow do + IO.puts(:stderr, "WARNING: the two ExtPict probe directions disagree") +end + +File.write!("out/extpict.txt", Enum.map_join(lead, "\n", hex) <> "\n") + +# --- 3. String.trim/1 --------------------------------------------------------- +trimmed = Enum.filter(codepoints, &(String.trim(<<&1::utf8>> <> "x") == "x")) +File.write!("out/trim.txt", Enum.map_join(trimmed, "\n", hex) <> "\n") + +# --- 4. GB11 lookback --------------------------------------------------------- +# Which single intervening character an emoji run survives, between the +# pictograph and the ZWJ. UAX #29 says Extend only; Elixir also allows +# SpacingMark. +lookback = + codepoints + |> Enum.filter(&(String.length(<<0x2764::utf8>> <> <<&1::utf8>> <> zwj <> emoji) == 1)) + |> Enum.map_join("\n", hex) + +File.write!("out/lookback.txt", lookback <> "\n") + +# --- 5. normalisation -------------------------------------------------------- +# `sanitize_name` normalises to NFC twice and stakes step-lookup identity on +# Apollo and Lightning agreeing on the normal form. Nothing above can see that: +# the canonical combining class is not a break class, so a codepoint can have +# the right break class and still normalise differently. Emit every codepoint +# whose ccc is non-zero, plus every one whose NFC form differs from itself. +ccc = + codepoints + |> Enum.map(fn cp -> + {cp, :unicode_util.lookup(cp)[:ccc] || 0} + end) + |> Enum.reject(fn {_, c} -> c == 0 end) + |> Enum.map_join("\n", fn {cp, c} -> "#{hex.(cp)} #{c}" end) + +File.write!("out/ccc.txt", ccc <> "\n") + +# Per-codepoint checks cannot see the composition rule at all: OTP's NFC +# deviates from the spec only at three characters or more, so a whole-string +# comparison is the only thing that can catch it. +# +# The shapes are built explicitly rather than sampled from a flat pool. A +# uniform pool is almost all filler — precomposed Hangul and CJK that +# normalise trivially — and the shapes that actually discriminate this +# implementation from the standard library turn up at about 1e-6, so a mutant +# restoring a known bug survives. Each block below is a shape that is known to +# separate them, or a shape a name can realistically contain. + +bases = [0x41, 0x61, 0x4F, 0x45, 0x55, 0x0995, 0x0B95, 0x0D15, 0x0D9A, 0x0C95, 0x0E01, 0x0915] +marks = [0x0300, 0x0301, 0x0302, 0x0303, 0x0308, 0x030C, 0x0327, 0x0323, 0x0331, 0x0316, 0x0345] +zero_extend = [0x200C, 0x200D, 0xFE00, 0xFE0F, 0x034F, 0x1F3FB, 0x1F3FF, 0xE0067] +two_part_vowels = [ + [0x0995, 0x09C7, 0x09BE], [0x0B95, 0x0BC6, 0x0BBE], [0x0D15, 0x0D46, 0x0D3E], + [0x0D9A, 0x0DD9, 0x0DCF], [0x0C95, 0x0CC6, 0x0CC2], [0x0B15, 0x0B47, 0x0B3E], + [0x11103, 0x11127, 0x1112C] +] +prepends = [0x0600, 0x06DD, 0x0890, 0x0D4E, 0x11A3A, 0x11D46, 0x11F02] + +# Hangul syllables split by whether they carry a trailing consonant: an LV +# syllable decomposes to two jamo and an LVT to three, and the two behave +# differently under a rule that composes onto the cluster lead. +lv_syllables = Enum.take_every(for(s <- 0xAC00..0xD7A3, rem(s - 0xAC00, 28) == 0, do: s), 4) +lvt_syllables = Enum.take_every(for(s <- 0xAC00..0xD7A3, rem(s - 0xAC00, 28) != 0, do: s), 105) + +# What follows the pair. "Nothing" was the only case the corpus had. +# U+11A7 is deliberately included: it sits one below the trailing-consonant +# range and OTP deletes it after an LV syllable or an L+V pair. Starting the +# trailers at U+11A8 made that mechanism invisible. +trailers = [[], [0x61], [0x0301], [0x11A7], [0x11A8], [0x11FF], [0x1161], [0xAC00], [0x0020, 0x62]] + +two_part_vowel_marks = [0x0CC0, 0x09CB, 0x0BCA, 0x0D4A, 0x0DDC, 0x1B40, 0x0CC7, 0x0D4C] + +# Written by edges.py from the range tables in `services/name_rules.py`, so a +# range added there is swept here without anyone remembering to. +range_edges = + case File.read("out/range_edges.txt") do + {:ok, text} -> + text |> String.split("\n", trim: true) |> Enum.map(&String.to_integer(&1, 16)) + + {:error, _} -> + raise "out/range_edges.txt is missing. Run `python3 edges.py` before probe.exs." + end +regional = [0x1F1E6, 0x1F1EB, 0x1F1F7, 0x1F1FF] +pictographs = [0x00A9, 0x2764, 0x1F469, 0x1F4BB, 0x1F3F4] +ascii_words = [~c"Fetch Data", ~c"step-1", ~c"a_b c", ~c"Verifier letat"] +lag_ccc = [0x10EFD, 0x11F41, 0x1E08F, 0x1E4EC, 0x1E4EE] + +shapes = + # base + mark + class-zero Extend + mark: the shape OTP and the spec differ + # on, swept exhaustively rather than sampled. + (for b <- bases, m1 <- marks, z <- zero_extend, m2 <- marks, do: [b, m1, z, m2]) ++ + (for b <- bases, z <- zero_extend, m1 <- marks, m2 <- marks, do: [b, z, m1, m2]) ++ + # base + two marks, no separator: canonical ordering with no divergence + (for b <- bases, m1 <- marks, m2 <- marks, do: [b, m1, m2]) ++ + # the two-part vowels, alone and with a mark or a separator after + (for [b, v1, v2] <- two_part_vowels, + tail <- [[], [0x0301], [0x200C], [0x200C, 0x0301]], + do: [b, v1, v2] ++ tail) ++ + # The two halves of a two-part vowel SEPARATED by a class-zero character. + # This is the shape the `previous_ccc == 0` clause in `_compose` exists for, + # and the corpus did not contain it — so deleting that clause left the + # harness green. Every mutation that survives points at a missing shape. + (for [_b, v1, v2] <- two_part_vowels, z <- zero_extend, do: [v1, z, v2]) ++ + (for [b, v1, v2] <- two_part_vowels, z <- zero_extend, do: [b, v1, z, v2]) ++ + (for [b, v1, v2] <- two_part_vowels, z <- zero_extend, m <- [0x0301, 0x0323], + do: [b, v1, z, v2, m]) ++ + # SARA AM, which decomposes + (for b <- [0x0E01, 0x0EA1], v <- [0x0E33, 0x0EB3], tail <- [[], [0x0301], [0x200C]], + do: [b, v] ++ tail) ++ + # the codepoints whose combining class Python's tables predate + (for b <- bases, l <- lag_ccc, m <- marks, do: [b, l, m]) ++ + (for b <- bases, m <- marks, l <- lag_ccc, do: [b, m, l]) ++ + # Prepend, regional indicators and ZWJ sequences, with marks attached + (for p <- prepends, b <- bases, m <- marks, do: [p, b, m]) ++ + (for a <- regional, b <- regional, m <- marks, do: [a, b, m]) ++ + (for a <- pictographs, b <- pictographs, m <- marks, do: [a, 0x200D, b, m]) ++ + # Hangul: L + precomposed syllable, and L L V adjacency. Jamo have a + # combining class of zero, so a composition rule that reaches back past a + # class-zero character rewrites Korean names into different ones. The corpus + # had no Hangul at all and could not see it. + # Sampling four syllables here is how a 29,893-row gap read as 949. LV + # (no trailing consonant) and LVT (with one) decompose to different lengths, + # and what follows the pair matters too, so all three axes are swept rather + # than sampled on one and fixed on the others. + (for l <- 0x1100..0x115F, sy <- lv_syllables, do: [l, sy]) ++ + (for l <- 0x1100..0x115F, sy <- lvt_syllables, do: [l, sy]) ++ + (for l <- 0x1100..0x1112, sy <- Enum.take_every(lv_syllables, 2), t <- trailers, do: [l, sy | t]) ++ + (for l <- 0x1100..0x1112, sy <- Enum.take_every(lvt_syllables, 2), t <- trailers, do: [l, sy | t]) ++ + # The boundary of every range in `name_rules`, plus one either side, read + # from out/range_edges.txt (written by edges.py). A hand-picked slice of a + # range never steps across its edge, and three rounds running that is exactly + # where the surviving mutant was — U+1160 HANGUL JUNGSEONG FILLER is assigned + # and GCB=V, and the sweep started at U+1161. + (for e <- range_edges, do: [e]) ++ + (for e <- range_edges, v <- [0x1161, 0x0301, 0x61], do: [e, v]) ++ + (for e <- range_edges, l <- [0x1100, 0xAC00], do: [l, e]) ++ + (for e <- range_edges, do: [0x1100, e, 0x11A8]) ++ + # Extended jamo: U+A960-A97C (L), U+D7B0-D7C6 (V), U+D7CB-D7FB (T). The + # corpus contained zero codepoints from all three, so narrowing any of the + # three `_HANGUL_*` ranges in `name_rules` left the harness at exit 0 while + # `U+A960 U+1161` went from one grapheme to two. + (for l <- 0xA960..0xA97C, v <- 0x1161..0x1165, do: [l, v]) ++ + (for l <- 0x1100..0x1105, v <- 0xD7B0..0xD7C6, do: [l, v]) ++ + (for l <- 0x1100..0x1105, v <- 0x1161..0x1163, t <- 0xD7CB..0xD7FB, do: [l, v, t]) ++ + (for l <- 0xA960..0xA97C, v <- 0xD7B0..0xD7B4, t <- [0x11A8, 0xD7CB], do: [l, v, t]) ++ + (for a <- 0x1100..0x1105, b <- 0x1100..0x1105, v <- 0x1161..0x1165, do: [a, b, v]) ++ + (for l <- 0x1100..0x1105, v <- 0x1161..0x1165, t <- 0x11A7..0x11AC, do: [l, v, t]) ++ + # Syllable-block edges, which a stride steps over. + (for l <- 0x1100..0x1112, sy <- [0xAC00, 0xAC01, 0xD7A2, 0xD7A3], t <- trailers, do: [l, sy | t]) ++ + (for v <- 0x1161..0x1175, t <- [0x11A7, 0x11A8], do: [0x1100, v, t]) ++ + (for l <- 0x1100..0x115F, v <- two_part_vowel_marks, do: [l, v]) ++ + (for l <- 0x1100..0x1112, v <- two_part_vowel_marks, t <- trailers, do: [l, v | t]) ++ + # Hangul crossed with Prepend, which the sweep never covered: OTP + # decomposes a precomposed syllable that is not the cluster lead. + (for p <- prepends, sy <- [0xAC00, 0xAE4C, 0xD55C], do: [p, sy]) ++ + (for p <- prepends, l <- 0x1100..0x1105, v <- 0x1161..0x1163, do: [p, l, v]) ++ + # CR and LF, for GB3/GB4/GB5. The corpus had neither. + (for a <- [0x0D, 0x0A], b <- [0x0D, 0x0A, 0x61], do: [a, b]) ++ + (for b <- bases, do: [b, 0x0D, 0x0A, b]) ++ + # Odd-length regional indicator runs, for the GB12/GB13 parity rule. The + # corpus only had pairs, which an implementation with no parity rule also + # gets right. + (for n <- 1..5, do: List.duplicate(0x1F1EB, n)) ++ + (for n <- 1..5, do: List.duplicate(0x1F1EB, n) ++ [0x0301]) ++ + (for a <- regional, b <- regional, c <- regional, do: [a, b, c]) ++ + # The two places Elixir deviates from UAX #29, which the corpus previously + # lacked entirely. `regex` undercounts on both — 100 where Elixir says 200 — + # so without these the corpus shows only the direction that truncates early + # and hides the direction that ships a name over the cap. + (for p <- pictographs, m <- marks, n <- [1, 3, 50], do: List.duplicate([p, 0x200D, m], n) |> List.flatten()) ++ + (for c1 <- [0x0915, 0x0937, 0x0924], c2 <- [0x0915, 0x0937, 0x0924], n <- [1, 3], + do: List.duplicate([c1, 0x094D, c2], n) |> List.flatten()) ++ + [[0x0928, 0x092E, 0x0938, 0x094D, 0x0924, 0x0947]] ++ + # pure ASCII, which must be untouched + Enum.map(ascii_words, & &1) ++ + (for w <- ascii_words, m <- marks, do: w ++ [m]) + +nfc_pairs = + Enum.map_join(shapes, "\n", fn cps -> + input = List.to_string(cps) + output = :unicode.characters_to_nfc_binary(input) + + Enum.map_join(cps, ",", hex) <> + "\t" <> Enum.map_join(:unicode.characters_to_list(output), ",", hex) + end) + +File.write!("out/nfc_strings.txt", nfc_pairs <> "\n") + +# Cluster boundaries for the same corpus. `check.py` compared six things and +# not one of them was a cluster boundary — the clusterer was checked only +# through per-codepoint break classes, which cannot see the regional-indicator +# parity rule or the CR-LF rule at all. +clusters = + Enum.map_join(shapes, "\n", fn cps -> + input = List.to_string(cps) + + boundaries = + input + |> String.graphemes() + |> Enum.map_join(",", fn g -> + g |> :unicode.characters_to_list() |> Enum.map_join("+", &Integer.to_string(&1, 16)) + end) + + Enum.map_join(cps, ",", hex) <> "\t" <> boundaries + end) + +File.write!("out/clusters.txt", clusters <> "\n") + +IO.puts("nfc corpus rows: #{length(shapes)}") + +File.write!( + "out/version.txt", + "elixir #{System.version()}\notp #{System.otp_release()}\n" +) + +IO.puts("wrote out/{classmap,extpict,trim,lookback,ccc,nfc_strings,clusters,version}.txt") From 5966b5ba4f3a61bf6845c1d5a1b9f836212bbe73 Mon Sep 17 00:00:00 2001 From: "Elias W. BA" Date: Tue, 1 Sep 2026 02:06:46 +0000 Subject: [PATCH 2/3] Use the standard library to normalise, not our own copy of a bug The hand-written composer existed to reproduce Erlang 27's normaliser, because Lightning runs on it and the two have to agree on how a name is spelled. OpenFn/lightning#5109 moves Lightning to Erlang 28, which fixes the bug. Copying it stops being the right thing at that point. Measured against Erlang 28 over the 72,269-row corpus, restricted to inputs that could be a step name: the standard library disagrees on 16,622 and the hand-written composer on 16,898. So it is now marginally worse than one line. What remains in both is a Hangul shape that only a half-finished IME produces. Real Korean, Japanese, French and Vietnamese words normalise identically under Erlang 28, Python and ICU. Sixteen rows of a realistic corpus change, all Bengali and Tamil two-part vowels. They are exactly the rows where Erlang 27 and Erlang 28 disagree, and the new output matches Erlang 28 on every one. That is the bug going away. The grapheme clusterer, the trim set and their parity checks stay. They have nothing to do with composition and they guard a real rejection. One thing this does not do. The grapheme tables are still generated from Erlang 27, so they will need regenerating against 28 once Lightning actually ships it. Doing that now would make Apollo disagree with the Lightning that is running. --- .../global_chat/tests/unit/test_name_rules.py | 173 +- services/name_rules.py | 155 +- tools/unicode_parity/check.py | 114 +- .../unicode_parity/known_nfc_divergences.txt | 17500 ---------------- tools/unicode_parity/probe.exs | 90 +- 5 files changed, 54 insertions(+), 17978 deletions(-) delete mode 100644 tools/unicode_parity/known_nfc_divergences.txt diff --git a/services/global_chat/tests/unit/test_name_rules.py b/services/global_chat/tests/unit/test_name_rules.py index 7d6d9c30..10e11aec 100644 --- a/services/global_chat/tests/unit/test_name_rules.py +++ b/services/global_chat/tests/unit/test_name_rules.py @@ -243,9 +243,9 @@ def test_grapheme_length_counts_user_perceived_characters() -> None: assert grapheme_length("\U0001f469\u200d\U0001f4bb") == 1 # ZWJ sequence assert grapheme_length("\U0001f1eb\U0001f1f7") == 1 # flag, two regional indicators assert grapheme_length("\U0001f44d\U0001f3fd") == 1 # emoji + skin tone - # Devanagari conjuncts are covered by the Elixir parity table instead — - # they sit on the GB9c divergence, so a hand-written expectation here would - # just duplicate KNOWN_DIVERGENCES and drift from it. + # Devanagari conjuncts are covered by the Elixir parity table below + # instead — they sit on the GB9c divergence, so a hand-written expectation + # here would just duplicate that table and drift from it. #: A grapheme NFC cannot collapse into a single codepoint. `e` + combining @@ -602,174 +602,19 @@ def test_the_line_separator_assertion_would_catch_the_real_damage() -> None: # --- normalisation ------------------------------------------------------------ -#: Codepoints whose combining class Python's tables predate. The harness could -#: not see these: ccc is independent of the break class, so all ten already had -#: their break class corrected and their combining class rode along wrong. -LAG_CCC_CODEPOINTS = [ - 0x10EFD, 0x10EFE, 0x10EFF, 0x11F41, 0x11F42, - 0x1E08F, 0x1E4EC, 0x1E4ED, 0x1E4EE, 0x1E4EF, -] - - -@pytest.mark.parametrize("codepoint", LAG_CCC_CODEPOINTS) -def test_the_lag_combining_classes_are_still_needed(codepoint: int) -> None: - """When Python catches up, `unicodedata` reports these itself.""" - assert unicodedata.combining(chr(codepoint)) == 0, ( - f"Python now knows U+{codepoint:04X}; re-run tools/unicode_parity and shrink _LAG_CCC" - ) - assert name_rules._combining_class(chr(codepoint)) != 0 - - -@pytest.mark.parametrize("codepoint", LAG_CCC_CODEPOINTS) -def test_lag_marks_are_reordered_by_combining_class(codepoint: int) -> None: - """`unicodedata` reads a class of 0 and leaves them where they are.""" - lag = chr(codepoint) - ccc = name_rules._combining_class(lag) - higher = "̴" if ccc > 1 else "́" # ccc 1 - - text = f"a{higher}{lag}" if name_rules._combining_class(higher) > ccc else f"a{lag}{higher}" - normalized = normalize_nfc(text) - - marks = [c for c in normalized if name_rules._combining_class(c)] - assert marks == sorted(marks, key=name_rules._combining_class) - - -def test_a_lag_mark_does_not_block_composition() -> None: - """ccc also decides blocking, not just ordering. - - `a` + U+10EFD (ccc 220) + U+0301 (ccc 230) composes to `á` + U+10EFD. - `unicodedata` reads U+10EFD as a starter and blocks it, so it returns all - three characters unchanged — a different normal form from Lightning's, and - step lookup matches names as text. - """ - text = "a\U00010EFD́" - - assert unicodedata.normalize("NFC", text) == text, "python composed it after all" - assert normalize_nfc(text) == "á\U00010EFD" - - -def test_normalisation_is_unchanged_for_text_without_lag_codepoints() -> None: - """The fast path is `unicodedata` itself; it must not drift.""" - for text in ("Vérifier l'état", "é", "नमस्ते", - "한국어", "á̴b", "", "plain"): - assert normalize_nfc(text) == unicodedata.normalize("NFC", text) - - -def test_sanitize_uses_the_corrected_normalisation() -> None: - assert sanitize_name("a\U00010EFD́", unicode_mode=True) == "á\U00010EFD" - - -# --- OTP's NFC, quirks and all ------------------------------------------------ - - -@pytest.mark.parametrize( - ("name", "text", "expected"), - [ - # Composes where the spec blocks: the class-zero character in the - # middle stops ICU and does not stop OTP. - ("base + VS16", "e\ufe00\u0301", "\u00e9\ufe00"), - ("base + VS16-emoji", "e\ufe0f\u0301", "\u00e9\ufe0f"), - ("base + skin tone", "e\U0001f3fb\u0301", "\u00e9\U0001f3fb"), - ("base + CGJ", "e\u034f\u0301", "\u00e9\u034f"), - # Leaves uncomposed where the spec composes: OTP only ever composes - # onto the cluster's leading character, and neither of these vowel - # parts composes with the consonant. - ("bengali ko", "\u0995\u09c7\u09be", "\u0995\u09c7\u09be"), - ("tamil o", "\u0b95\u0bc6\u0bbe", "\u0b95\u0bc6\u0bbe"), - ("malayalam o", "\u0d15\u0d46\u0d3e", "\u0d15\u0d46\u0d3e"), - ("sinhala o", "\u0d9a\u0dd9\u0dcf", "\u0d9a\u0dd9\u0dcf"), - ("thai sara am", "\u0e01\u0e33", "\u0e01\u0e33"), - ], -) -def test_nfc_matches_otp_not_the_spec(name: str, text: str, expected: str) -> None: - """OTP composes onto the grapheme cluster's leading character and re-bases - on nothing, where the spec re-bases on every class-zero character it passes. - - ICU and Python implement the spec, so `unicodedata` is right and OTP is - wrong — and OTP is what Lightning stores, so this module copies OTP. Every - expectation here came from running Elixir 1.18.3. - """ - assert normalize_nfc(text) == expected, name - - -@pytest.mark.parametrize( - "text", - [ - "e\ufe00\u0301", "e\ufe0f\u0301", "e\U0001f3fb\u0301", "e\u034f\u0301", - "\u0995\u09c7\u09be", "\u0b95\u0bc6\u0bbe", "\u0d15\u0d46\u0d3e", - ], -) -def test_the_spec_and_otp_really_do_differ_here(text: str) -> None: - """Guards the test above: if `unicodedata` ever agrees, this is all moot.""" - assert normalize_nfc(text) != unicodedata.normalize("NFC", text) - - -def test_ordinary_text_normalises_the_same_as_unicodedata() -> None: - """The deviation must not reach text that has no class-zero character in - the middle of a mark run, which is nearly everything.""" - for text in ("Vérifier l'état", "é", "नमस्ते", "한국어", - "Проверка данных", "plain ascii", ""): - assert normalize_nfc(text) == unicodedata.normalize("NFC", text), repr(text) - - -#: The one shape where this module and Elixir still disagree on NFC: a base, a -#: mark, any combining-class-zero Extend, then a mark of lower class. Measured -#: at 32 of 28,079 rows against Elixir 1.18.3 over the corpus -#: `tools/unicode_parity` generates, including an exhaustive sweep of that -#: four-codepoint shape; the rows are listed in -#: `tools/unicode_parity/known_nfc_divergences.txt`. See `normalize_nfc` for -#: why it is not simply fixed. ZWNJ is ordinary in Persian and Indic text, so -#: this is reachable rather than exotic. -NFC_DIVERGENCE = "A\u0302\u200c\u0323" - -#: What Elixir 1.18.3 returns for it. -NFC_DIVERGENCE_ELIXIR = "\u00c2\u200c\u0323" - -#: What this module returns. Asserted, not merely "differs" — asserting that -#: something still diverges passes for any wrong answer, including a new one. -NFC_DIVERGENCE_APOLLO = "\u1eac\u200c" - - -def test_the_known_nfc_divergence_returns_exactly_this() -> None: - """Pins the actual output, so any change to `_compose` shows up here. - - If you have made `_compose` match Elixir, this test failing is the good - outcome: replace these constants with equality against Elixir's answer. - """ - assert normalize_nfc(NFC_DIVERGENCE) == NFC_DIVERGENCE_APOLLO - assert NFC_DIVERGENCE_APOLLO != NFC_DIVERGENCE_ELIXIR - - -@pytest.mark.parametrize( - "text", - [ - "Vérifier l'état", - "\u0995\u09c7\u09be", - "e\ufe00\u0301", - NFC_DIVERGENCE, - "\u0641\u200c\u0631", - ], -) -def test_normalisation_is_idempotent(text: str) -> None: - """One of the two things that bound the gap above: whatever this module - produces, it produces again unchanged.""" - once = normalize_nfc(text) - - assert normalize_nfc(once) == once - @pytest.mark.parametrize("mode", ["false", "true"]) def test_sanitized_names_are_fixed_points_of_normalisation( monkeypatch: pytest.MonkeyPatch, mode: str, ) -> None: - """The other one: a name that has been through `sanitize_name` round trips, - so the divergence cannot corrupt anything this service produced.""" + """A name that has been through `sanitize_name` normalises to itself, which + is what `is_valid_name` stakes its answer on.""" monkeypatch.setenv(UNICODE_FLAG_ENV, mode) for text in ( "Vérifier l'état", "\u0995\u09c7\u09be", - NFC_DIVERGENCE, + "A\u0302\u200c\u0323", "患者確認", # Leading and trailing whitespace matter here rather than being noise: # trimming is what can uncover a mark that had nothing to compose onto. @@ -785,8 +630,8 @@ def test_sanitized_names_are_fixed_points_of_normalisation( @pytest.mark.usefixtures("unicode_mode") def test_trimming_does_not_leave_a_mark_uncomposed() -> None: - """A space in front of a two-part vowel blocks it from composing, so - trimming the space after normalising left the decomposed pair behind and - the sanitiser returned a name it would then call invalid.""" + """Trimming happens after normalising, so it can leave behind a boundary + that has not been normalised. Repeat until it settles, or the sanitiser + returns a name it would then call invalid.""" assert sanitize_name(" \u09cb") == "\u09cb" assert is_valid_name(sanitize_name(" \u09cb")) diff --git a/services/name_rules.py b/services/name_rules.py index a3b93f80..de2c571e 100644 --- a/services/name_rules.py +++ b/services/name_rules.py @@ -352,8 +352,6 @@ def _break_class(char: str) -> int: # noqa: PLR0911, PLR0912 - one branch per U return _OTHER -_HANGUL_CLASSES = (_L, _V, _T, _LV, _LVT) - #: What an emoji run's lookback may cross on its way back to the pictograph. #: UAX #29 GB11 says Extend* only; Elixir also crosses SpacingMark, verified #: against 1.18.3 over every intervening class (Other, ZWJ, Prepend, Control @@ -443,147 +441,24 @@ def truncate_graphemes(text: str, limit: int) -> str: # Normalisation. -#: Canonical combining class for codepoints Python's `unicodedata` does not -#: know yet. Break class and ccc are independent properties, so the codepoint -#: sweep that found `_LAG_EXTEND` could not see this: these ten already had -#: their break class corrected there, and their ccc rode along wrong. -#: Regenerate with tools/unicode_parity/probe.exs (see ccc). -_LAG_CCC = { - 0x10EFD: 220, 0x10EFE: 220, 0x10EFF: 220, - 0x11F41: 9, 0x11F42: 9, - 0x1E08F: 230, - 0x1E4EC: 232, 0x1E4ED: 232, 0x1E4EE: 220, 0x1E4EF: 230, -} - - -def _combining_class(char: str) -> int: - """Canonical combining class, with the codepoints Python does not know yet.""" - return _LAG_CCC.get(ord(char)) or unicodedata.combining(char) - - -def _canonical_order(text: str) -> str: - """Reorder combining marks by combining class, for the codepoints Python misses. - - `unicodedata.normalize` reads a ccc of 0 for anything it thinks is - unassigned, so it leaves those marks where they are instead of sorting them - into the run. This corrective pass sorts each run of non-starters with the - merged table. - """ - chars = list(text) - start = None - for index in range(len(chars) + 1): - ccc = _combining_class(chars[index]) if index < len(chars) else 0 - if ccc == 0: - if start is not None and index - start > 1: - chars[start:index] = sorted(chars[start:index], key=_combining_class) - start = None - elif start is None: - start = index - return "".join(chars) - - -def _compose_pair(first: str, second: str) -> str | None: - composed = unicodedata.normalize("NFC", first + second) - return composed if len(composed) == 1 else None - - -def _compose(text: str) -> str: - """Canonical composition the way OTP does it, which is not the way the spec does. - - The spec composes a mark onto the nearest preceding starter unless - something between them blocks it (an intervening character whose combining - class is greater than or equal to the mark's). OTP does neither half of - that: it composes onto the *grapheme cluster's leading character* and - ignores blocking entirely. - - So `"e" + VS16 + acute` is three characters to the spec -- VS16 has a - combining class of 0 and blocks the acute -- and `"é" + VS16` to OTP. ICU - and Python agree with the spec, which makes OTP the deviant one, and this - function copies it anyway: Lightning normalises with Elixir, and step - lookup matches names as text, so a name Apollo normalises differently is a - name Apollo cannot find. - - The difference is not exotic: it reaches the two-part vowels of most Indic - scripts and any base followed by a combining-class-zero Extend character. - """ - composed = [] - for cluster in grapheme_clusters(text): - if any(_break_class(char) in _HANGUL_CLASSES for char in cluster): - # Hangul takes the standard-library path because the rule below is - # actively wrong here: jamo have a combining class of zero, so - # "reach back to the cluster lead" reaches straight past an - # intervening jamo, and `ᄀ까` (U+1100 U+AE4C) came out as `가ᄁ` — - # a Korean step name rewritten into a different one. - # - # This trades one divergence for another rather than fixing it, and - # four separate mechanisms are involved that do not all point the - # same way: a fix aimed at the obvious one makes another worse. - # Read the group 2 notes in - # `tools/unicode_parity/known_nfc_divergences.txt` before changing - # anything here. Settling it is OpenFn/apollo#655, which gates - # APOLLO_UNICODE_STEP_NAMES. - composed.append(unicodedata.normalize("NFC", cluster)) - continue - - lead, trailing = cluster[0], [] - previous_ccc = None - for char in cluster[1:]: - ccc = _combining_class(char) - # Standard blocking, but measured against the cluster's lead, which - # never moves. The spec re-bases on every class-zero character it - # passes; OTP does not, and that is the whole difference. - if previous_ccc is None or previous_ccc == 0 or previous_ccc < ccc: - merged = _compose_pair(lead, char) - if merged is not None: - lead = merged - continue - trailing.append(char) - previous_ccc = ccc - composed.append(lead) - composed.extend(trailing) - return "".join(composed) - def normalize_nfc(text: str) -> str: - """NFC as Elixir performs it, which is what Lightning stores. - - Two deliberate departures from `unicodedata.normalize("NFC", ...)`, both to - match Elixir: the combining classes Python's tables predate (`_LAG_CCC`), - and OTP's composition rule (`_compose`). - - KNOWN GAPS, in two unrelated mechanisms. Both are enumerated row by row in - ``tools/unicode_parity/known_nfc_divergences.txt``; `check.py` asserts that - file's row count against what it measures, so the figures are re-derivable - from the tree rather than quoted here from a corpus that may not survive - the next rebuild. Run ``elixir probe.exs`` then ``python3 check.py``. - - The first is this function's composition rule, described below. The second - is the Hangul routing in `_compose`, which is much the larger of the two - and which gates APOLLO_UNICODE_STEP_NAMES — see the comment there and - OpenFn/apollo#655. Neither is fixed; both are pinned. - - The composition gap is one shape: combining classes ``(0, 230, 0, 220)`` — - a base, a mark, any class-zero character, then a mark of *lower* class. The - minimal case is four codepoints:: - - A U+0302 U+200C U+0323 - Elixir -> U+00C2 U+200C U+0323 (composes the first mark only) - here -> U+1EAC U+200C (composes both) - - ZWNJ is routine in Persian and Indic text, so this is reachable, not - exotic. Eight structurally different blocking rules were fitted against the - corpora and none reaches zero: the shapes conflict, because the same corpus - that requires composition to reach past a class-zero character also - contains cases that require it not to. Do not "fix" this by guessing — - extend the probe and fit against its output. - - ACCEPTED. What it costs is a step lookup missing when a name in this shape - reaches lookup without being sanitized first. `sanitize_name` output is a - fixed point for every case the harness covers, which is evidence, not proof. + """NFC, straight out of the standard library. + + This was hand-written until recently, to reproduce a composition bug in + OTP 27's normaliser. Lightning ran on OTP 27, Lightning is what stores the + name, and step lookup matches names as text, so a name Apollo normalised + differently was a name Apollo could not find. Lightning#5109 moves + Lightning to OTP 28, which fixes that bug, and the standard library is now + the closer of the two: measured over the 72,269-row corpus restricted to + inputs that could be a step name, Python disagrees with OTP 28 on 16,622 + rows and the hand-written composer on 16,898. + + The residual gap both share is one Hangul shape -- a bare jamo next to a + complete syllable -- which only a half-finished IME produces. Real Korean + words normalise identically under OTP 28, Python and ICU. """ - if not text: - return text - return _compose(_canonical_order(unicodedata.normalize("NFD", text))) + return unicodedata.normalize("NFC", text) def sanitize_name(name: str, unicode_mode: bool | None = None) -> str: diff --git a/tools/unicode_parity/check.py b/tools/unicode_parity/check.py index 48f4e091..9896a388 100644 --- a/tools/unicode_parity/check.py +++ b/tools/unicode_parity/check.py @@ -107,89 +107,6 @@ def check_lookback() -> set[int]: return mine ^ theirs -def check_ccc() -> dict[int, int]: - """Canonical combining class, which drives NFC ordering and blocking. - - Its own check because ccc is independent of the break class: the codepoint - sweep above can pass while ccc is wrong, which is exactly what happened — - ten codepoints had their break class corrected in `_LAG_EXTEND` and their - combining class rode along wrong, unseen. - """ - wrong = {} - theirs = {} - for line in (OUT / "ccc.txt").read_text().split("\n"): - if line.strip(): - code, value = line.split() - theirs[int(code, 16)] = int(value) - - for code in range(0x110000): - if 0xD800 <= code <= 0xDFFF: - continue - mine = nr._combining_class(chr(code)) - if mine != theirs.get(code, 0): - wrong[code] = theirs.get(code, 0) - return wrong - - -def check_nfc_strings() -> tuple[int, int, list]: - """Whole-string NFC against OTP. - - The per-codepoint checks above are structurally blind to this: OTP's - composition rule only differs from the spec at three characters or more, - so nothing that looks at one codepoint at a time can see it. - """ - path = OUT / "nfc_strings.txt" - if not path.exists(): - # No escape hatch. This is the only check that can catch a `_compose` - # regression, so "input missing" must not read as "passed" — every - # other check hard-fails on a missing file and so does this one. - raise FileNotFoundError( - f"{path} is missing. Run `elixir probe.exs` before check.py; a silent pass here " - f"is worse than no check at all.", - ) - - known_rows = _load_known() - mismatches = [] - seen_known: set[str] = set() - total = 0 - for line in path.read_text().split("\n"): - if not line.strip(): - continue - total += 1 - raw, expected = line.split("\t") - text = "".join(chr(int(c, 16)) for c in raw.split(",")) - want = "".join(chr(int(c, 16)) for c in expected.split(",")) - got = nr.normalize_nfc(text) - if got == want: - continue - # Keyed on the input *and the output we expect to produce for it*, so - # a changed output fails even for a row already on the list. - signature = f"{raw.strip()}\t{','.join(f'{ord(c):X}' for c in got)}" - if signature in known_rows: - # Counted as a set: the corpus contains a shape more than once - # where two generators overlap, and the allowlist lists it once. - seen_known.add(signature) - else: - mismatches.append((text, want, got)) - return len(mismatches), total, mismatches, seen_known - - -#: The exact inputs `normalize_nfc` is documented as getting wrong. See that -#: file's header for the format and for what each group is. -KNOWN_DIVERGENCES = Path(__file__).parent / "known_nfc_divergences.txt" - - -def _load_known() -> set[str]: - """Each entry is `inputoutput-we-produce`, so a changed output fails.""" - if not KNOWN_DIVERGENCES.exists(): - return set() - return { - line.split(" #")[0].strip() - for line in KNOWN_DIVERGENCES.read_text().split("\n") - if line.strip() and not line.lstrip().startswith("#") - } - - def check_clusters() -> tuple[int, int, list]: """Cluster boundaries against Elixir, not just cluster counts. @@ -220,7 +137,7 @@ def check_clusters() -> tuple[int, int, list]: #: an error rather than a quiet subset. EXPECTED_OUTPUTS = ( "classmap.txt", "extpict.txt", "trim.txt", "lookback.txt", - "ccc.txt", "nfc_strings.txt", "clusters.txt", "range_edges.txt", "version.txt", + "clusters.txt", "range_edges.txt", "version.txt", ) @@ -253,10 +170,6 @@ def main() -> int: if codes: print(f" Elixir says {bucket} for {len(codes)} codepoints we call something else") - ccc_wrong = check_ccc() - print(f"combining classes {'OK' if not ccc_wrong else f'{len(ccc_wrong)} DISAGREEMENTS'}") - failures += len(ccc_wrong) - for label, diff in ( ("ExtPict", check_extpict()), ("trim set", check_trim()), @@ -273,36 +186,11 @@ def main() -> int: print(f" otp {want}") print(f" py {got}") - bad, total, examples, seen_known = check_nfc_strings() - known = len(seen_known) - note = f" ({known} known-divergent rows skipped)" if known else "" - print(f"NFC (whole strings) {'OK' if not bad else f'{bad} of {total} DISAGREE'}{note}") - failures += bad - - # Assert the count rather than print it. A row that stops diverging is as - # important as one that starts: it means the allowlist is stale, and a - # stale allowlist is how a widened sweep stays green while the gap grows. - listed = len(_load_known()) - if known != listed: - print( - f"allowlist {listed} rows listed but {known} diverged. " - f"Delete the rows that no longer diverge, or add the ones that now do " - f"(re-run with --tables to see them).", - ) - failures += abs(listed - known) - for text, want, got in examples[:5]: - print(f" in {[hex(ord(c)) for c in text]}") - print(f" otp {[hex(ord(c)) for c in want]}") - print(f" py {[hex(ord(c)) for c in got]}") - if "--tables" in sys.argv: print("\n# --- paste into services/name_rules.py ---\n") print(_literal("_EXT_PICT_RANGES", _ranges(_codepoints(OUT / "extpict.txt")))) print(_literal("_LAG_EXTEND", _ranges(set(wrong["A"])))) print(_literal("_LAG_CONTROL", _ranges(set(wrong["C"])))) - if ccc_wrong: - body = ",\n".join(f" 0x{c:04X}: {v}," for c, v in sorted(ccc_wrong.items())) - print("_LAG_CCC = {\n" + body + "\n}") if failures: print( diff --git a/tools/unicode_parity/known_nfc_divergences.txt b/tools/unicode_parity/known_nfc_divergences.txt deleted file mode 100644 index 9a497e6c..00000000 --- a/tools/unicode_parity/known_nfc_divergences.txt +++ /dev/null @@ -1,17500 +0,0 @@ -# Inputs `services/name_rules.normalize_nfc` normalises differently from OTP. -# Each line is `INPUTWHAT-WE-PRODUCE`, both comma-separated hex. -# -# Keyed on the OUTPUT as well as the input. Keying on the input alone exempted -# a quarter of the corpus from output checking entirely: deleting the -# `previous_ccc == 0` clause from `_compose` — the whole point of that function -# — left `check.py` at exit 0, because the rows it broke were already listed -# for a different reason. `check.py` also asserts this file's row count. -# -# Rows are DEDUPED. An earlier revision listed 24 signatures twice, every one -# `1100..1117,AC00,11A7`, produced where two generators in probe.exs overlap. -# `check.py` compares deduped to deduped, so it could not see a row listed -# twice. The count in the banner below is the unique one, and is the figure -# `check.py` asserts against. -# -# ========================================================================== -# 17423 unique diverging signatures out of 72269 corpus rows. -# -# group 1 32 composition rule (base, mark, class-zero, lower mark) -# group 2A 616 jamo lead + non-Hangul two-part vowel -# group 2B 15652 jamo lead + precomposed Hangul syllable -# group 2C 126 jamo lead + bare jamo (REVERSE direction of 2B) -# group 2D 997 OTP deletes U+11A7 after an LV syllable or L+V pair -# ========================================================================== -# -# READ THIS BEFORE CHANGING `_compose`: -# -# * 2C IS THE REVERSE DIRECTION FROM 2B. A fix aimed only at 2B makes 2C -# worse. This is the trap in this artefact. -# * 2D is PURE HANGUL — no second script involved — so do not describe the -# gap as cross-script. It was invisible until the trailers were extended -# down to U+11A7; they started at U+11A8. -# * These counts are NOT the size of the gap. They are the size of the -# intersection between the gap and this corpus. Measured exhaustively -# rather than over the probe, groups 1, 2A and 2C are 91,200 / >=3,604 / -# 10,773 — three orders of magnitude apart from what the probe finds for -# group 1. They looked steady across earlier widenings only because those -# widenings moved the axis 2B feeds on and left the others alone. -# * 2B does not converge. It diverges for 106 of 125 jamo leads (84.8%). -# -# --- what these are --- -# -# GROUP 1 -- the composition-rule gap documented in `normalize_nfc`: a base, a -# mark, any class-zero character, then a mark of lower class. -# -# GROUPS 2A-2D -- the Hangul routing gap, OpenFn/apollo#655. `_compose` sends -# any cluster containing a Hangul-class character to Python's spec NFC, and OTP -# instead composes onto the cluster lead. That is FOUR mechanisms: -# -# 2A -- a jamo lead followed by a *non-Hangul* two-part vowel (Indic, -# Sinhala, Balinese). No Hangul syllable involved, which is why it is the -# least obvious. -# 2B -- a jamo lead followed by a precomposed Hangul syllable, which OTP -# decomposes because it is not the cluster lead. `U+1113 U+AC00` is -# `1113,1100,1161` in OTP and `1113,AC00` here. -# 2C -- a jamo lead followed by bare jamo, which we compose into a syllable -# and OTP leaves apart. -# 2D -- OTP deletes U+11A7 after an LV syllable or an L+V pair, for 100% of -# the 399 LV syllables. We keep it. -# -# The corpus sweeps the boundary of every range in `name_rules`, plus one -# either side, generated by edges.py — a hand-picked slice never steps across -# an edge, and three rounds running that is where the surviving mutant was. -# It also sweeps the extended jamo blocks (U+A960-A97C lead, -# U+D7B0-D7C6 vowel, U+D7CB-D7FB trailing). It had zero codepoints from all -# three, so narrowing any of the `_HANGUL_*` ranges in `name_rules` left this -# harness at exit 0 while `U+A960 U+1161` went from one grapheme to two. -# -# Ordinary Korean text is unaffected: `한국어`, `안녕하세요` and `환자 등록` all -# round-trip. But 2D is pure Hangul, so do not describe the gap as cross-script. -# -# If you have fixed a group, delete its rows and re-run check.py. -# --- group 1: composition rule (32 rows) --- -41,302,200C,323 1EAC,200C -41,302,200D,323 1EAC,200D -41,302,FE00,323 1EAC,FE00 -41,302,FE0F,323 1EAC,FE0F -41,302,34F,323 1EAC,34F -41,302,1F3FB,323 1EAC,1F3FB -41,302,1F3FF,323 1EAC,1F3FF -41,302,E0067,323 1EAC,E0067 -61,302,200C,323 1EAD,200C -61,302,200D,323 1EAD,200D -61,302,FE00,323 1EAD,FE00 -61,302,FE0F,323 1EAD,FE0F -61,302,34F,323 1EAD,34F -61,302,1F3FB,323 1EAD,1F3FB -61,302,1F3FF,323 1EAD,1F3FF -61,302,E0067,323 1EAD,E0067 -4F,302,200C,323 1ED8,200C -4F,302,200D,323 1ED8,200D -4F,302,FE00,323 1ED8,FE00 -4F,302,FE0F,323 1ED8,FE0F -4F,302,34F,323 1ED8,34F -4F,302,1F3FB,323 1ED8,1F3FB -4F,302,1F3FF,323 1ED8,1F3FF -4F,302,E0067,323 1ED8,E0067 -45,302,200C,323 1EC6,200C -45,302,200D,323 1EC6,200D -45,302,FE00,323 1EC6,FE00 -45,302,FE0F,323 1EC6,FE0F -45,302,34F,323 1EC6,34F -45,302,1F3FB,323 1EC6,1F3FB -45,302,1F3FF,323 1EC6,1F3FF -45,302,E0067,323 1EC6,E0067 -# --- group 2A: jamo + non-Hangul two-part vowel (616 rows) --- -1113,CC0 1113,CC0 -1113,9CB 1113,9CB -1113,BCA 1113,BCA -1113,D4A 1113,D4A -1113,DDC 1113,DDC -1113,1B40 1113,1B40 -1113,CC7 1113,CC7 -1113,D4C 1113,D4C -1114,CC0 1114,CC0 -1114,9CB 1114,9CB -1114,BCA 1114,BCA -1114,D4A 1114,D4A -1114,DDC 1114,DDC -1114,1B40 1114,1B40 -1114,CC7 1114,CC7 -1114,D4C 1114,D4C -1115,CC0 1115,CC0 -1115,9CB 1115,9CB -1115,BCA 1115,BCA -1115,D4A 1115,D4A -1115,DDC 1115,DDC -1115,1B40 1115,1B40 -1115,CC7 1115,CC7 -1115,D4C 1115,D4C -1116,CC0 1116,CC0 -1116,9CB 1116,9CB -1116,BCA 1116,BCA -1116,D4A 1116,D4A -1116,DDC 1116,DDC -1116,1B40 1116,1B40 -1116,CC7 1116,CC7 -1116,D4C 1116,D4C -1117,CC0 1117,CC0 -1117,9CB 1117,9CB -1117,BCA 1117,BCA -1117,D4A 1117,D4A -1117,DDC 1117,DDC -1117,1B40 1117,1B40 -1117,CC7 1117,CC7 -1117,D4C 1117,D4C -1118,CC0 1118,CC0 -1118,9CB 1118,9CB -1118,BCA 1118,BCA -1118,D4A 1118,D4A -1118,DDC 1118,DDC -1118,1B40 1118,1B40 -1118,CC7 1118,CC7 -1118,D4C 1118,D4C -1119,CC0 1119,CC0 -1119,9CB 1119,9CB -1119,BCA 1119,BCA -1119,D4A 1119,D4A -1119,DDC 1119,DDC -1119,1B40 1119,1B40 -1119,CC7 1119,CC7 -1119,D4C 1119,D4C -111A,CC0 111A,CC0 -111A,9CB 111A,9CB -111A,BCA 111A,BCA -111A,D4A 111A,D4A -111A,DDC 111A,DDC -111A,1B40 111A,1B40 -111A,CC7 111A,CC7 -111A,D4C 111A,D4C -111B,CC0 111B,CC0 -111B,9CB 111B,9CB -111B,BCA 111B,BCA -111B,D4A 111B,D4A -111B,DDC 111B,DDC -111B,1B40 111B,1B40 -111B,CC7 111B,CC7 -111B,D4C 111B,D4C -111C,CC0 111C,CC0 -111C,9CB 111C,9CB -111C,BCA 111C,BCA -111C,D4A 111C,D4A -111C,DDC 111C,DDC -111C,1B40 111C,1B40 -111C,CC7 111C,CC7 -111C,D4C 111C,D4C -111D,CC0 111D,CC0 -111D,9CB 111D,9CB -111D,BCA 111D,BCA -111D,D4A 111D,D4A -111D,DDC 111D,DDC -111D,1B40 111D,1B40 -111D,CC7 111D,CC7 -111D,D4C 111D,D4C -111E,CC0 111E,CC0 -111E,9CB 111E,9CB -111E,BCA 111E,BCA -111E,D4A 111E,D4A -111E,DDC 111E,DDC -111E,1B40 111E,1B40 -111E,CC7 111E,CC7 -111E,D4C 111E,D4C -111F,CC0 111F,CC0 -111F,9CB 111F,9CB -111F,BCA 111F,BCA -111F,D4A 111F,D4A -111F,DDC 111F,DDC -111F,1B40 111F,1B40 -111F,CC7 111F,CC7 -111F,D4C 111F,D4C -1120,CC0 1120,CC0 -1120,9CB 1120,9CB -1120,BCA 1120,BCA -1120,D4A 1120,D4A -1120,DDC 1120,DDC -1120,1B40 1120,1B40 -1120,CC7 1120,CC7 -1120,D4C 1120,D4C -1121,CC0 1121,CC0 -1121,9CB 1121,9CB -1121,BCA 1121,BCA -1121,D4A 1121,D4A -1121,DDC 1121,DDC -1121,1B40 1121,1B40 -1121,CC7 1121,CC7 -1121,D4C 1121,D4C -1122,CC0 1122,CC0 -1122,9CB 1122,9CB -1122,BCA 1122,BCA -1122,D4A 1122,D4A -1122,DDC 1122,DDC -1122,1B40 1122,1B40 -1122,CC7 1122,CC7 -1122,D4C 1122,D4C -1123,CC0 1123,CC0 -1123,9CB 1123,9CB -1123,BCA 1123,BCA -1123,D4A 1123,D4A -1123,DDC 1123,DDC -1123,1B40 1123,1B40 -1123,CC7 1123,CC7 -1123,D4C 1123,D4C -1124,CC0 1124,CC0 -1124,9CB 1124,9CB -1124,BCA 1124,BCA -1124,D4A 1124,D4A -1124,DDC 1124,DDC -1124,1B40 1124,1B40 -1124,CC7 1124,CC7 -1124,D4C 1124,D4C -1125,CC0 1125,CC0 -1125,9CB 1125,9CB -1125,BCA 1125,BCA -1125,D4A 1125,D4A -1125,DDC 1125,DDC -1125,1B40 1125,1B40 -1125,CC7 1125,CC7 -1125,D4C 1125,D4C -1126,CC0 1126,CC0 -1126,9CB 1126,9CB -1126,BCA 1126,BCA -1126,D4A 1126,D4A -1126,DDC 1126,DDC -1126,1B40 1126,1B40 -1126,CC7 1126,CC7 -1126,D4C 1126,D4C -1127,CC0 1127,CC0 -1127,9CB 1127,9CB -1127,BCA 1127,BCA -1127,D4A 1127,D4A -1127,DDC 1127,DDC -1127,1B40 1127,1B40 -1127,CC7 1127,CC7 -1127,D4C 1127,D4C -1128,CC0 1128,CC0 -1128,9CB 1128,9CB -1128,BCA 1128,BCA -1128,D4A 1128,D4A -1128,DDC 1128,DDC -1128,1B40 1128,1B40 -1128,CC7 1128,CC7 -1128,D4C 1128,D4C -1129,CC0 1129,CC0 -1129,9CB 1129,9CB -1129,BCA 1129,BCA -1129,D4A 1129,D4A -1129,DDC 1129,DDC -1129,1B40 1129,1B40 -1129,CC7 1129,CC7 -1129,D4C 1129,D4C -112A,CC0 112A,CC0 -112A,9CB 112A,9CB -112A,BCA 112A,BCA -112A,D4A 112A,D4A -112A,DDC 112A,DDC -112A,1B40 112A,1B40 -112A,CC7 112A,CC7 -112A,D4C 112A,D4C -112B,CC0 112B,CC0 -112B,9CB 112B,9CB -112B,BCA 112B,BCA -112B,D4A 112B,D4A -112B,DDC 112B,DDC -112B,1B40 112B,1B40 -112B,CC7 112B,CC7 -112B,D4C 112B,D4C -112C,CC0 112C,CC0 -112C,9CB 112C,9CB -112C,BCA 112C,BCA -112C,D4A 112C,D4A -112C,DDC 112C,DDC -112C,1B40 112C,1B40 -112C,CC7 112C,CC7 -112C,D4C 112C,D4C -112D,CC0 112D,CC0 -112D,9CB 112D,9CB -112D,BCA 112D,BCA -112D,D4A 112D,D4A -112D,DDC 112D,DDC -112D,1B40 112D,1B40 -112D,CC7 112D,CC7 -112D,D4C 112D,D4C -112E,CC0 112E,CC0 -112E,9CB 112E,9CB -112E,BCA 112E,BCA -112E,D4A 112E,D4A -112E,DDC 112E,DDC -112E,1B40 112E,1B40 -112E,CC7 112E,CC7 -112E,D4C 112E,D4C -112F,CC0 112F,CC0 -112F,9CB 112F,9CB -112F,BCA 112F,BCA -112F,D4A 112F,D4A -112F,DDC 112F,DDC -112F,1B40 112F,1B40 -112F,CC7 112F,CC7 -112F,D4C 112F,D4C -1130,CC0 1130,CC0 -1130,9CB 1130,9CB -1130,BCA 1130,BCA -1130,D4A 1130,D4A -1130,DDC 1130,DDC -1130,1B40 1130,1B40 -1130,CC7 1130,CC7 -1130,D4C 1130,D4C -1131,CC0 1131,CC0 -1131,9CB 1131,9CB -1131,BCA 1131,BCA -1131,D4A 1131,D4A -1131,DDC 1131,DDC -1131,1B40 1131,1B40 -1131,CC7 1131,CC7 -1131,D4C 1131,D4C -1132,CC0 1132,CC0 -1132,9CB 1132,9CB -1132,BCA 1132,BCA -1132,D4A 1132,D4A -1132,DDC 1132,DDC -1132,1B40 1132,1B40 -1132,CC7 1132,CC7 -1132,D4C 1132,D4C -1133,CC0 1133,CC0 -1133,9CB 1133,9CB -1133,BCA 1133,BCA -1133,D4A 1133,D4A -1133,DDC 1133,DDC -1133,1B40 1133,1B40 -1133,CC7 1133,CC7 -1133,D4C 1133,D4C -1134,CC0 1134,CC0 -1134,9CB 1134,9CB -1134,BCA 1134,BCA -1134,D4A 1134,D4A -1134,DDC 1134,DDC -1134,1B40 1134,1B40 -1134,CC7 1134,CC7 -1134,D4C 1134,D4C -1135,CC0 1135,CC0 -1135,9CB 1135,9CB -1135,BCA 1135,BCA -1135,D4A 1135,D4A -1135,DDC 1135,DDC -1135,1B40 1135,1B40 -1135,CC7 1135,CC7 -1135,D4C 1135,D4C -1136,CC0 1136,CC0 -1136,9CB 1136,9CB -1136,BCA 1136,BCA -1136,D4A 1136,D4A -1136,DDC 1136,DDC -1136,1B40 1136,1B40 -1136,CC7 1136,CC7 -1136,D4C 1136,D4C -1137,CC0 1137,CC0 -1137,9CB 1137,9CB -1137,BCA 1137,BCA -1137,D4A 1137,D4A -1137,DDC 1137,DDC -1137,1B40 1137,1B40 -1137,CC7 1137,CC7 -1137,D4C 1137,D4C -1138,CC0 1138,CC0 -1138,9CB 1138,9CB -1138,BCA 1138,BCA -1138,D4A 1138,D4A -1138,DDC 1138,DDC -1138,1B40 1138,1B40 -1138,CC7 1138,CC7 -1138,D4C 1138,D4C -1139,CC0 1139,CC0 -1139,9CB 1139,9CB -1139,BCA 1139,BCA -1139,D4A 1139,D4A -1139,DDC 1139,DDC -1139,1B40 1139,1B40 -1139,CC7 1139,CC7 -1139,D4C 1139,D4C -113A,CC0 113A,CC0 -113A,9CB 113A,9CB -113A,BCA 113A,BCA -113A,D4A 113A,D4A -113A,DDC 113A,DDC -113A,1B40 113A,1B40 -113A,CC7 113A,CC7 -113A,D4C 113A,D4C -113B,CC0 113B,CC0 -113B,9CB 113B,9CB -113B,BCA 113B,BCA -113B,D4A 113B,D4A -113B,DDC 113B,DDC -113B,1B40 113B,1B40 -113B,CC7 113B,CC7 -113B,D4C 113B,D4C -113C,CC0 113C,CC0 -113C,9CB 113C,9CB -113C,BCA 113C,BCA -113C,D4A 113C,D4A -113C,DDC 113C,DDC -113C,1B40 113C,1B40 -113C,CC7 113C,CC7 -113C,D4C 113C,D4C -113D,CC0 113D,CC0 -113D,9CB 113D,9CB -113D,BCA 113D,BCA -113D,D4A 113D,D4A -113D,DDC 113D,DDC -113D,1B40 113D,1B40 -113D,CC7 113D,CC7 -113D,D4C 113D,D4C -113E,CC0 113E,CC0 -113E,9CB 113E,9CB -113E,BCA 113E,BCA -113E,D4A 113E,D4A -113E,DDC 113E,DDC -113E,1B40 113E,1B40 -113E,CC7 113E,CC7 -113E,D4C 113E,D4C -113F,CC0 113F,CC0 -113F,9CB 113F,9CB -113F,BCA 113F,BCA -113F,D4A 113F,D4A -113F,DDC 113F,DDC -113F,1B40 113F,1B40 -113F,CC7 113F,CC7 -113F,D4C 113F,D4C -1140,CC0 1140,CC0 -1140,9CB 1140,9CB -1140,BCA 1140,BCA -1140,D4A 1140,D4A -1140,DDC 1140,DDC -1140,1B40 1140,1B40 -1140,CC7 1140,CC7 -1140,D4C 1140,D4C -1141,CC0 1141,CC0 -1141,9CB 1141,9CB -1141,BCA 1141,BCA -1141,D4A 1141,D4A -1141,DDC 1141,DDC -1141,1B40 1141,1B40 -1141,CC7 1141,CC7 -1141,D4C 1141,D4C -1142,CC0 1142,CC0 -1142,9CB 1142,9CB -1142,BCA 1142,BCA -1142,D4A 1142,D4A -1142,DDC 1142,DDC -1142,1B40 1142,1B40 -1142,CC7 1142,CC7 -1142,D4C 1142,D4C -1143,CC0 1143,CC0 -1143,9CB 1143,9CB -1143,BCA 1143,BCA -1143,D4A 1143,D4A -1143,DDC 1143,DDC -1143,1B40 1143,1B40 -1143,CC7 1143,CC7 -1143,D4C 1143,D4C -1144,CC0 1144,CC0 -1144,9CB 1144,9CB -1144,BCA 1144,BCA -1144,D4A 1144,D4A -1144,DDC 1144,DDC -1144,1B40 1144,1B40 -1144,CC7 1144,CC7 -1144,D4C 1144,D4C -1145,CC0 1145,CC0 -1145,9CB 1145,9CB -1145,BCA 1145,BCA -1145,D4A 1145,D4A -1145,DDC 1145,DDC -1145,1B40 1145,1B40 -1145,CC7 1145,CC7 -1145,D4C 1145,D4C -1146,CC0 1146,CC0 -1146,9CB 1146,9CB -1146,BCA 1146,BCA -1146,D4A 1146,D4A -1146,DDC 1146,DDC -1146,1B40 1146,1B40 -1146,CC7 1146,CC7 -1146,D4C 1146,D4C -1147,CC0 1147,CC0 -1147,9CB 1147,9CB -1147,BCA 1147,BCA -1147,D4A 1147,D4A -1147,DDC 1147,DDC -1147,1B40 1147,1B40 -1147,CC7 1147,CC7 -1147,D4C 1147,D4C -1148,CC0 1148,CC0 -1148,9CB 1148,9CB -1148,BCA 1148,BCA -1148,D4A 1148,D4A -1148,DDC 1148,DDC -1148,1B40 1148,1B40 -1148,CC7 1148,CC7 -1148,D4C 1148,D4C -1149,CC0 1149,CC0 -1149,9CB 1149,9CB -1149,BCA 1149,BCA -1149,D4A 1149,D4A -1149,DDC 1149,DDC -1149,1B40 1149,1B40 -1149,CC7 1149,CC7 -1149,D4C 1149,D4C -114A,CC0 114A,CC0 -114A,9CB 114A,9CB -114A,BCA 114A,BCA -114A,D4A 114A,D4A -114A,DDC 114A,DDC -114A,1B40 114A,1B40 -114A,CC7 114A,CC7 -114A,D4C 114A,D4C -114B,CC0 114B,CC0 -114B,9CB 114B,9CB -114B,BCA 114B,BCA -114B,D4A 114B,D4A -114B,DDC 114B,DDC -114B,1B40 114B,1B40 -114B,CC7 114B,CC7 -114B,D4C 114B,D4C -114C,CC0 114C,CC0 -114C,9CB 114C,9CB -114C,BCA 114C,BCA -114C,D4A 114C,D4A -114C,DDC 114C,DDC -114C,1B40 114C,1B40 -114C,CC7 114C,CC7 -114C,D4C 114C,D4C -114D,CC0 114D,CC0 -114D,9CB 114D,9CB -114D,BCA 114D,BCA -114D,D4A 114D,D4A -114D,DDC 114D,DDC -114D,1B40 114D,1B40 -114D,CC7 114D,CC7 -114D,D4C 114D,D4C -114E,CC0 114E,CC0 -114E,9CB 114E,9CB -114E,BCA 114E,BCA -114E,D4A 114E,D4A -114E,DDC 114E,DDC -114E,1B40 114E,1B40 -114E,CC7 114E,CC7 -114E,D4C 114E,D4C -114F,CC0 114F,CC0 -114F,9CB 114F,9CB -114F,BCA 114F,BCA -114F,D4A 114F,D4A -114F,DDC 114F,DDC -114F,1B40 114F,1B40 -114F,CC7 114F,CC7 -114F,D4C 114F,D4C -1150,CC0 1150,CC0 -1150,9CB 1150,9CB -1150,BCA 1150,BCA -1150,D4A 1150,D4A -1150,DDC 1150,DDC -1150,1B40 1150,1B40 -1150,CC7 1150,CC7 -1150,D4C 1150,D4C -1151,CC0 1151,CC0 -1151,9CB 1151,9CB -1151,BCA 1151,BCA -1151,D4A 1151,D4A -1151,DDC 1151,DDC -1151,1B40 1151,1B40 -1151,CC7 1151,CC7 -1151,D4C 1151,D4C -1152,CC0 1152,CC0 -1152,9CB 1152,9CB -1152,BCA 1152,BCA -1152,D4A 1152,D4A -1152,DDC 1152,DDC -1152,1B40 1152,1B40 -1152,CC7 1152,CC7 -1152,D4C 1152,D4C -1153,CC0 1153,CC0 -1153,9CB 1153,9CB -1153,BCA 1153,BCA -1153,D4A 1153,D4A -1153,DDC 1153,DDC -1153,1B40 1153,1B40 -1153,CC7 1153,CC7 -1153,D4C 1153,D4C -1154,CC0 1154,CC0 -1154,9CB 1154,9CB -1154,BCA 1154,BCA -1154,D4A 1154,D4A -1154,DDC 1154,DDC -1154,1B40 1154,1B40 -1154,CC7 1154,CC7 -1154,D4C 1154,D4C -1155,CC0 1155,CC0 -1155,9CB 1155,9CB -1155,BCA 1155,BCA -1155,D4A 1155,D4A -1155,DDC 1155,DDC -1155,1B40 1155,1B40 -1155,CC7 1155,CC7 -1155,D4C 1155,D4C -1156,CC0 1156,CC0 -1156,9CB 1156,9CB -1156,BCA 1156,BCA -1156,D4A 1156,D4A -1156,DDC 1156,DDC -1156,1B40 1156,1B40 -1156,CC7 1156,CC7 -1156,D4C 1156,D4C -1157,CC0 1157,CC0 -1157,9CB 1157,9CB -1157,BCA 1157,BCA -1157,D4A 1157,D4A -1157,DDC 1157,DDC -1157,1B40 1157,1B40 -1157,CC7 1157,CC7 -1157,D4C 1157,D4C -1158,CC0 1158,CC0 -1158,9CB 1158,9CB -1158,BCA 1158,BCA -1158,D4A 1158,D4A -1158,DDC 1158,DDC -1158,1B40 1158,1B40 -1158,CC7 1158,CC7 -1158,D4C 1158,D4C -1159,CC0 1159,CC0 -1159,9CB 1159,9CB -1159,BCA 1159,BCA -1159,D4A 1159,D4A -1159,DDC 1159,DDC -1159,1B40 1159,1B40 -1159,CC7 1159,CC7 -1159,D4C 1159,D4C -115A,CC0 115A,CC0 -115A,9CB 115A,9CB -115A,BCA 115A,BCA -115A,D4A 115A,D4A -115A,DDC 115A,DDC -115A,1B40 115A,1B40 -115A,CC7 115A,CC7 -115A,D4C 115A,D4C -115B,CC0 115B,CC0 -115B,9CB 115B,9CB -115B,BCA 115B,BCA -115B,D4A 115B,D4A -115B,DDC 115B,DDC -115B,1B40 115B,1B40 -115B,CC7 115B,CC7 -115B,D4C 115B,D4C -115C,CC0 115C,CC0 -115C,9CB 115C,9CB -115C,BCA 115C,BCA -115C,D4A 115C,D4A -115C,DDC 115C,DDC -115C,1B40 115C,1B40 -115C,CC7 115C,CC7 -115C,D4C 115C,D4C -115D,CC0 115D,CC0 -115D,9CB 115D,9CB -115D,BCA 115D,BCA -115D,D4A 115D,D4A -115D,DDC 115D,DDC -115D,1B40 115D,1B40 -115D,CC7 115D,CC7 -115D,D4C 115D,D4C -115E,CC0 115E,CC0 -115E,9CB 115E,9CB -115E,BCA 115E,BCA -115E,D4A 115E,D4A -115E,DDC 115E,DDC -115E,1B40 115E,1B40 -115E,CC7 115E,CC7 -115E,D4C 115E,D4C -115F,CC0 115F,CC0 -115F,9CB 115F,9CB -115F,BCA 115F,BCA -115F,D4A 115F,D4A -115F,DDC 115F,DDC -115F,1B40 115F,1B40 -115F,CC7 115F,CC7 -115F,D4C 115F,D4C -# --- group 2B: jamo + precomposed syllable (15652 rows) --- -1113,AC00 1113,AC00 -1113,AC70 1113,AC70 -1113,ACE0 1113,ACE0 -1113,AD50 1113,AD50 -1113,ADC0 1113,ADC0 -1113,AE30 1113,AE30 -1113,AEA0 1113,AEA0 -1113,AF10 1113,AF10 -1113,AF80 1113,AF80 -1113,AFF0 1113,AFF0 -1113,B060 1113,B060 -1113,B0D0 1113,B0D0 -1113,B140 1113,B140 -1113,B1B0 1113,B1B0 -1113,B220 1113,B220 -1113,B290 1113,B290 -1113,B300 1113,B300 -1113,B370 1113,B370 -1113,B3E0 1113,B3E0 -1113,B450 1113,B450 -1113,B4C0 1113,B4C0 -1113,B530 1113,B530 -1113,B5A0 1113,B5A0 -1113,B610 1113,B610 -1113,B680 1113,B680 -1113,B6F0 1113,B6F0 -1113,B760 1113,B760 -1113,B7D0 1113,B7D0 -1113,B840 1113,B840 -1113,B8B0 1113,B8B0 -1113,B920 1113,B920 -1113,B990 1113,B990 -1113,BA00 1113,BA00 -1113,BA70 1113,BA70 -1113,BAE0 1113,BAE0 -1113,BB50 1113,BB50 -1113,BBC0 1113,BBC0 -1113,BC30 1113,BC30 -1113,BCA0 1113,BCA0 -1113,BD10 1113,BD10 -1113,BD80 1113,BD80 -1113,BDF0 1113,BDF0 -1113,BE60 1113,BE60 -1113,BED0 1113,BED0 -1113,BF40 1113,BF40 -1113,BFB0 1113,BFB0 -1113,C020 1113,C020 -1113,C090 1113,C090 -1113,C100 1113,C100 -1113,C170 1113,C170 -1113,C1E0 1113,C1E0 -1113,C250 1113,C250 -1113,C2C0 1113,C2C0 -1113,C330 1113,C330 -1113,C3A0 1113,C3A0 -1113,C410 1113,C410 -1113,C480 1113,C480 -1113,C4F0 1113,C4F0 -1113,C560 1113,C560 -1113,C5D0 1113,C5D0 -1113,C640 1113,C640 -1113,C6B0 1113,C6B0 -1113,C720 1113,C720 -1113,C790 1113,C790 -1113,C800 1113,C800 -1113,C870 1113,C870 -1113,C8E0 1113,C8E0 -1113,C950 1113,C950 -1113,C9C0 1113,C9C0 -1113,CA30 1113,CA30 -1113,CAA0 1113,CAA0 -1113,CB10 1113,CB10 -1113,CB80 1113,CB80 -1113,CBF0 1113,CBF0 -1113,CC60 1113,CC60 -1113,CCD0 1113,CCD0 -1113,CD40 1113,CD40 -1113,CDB0 1113,CDB0 -1113,CE20 1113,CE20 -1113,CE90 1113,CE90 -1113,CF00 1113,CF00 -1113,CF70 1113,CF70 -1113,CFE0 1113,CFE0 -1113,D050 1113,D050 -1113,D0C0 1113,D0C0 -1113,D130 1113,D130 -1113,D1A0 1113,D1A0 -1113,D210 1113,D210 -1113,D280 1113,D280 -1113,D2F0 1113,D2F0 -1113,D360 1113,D360 -1113,D3D0 1113,D3D0 -1113,D440 1113,D440 -1113,D4B0 1113,D4B0 -1113,D520 1113,D520 -1113,D590 1113,D590 -1113,D600 1113,D600 -1113,D670 1113,D670 -1113,D6E0 1113,D6E0 -1113,D750 1113,D750 -1114,AC00 1114,AC00 -1114,AC70 1114,AC70 -1114,ACE0 1114,ACE0 -1114,AD50 1114,AD50 -1114,ADC0 1114,ADC0 -1114,AE30 1114,AE30 -1114,AEA0 1114,AEA0 -1114,AF10 1114,AF10 -1114,AF80 1114,AF80 -1114,AFF0 1114,AFF0 -1114,B060 1114,B060 -1114,B0D0 1114,B0D0 -1114,B140 1114,B140 -1114,B1B0 1114,B1B0 -1114,B220 1114,B220 -1114,B290 1114,B290 -1114,B300 1114,B300 -1114,B370 1114,B370 -1114,B3E0 1114,B3E0 -1114,B450 1114,B450 -1114,B4C0 1114,B4C0 -1114,B530 1114,B530 -1114,B5A0 1114,B5A0 -1114,B610 1114,B610 -1114,B680 1114,B680 -1114,B6F0 1114,B6F0 -1114,B760 1114,B760 -1114,B7D0 1114,B7D0 -1114,B840 1114,B840 -1114,B8B0 1114,B8B0 -1114,B920 1114,B920 -1114,B990 1114,B990 -1114,BA00 1114,BA00 -1114,BA70 1114,BA70 -1114,BAE0 1114,BAE0 -1114,BB50 1114,BB50 -1114,BBC0 1114,BBC0 -1114,BC30 1114,BC30 -1114,BCA0 1114,BCA0 -1114,BD10 1114,BD10 -1114,BD80 1114,BD80 -1114,BDF0 1114,BDF0 -1114,BE60 1114,BE60 -1114,BED0 1114,BED0 -1114,BF40 1114,BF40 -1114,BFB0 1114,BFB0 -1114,C020 1114,C020 -1114,C090 1114,C090 -1114,C100 1114,C100 -1114,C170 1114,C170 -1114,C1E0 1114,C1E0 -1114,C250 1114,C250 -1114,C2C0 1114,C2C0 -1114,C330 1114,C330 -1114,C3A0 1114,C3A0 -1114,C410 1114,C410 -1114,C480 1114,C480 -1114,C4F0 1114,C4F0 -1114,C560 1114,C560 -1114,C5D0 1114,C5D0 -1114,C640 1114,C640 -1114,C6B0 1114,C6B0 -1114,C720 1114,C720 -1114,C790 1114,C790 -1114,C800 1114,C800 -1114,C870 1114,C870 -1114,C8E0 1114,C8E0 -1114,C950 1114,C950 -1114,C9C0 1114,C9C0 -1114,CA30 1114,CA30 -1114,CAA0 1114,CAA0 -1114,CB10 1114,CB10 -1114,CB80 1114,CB80 -1114,CBF0 1114,CBF0 -1114,CC60 1114,CC60 -1114,CCD0 1114,CCD0 -1114,CD40 1114,CD40 -1114,CDB0 1114,CDB0 -1114,CE20 1114,CE20 -1114,CE90 1114,CE90 -1114,CF00 1114,CF00 -1114,CF70 1114,CF70 -1114,CFE0 1114,CFE0 -1114,D050 1114,D050 -1114,D0C0 1114,D0C0 -1114,D130 1114,D130 -1114,D1A0 1114,D1A0 -1114,D210 1114,D210 -1114,D280 1114,D280 -1114,D2F0 1114,D2F0 -1114,D360 1114,D360 -1114,D3D0 1114,D3D0 -1114,D440 1114,D440 -1114,D4B0 1114,D4B0 -1114,D520 1114,D520 -1114,D590 1114,D590 -1114,D600 1114,D600 -1114,D670 1114,D670 -1114,D6E0 1114,D6E0 -1114,D750 1114,D750 -1115,AC00 1115,AC00 -1115,AC70 1115,AC70 -1115,ACE0 1115,ACE0 -1115,AD50 1115,AD50 -1115,ADC0 1115,ADC0 -1115,AE30 1115,AE30 -1115,AEA0 1115,AEA0 -1115,AF10 1115,AF10 -1115,AF80 1115,AF80 -1115,AFF0 1115,AFF0 -1115,B060 1115,B060 -1115,B0D0 1115,B0D0 -1115,B140 1115,B140 -1115,B1B0 1115,B1B0 -1115,B220 1115,B220 -1115,B290 1115,B290 -1115,B300 1115,B300 -1115,B370 1115,B370 -1115,B3E0 1115,B3E0 -1115,B450 1115,B450 -1115,B4C0 1115,B4C0 -1115,B530 1115,B530 -1115,B5A0 1115,B5A0 -1115,B610 1115,B610 -1115,B680 1115,B680 -1115,B6F0 1115,B6F0 -1115,B760 1115,B760 -1115,B7D0 1115,B7D0 -1115,B840 1115,B840 -1115,B8B0 1115,B8B0 -1115,B920 1115,B920 -1115,B990 1115,B990 -1115,BA00 1115,BA00 -1115,BA70 1115,BA70 -1115,BAE0 1115,BAE0 -1115,BB50 1115,BB50 -1115,BBC0 1115,BBC0 -1115,BC30 1115,BC30 -1115,BCA0 1115,BCA0 -1115,BD10 1115,BD10 -1115,BD80 1115,BD80 -1115,BDF0 1115,BDF0 -1115,BE60 1115,BE60 -1115,BED0 1115,BED0 -1115,BF40 1115,BF40 -1115,BFB0 1115,BFB0 -1115,C020 1115,C020 -1115,C090 1115,C090 -1115,C100 1115,C100 -1115,C170 1115,C170 -1115,C1E0 1115,C1E0 -1115,C250 1115,C250 -1115,C2C0 1115,C2C0 -1115,C330 1115,C330 -1115,C3A0 1115,C3A0 -1115,C410 1115,C410 -1115,C480 1115,C480 -1115,C4F0 1115,C4F0 -1115,C560 1115,C560 -1115,C5D0 1115,C5D0 -1115,C640 1115,C640 -1115,C6B0 1115,C6B0 -1115,C720 1115,C720 -1115,C790 1115,C790 -1115,C800 1115,C800 -1115,C870 1115,C870 -1115,C8E0 1115,C8E0 -1115,C950 1115,C950 -1115,C9C0 1115,C9C0 -1115,CA30 1115,CA30 -1115,CAA0 1115,CAA0 -1115,CB10 1115,CB10 -1115,CB80 1115,CB80 -1115,CBF0 1115,CBF0 -1115,CC60 1115,CC60 -1115,CCD0 1115,CCD0 -1115,CD40 1115,CD40 -1115,CDB0 1115,CDB0 -1115,CE20 1115,CE20 -1115,CE90 1115,CE90 -1115,CF00 1115,CF00 -1115,CF70 1115,CF70 -1115,CFE0 1115,CFE0 -1115,D050 1115,D050 -1115,D0C0 1115,D0C0 -1115,D130 1115,D130 -1115,D1A0 1115,D1A0 -1115,D210 1115,D210 -1115,D280 1115,D280 -1115,D2F0 1115,D2F0 -1115,D360 1115,D360 -1115,D3D0 1115,D3D0 -1115,D440 1115,D440 -1115,D4B0 1115,D4B0 -1115,D520 1115,D520 -1115,D590 1115,D590 -1115,D600 1115,D600 -1115,D670 1115,D670 -1115,D6E0 1115,D6E0 -1115,D750 1115,D750 -1116,AC00 1116,AC00 -1116,AC70 1116,AC70 -1116,ACE0 1116,ACE0 -1116,AD50 1116,AD50 -1116,ADC0 1116,ADC0 -1116,AE30 1116,AE30 -1116,AEA0 1116,AEA0 -1116,AF10 1116,AF10 -1116,AF80 1116,AF80 -1116,AFF0 1116,AFF0 -1116,B060 1116,B060 -1116,B0D0 1116,B0D0 -1116,B140 1116,B140 -1116,B1B0 1116,B1B0 -1116,B220 1116,B220 -1116,B290 1116,B290 -1116,B300 1116,B300 -1116,B370 1116,B370 -1116,B3E0 1116,B3E0 -1116,B450 1116,B450 -1116,B4C0 1116,B4C0 -1116,B530 1116,B530 -1116,B5A0 1116,B5A0 -1116,B610 1116,B610 -1116,B680 1116,B680 -1116,B6F0 1116,B6F0 -1116,B760 1116,B760 -1116,B7D0 1116,B7D0 -1116,B840 1116,B840 -1116,B8B0 1116,B8B0 -1116,B920 1116,B920 -1116,B990 1116,B990 -1116,BA00 1116,BA00 -1116,BA70 1116,BA70 -1116,BAE0 1116,BAE0 -1116,BB50 1116,BB50 -1116,BBC0 1116,BBC0 -1116,BC30 1116,BC30 -1116,BCA0 1116,BCA0 -1116,BD10 1116,BD10 -1116,BD80 1116,BD80 -1116,BDF0 1116,BDF0 -1116,BE60 1116,BE60 -1116,BED0 1116,BED0 -1116,BF40 1116,BF40 -1116,BFB0 1116,BFB0 -1116,C020 1116,C020 -1116,C090 1116,C090 -1116,C100 1116,C100 -1116,C170 1116,C170 -1116,C1E0 1116,C1E0 -1116,C250 1116,C250 -1116,C2C0 1116,C2C0 -1116,C330 1116,C330 -1116,C3A0 1116,C3A0 -1116,C410 1116,C410 -1116,C480 1116,C480 -1116,C4F0 1116,C4F0 -1116,C560 1116,C560 -1116,C5D0 1116,C5D0 -1116,C640 1116,C640 -1116,C6B0 1116,C6B0 -1116,C720 1116,C720 -1116,C790 1116,C790 -1116,C800 1116,C800 -1116,C870 1116,C870 -1116,C8E0 1116,C8E0 -1116,C950 1116,C950 -1116,C9C0 1116,C9C0 -1116,CA30 1116,CA30 -1116,CAA0 1116,CAA0 -1116,CB10 1116,CB10 -1116,CB80 1116,CB80 -1116,CBF0 1116,CBF0 -1116,CC60 1116,CC60 -1116,CCD0 1116,CCD0 -1116,CD40 1116,CD40 -1116,CDB0 1116,CDB0 -1116,CE20 1116,CE20 -1116,CE90 1116,CE90 -1116,CF00 1116,CF00 -1116,CF70 1116,CF70 -1116,CFE0 1116,CFE0 -1116,D050 1116,D050 -1116,D0C0 1116,D0C0 -1116,D130 1116,D130 -1116,D1A0 1116,D1A0 -1116,D210 1116,D210 -1116,D280 1116,D280 -1116,D2F0 1116,D2F0 -1116,D360 1116,D360 -1116,D3D0 1116,D3D0 -1116,D440 1116,D440 -1116,D4B0 1116,D4B0 -1116,D520 1116,D520 -1116,D590 1116,D590 -1116,D600 1116,D600 -1116,D670 1116,D670 -1116,D6E0 1116,D6E0 -1116,D750 1116,D750 -1117,AC00 1117,AC00 -1117,AC70 1117,AC70 -1117,ACE0 1117,ACE0 -1117,AD50 1117,AD50 -1117,ADC0 1117,ADC0 -1117,AE30 1117,AE30 -1117,AEA0 1117,AEA0 -1117,AF10 1117,AF10 -1117,AF80 1117,AF80 -1117,AFF0 1117,AFF0 -1117,B060 1117,B060 -1117,B0D0 1117,B0D0 -1117,B140 1117,B140 -1117,B1B0 1117,B1B0 -1117,B220 1117,B220 -1117,B290 1117,B290 -1117,B300 1117,B300 -1117,B370 1117,B370 -1117,B3E0 1117,B3E0 -1117,B450 1117,B450 -1117,B4C0 1117,B4C0 -1117,B530 1117,B530 -1117,B5A0 1117,B5A0 -1117,B610 1117,B610 -1117,B680 1117,B680 -1117,B6F0 1117,B6F0 -1117,B760 1117,B760 -1117,B7D0 1117,B7D0 -1117,B840 1117,B840 -1117,B8B0 1117,B8B0 -1117,B920 1117,B920 -1117,B990 1117,B990 -1117,BA00 1117,BA00 -1117,BA70 1117,BA70 -1117,BAE0 1117,BAE0 -1117,BB50 1117,BB50 -1117,BBC0 1117,BBC0 -1117,BC30 1117,BC30 -1117,BCA0 1117,BCA0 -1117,BD10 1117,BD10 -1117,BD80 1117,BD80 -1117,BDF0 1117,BDF0 -1117,BE60 1117,BE60 -1117,BED0 1117,BED0 -1117,BF40 1117,BF40 -1117,BFB0 1117,BFB0 -1117,C020 1117,C020 -1117,C090 1117,C090 -1117,C100 1117,C100 -1117,C170 1117,C170 -1117,C1E0 1117,C1E0 -1117,C250 1117,C250 -1117,C2C0 1117,C2C0 -1117,C330 1117,C330 -1117,C3A0 1117,C3A0 -1117,C410 1117,C410 -1117,C480 1117,C480 -1117,C4F0 1117,C4F0 -1117,C560 1117,C560 -1117,C5D0 1117,C5D0 -1117,C640 1117,C640 -1117,C6B0 1117,C6B0 -1117,C720 1117,C720 -1117,C790 1117,C790 -1117,C800 1117,C800 -1117,C870 1117,C870 -1117,C8E0 1117,C8E0 -1117,C950 1117,C950 -1117,C9C0 1117,C9C0 -1117,CA30 1117,CA30 -1117,CAA0 1117,CAA0 -1117,CB10 1117,CB10 -1117,CB80 1117,CB80 -1117,CBF0 1117,CBF0 -1117,CC60 1117,CC60 -1117,CCD0 1117,CCD0 -1117,CD40 1117,CD40 -1117,CDB0 1117,CDB0 -1117,CE20 1117,CE20 -1117,CE90 1117,CE90 -1117,CF00 1117,CF00 -1117,CF70 1117,CF70 -1117,CFE0 1117,CFE0 -1117,D050 1117,D050 -1117,D0C0 1117,D0C0 -1117,D130 1117,D130 -1117,D1A0 1117,D1A0 -1117,D210 1117,D210 -1117,D280 1117,D280 -1117,D2F0 1117,D2F0 -1117,D360 1117,D360 -1117,D3D0 1117,D3D0 -1117,D440 1117,D440 -1117,D4B0 1117,D4B0 -1117,D520 1117,D520 -1117,D590 1117,D590 -1117,D600 1117,D600 -1117,D670 1117,D670 -1117,D6E0 1117,D6E0 -1117,D750 1117,D750 -1118,AC00 1118,AC00 -1118,AC70 1118,AC70 -1118,ACE0 1118,ACE0 -1118,AD50 1118,AD50 -1118,ADC0 1118,ADC0 -1118,AE30 1118,AE30 -1118,AEA0 1118,AEA0 -1118,AF10 1118,AF10 -1118,AF80 1118,AF80 -1118,AFF0 1118,AFF0 -1118,B060 1118,B060 -1118,B0D0 1118,B0D0 -1118,B140 1118,B140 -1118,B1B0 1118,B1B0 -1118,B220 1118,B220 -1118,B290 1118,B290 -1118,B300 1118,B300 -1118,B370 1118,B370 -1118,B3E0 1118,B3E0 -1118,B450 1118,B450 -1118,B4C0 1118,B4C0 -1118,B530 1118,B530 -1118,B5A0 1118,B5A0 -1118,B610 1118,B610 -1118,B680 1118,B680 -1118,B6F0 1118,B6F0 -1118,B760 1118,B760 -1118,B7D0 1118,B7D0 -1118,B840 1118,B840 -1118,B8B0 1118,B8B0 -1118,B920 1118,B920 -1118,B990 1118,B990 -1118,BA00 1118,BA00 -1118,BA70 1118,BA70 -1118,BAE0 1118,BAE0 -1118,BB50 1118,BB50 -1118,BBC0 1118,BBC0 -1118,BC30 1118,BC30 -1118,BCA0 1118,BCA0 -1118,BD10 1118,BD10 -1118,BD80 1118,BD80 -1118,BDF0 1118,BDF0 -1118,BE60 1118,BE60 -1118,BED0 1118,BED0 -1118,BF40 1118,BF40 -1118,BFB0 1118,BFB0 -1118,C020 1118,C020 -1118,C090 1118,C090 -1118,C100 1118,C100 -1118,C170 1118,C170 -1118,C1E0 1118,C1E0 -1118,C250 1118,C250 -1118,C2C0 1118,C2C0 -1118,C330 1118,C330 -1118,C3A0 1118,C3A0 -1118,C410 1118,C410 -1118,C480 1118,C480 -1118,C4F0 1118,C4F0 -1118,C560 1118,C560 -1118,C5D0 1118,C5D0 -1118,C640 1118,C640 -1118,C6B0 1118,C6B0 -1118,C720 1118,C720 -1118,C790 1118,C790 -1118,C800 1118,C800 -1118,C870 1118,C870 -1118,C8E0 1118,C8E0 -1118,C950 1118,C950 -1118,C9C0 1118,C9C0 -1118,CA30 1118,CA30 -1118,CAA0 1118,CAA0 -1118,CB10 1118,CB10 -1118,CB80 1118,CB80 -1118,CBF0 1118,CBF0 -1118,CC60 1118,CC60 -1118,CCD0 1118,CCD0 -1118,CD40 1118,CD40 -1118,CDB0 1118,CDB0 -1118,CE20 1118,CE20 -1118,CE90 1118,CE90 -1118,CF00 1118,CF00 -1118,CF70 1118,CF70 -1118,CFE0 1118,CFE0 -1118,D050 1118,D050 -1118,D0C0 1118,D0C0 -1118,D130 1118,D130 -1118,D1A0 1118,D1A0 -1118,D210 1118,D210 -1118,D280 1118,D280 -1118,D2F0 1118,D2F0 -1118,D360 1118,D360 -1118,D3D0 1118,D3D0 -1118,D440 1118,D440 -1118,D4B0 1118,D4B0 -1118,D520 1118,D520 -1118,D590 1118,D590 -1118,D600 1118,D600 -1118,D670 1118,D670 -1118,D6E0 1118,D6E0 -1118,D750 1118,D750 -1119,AC00 1119,AC00 -1119,AC70 1119,AC70 -1119,ACE0 1119,ACE0 -1119,AD50 1119,AD50 -1119,ADC0 1119,ADC0 -1119,AE30 1119,AE30 -1119,AEA0 1119,AEA0 -1119,AF10 1119,AF10 -1119,AF80 1119,AF80 -1119,AFF0 1119,AFF0 -1119,B060 1119,B060 -1119,B0D0 1119,B0D0 -1119,B140 1119,B140 -1119,B1B0 1119,B1B0 -1119,B220 1119,B220 -1119,B290 1119,B290 -1119,B300 1119,B300 -1119,B370 1119,B370 -1119,B3E0 1119,B3E0 -1119,B450 1119,B450 -1119,B4C0 1119,B4C0 -1119,B530 1119,B530 -1119,B5A0 1119,B5A0 -1119,B610 1119,B610 -1119,B680 1119,B680 -1119,B6F0 1119,B6F0 -1119,B760 1119,B760 -1119,B7D0 1119,B7D0 -1119,B840 1119,B840 -1119,B8B0 1119,B8B0 -1119,B920 1119,B920 -1119,B990 1119,B990 -1119,BA00 1119,BA00 -1119,BA70 1119,BA70 -1119,BAE0 1119,BAE0 -1119,BB50 1119,BB50 -1119,BBC0 1119,BBC0 -1119,BC30 1119,BC30 -1119,BCA0 1119,BCA0 -1119,BD10 1119,BD10 -1119,BD80 1119,BD80 -1119,BDF0 1119,BDF0 -1119,BE60 1119,BE60 -1119,BED0 1119,BED0 -1119,BF40 1119,BF40 -1119,BFB0 1119,BFB0 -1119,C020 1119,C020 -1119,C090 1119,C090 -1119,C100 1119,C100 -1119,C170 1119,C170 -1119,C1E0 1119,C1E0 -1119,C250 1119,C250 -1119,C2C0 1119,C2C0 -1119,C330 1119,C330 -1119,C3A0 1119,C3A0 -1119,C410 1119,C410 -1119,C480 1119,C480 -1119,C4F0 1119,C4F0 -1119,C560 1119,C560 -1119,C5D0 1119,C5D0 -1119,C640 1119,C640 -1119,C6B0 1119,C6B0 -1119,C720 1119,C720 -1119,C790 1119,C790 -1119,C800 1119,C800 -1119,C870 1119,C870 -1119,C8E0 1119,C8E0 -1119,C950 1119,C950 -1119,C9C0 1119,C9C0 -1119,CA30 1119,CA30 -1119,CAA0 1119,CAA0 -1119,CB10 1119,CB10 -1119,CB80 1119,CB80 -1119,CBF0 1119,CBF0 -1119,CC60 1119,CC60 -1119,CCD0 1119,CCD0 -1119,CD40 1119,CD40 -1119,CDB0 1119,CDB0 -1119,CE20 1119,CE20 -1119,CE90 1119,CE90 -1119,CF00 1119,CF00 -1119,CF70 1119,CF70 -1119,CFE0 1119,CFE0 -1119,D050 1119,D050 -1119,D0C0 1119,D0C0 -1119,D130 1119,D130 -1119,D1A0 1119,D1A0 -1119,D210 1119,D210 -1119,D280 1119,D280 -1119,D2F0 1119,D2F0 -1119,D360 1119,D360 -1119,D3D0 1119,D3D0 -1119,D440 1119,D440 -1119,D4B0 1119,D4B0 -1119,D520 1119,D520 -1119,D590 1119,D590 -1119,D600 1119,D600 -1119,D670 1119,D670 -1119,D6E0 1119,D6E0 -1119,D750 1119,D750 -111A,AC00 111A,AC00 -111A,AC70 111A,AC70 -111A,ACE0 111A,ACE0 -111A,AD50 111A,AD50 -111A,ADC0 111A,ADC0 -111A,AE30 111A,AE30 -111A,AEA0 111A,AEA0 -111A,AF10 111A,AF10 -111A,AF80 111A,AF80 -111A,AFF0 111A,AFF0 -111A,B060 111A,B060 -111A,B0D0 111A,B0D0 -111A,B140 111A,B140 -111A,B1B0 111A,B1B0 -111A,B220 111A,B220 -111A,B290 111A,B290 -111A,B300 111A,B300 -111A,B370 111A,B370 -111A,B3E0 111A,B3E0 -111A,B450 111A,B450 -111A,B4C0 111A,B4C0 -111A,B530 111A,B530 -111A,B5A0 111A,B5A0 -111A,B610 111A,B610 -111A,B680 111A,B680 -111A,B6F0 111A,B6F0 -111A,B760 111A,B760 -111A,B7D0 111A,B7D0 -111A,B840 111A,B840 -111A,B8B0 111A,B8B0 -111A,B920 111A,B920 -111A,B990 111A,B990 -111A,BA00 111A,BA00 -111A,BA70 111A,BA70 -111A,BAE0 111A,BAE0 -111A,BB50 111A,BB50 -111A,BBC0 111A,BBC0 -111A,BC30 111A,BC30 -111A,BCA0 111A,BCA0 -111A,BD10 111A,BD10 -111A,BD80 111A,BD80 -111A,BDF0 111A,BDF0 -111A,BE60 111A,BE60 -111A,BED0 111A,BED0 -111A,BF40 111A,BF40 -111A,BFB0 111A,BFB0 -111A,C020 111A,C020 -111A,C090 111A,C090 -111A,C100 111A,C100 -111A,C170 111A,C170 -111A,C1E0 111A,C1E0 -111A,C250 111A,C250 -111A,C2C0 111A,C2C0 -111A,C330 111A,C330 -111A,C3A0 111A,C3A0 -111A,C410 111A,C410 -111A,C480 111A,C480 -111A,C4F0 111A,C4F0 -111A,C560 111A,C560 -111A,C5D0 111A,C5D0 -111A,C640 111A,C640 -111A,C6B0 111A,C6B0 -111A,C720 111A,C720 -111A,C790 111A,C790 -111A,C800 111A,C800 -111A,C870 111A,C870 -111A,C8E0 111A,C8E0 -111A,C950 111A,C950 -111A,C9C0 111A,C9C0 -111A,CA30 111A,CA30 -111A,CAA0 111A,CAA0 -111A,CB10 111A,CB10 -111A,CB80 111A,CB80 -111A,CBF0 111A,CBF0 -111A,CC60 111A,CC60 -111A,CCD0 111A,CCD0 -111A,CD40 111A,CD40 -111A,CDB0 111A,CDB0 -111A,CE20 111A,CE20 -111A,CE90 111A,CE90 -111A,CF00 111A,CF00 -111A,CF70 111A,CF70 -111A,CFE0 111A,CFE0 -111A,D050 111A,D050 -111A,D0C0 111A,D0C0 -111A,D130 111A,D130 -111A,D1A0 111A,D1A0 -111A,D210 111A,D210 -111A,D280 111A,D280 -111A,D2F0 111A,D2F0 -111A,D360 111A,D360 -111A,D3D0 111A,D3D0 -111A,D440 111A,D440 -111A,D4B0 111A,D4B0 -111A,D520 111A,D520 -111A,D590 111A,D590 -111A,D600 111A,D600 -111A,D670 111A,D670 -111A,D6E0 111A,D6E0 -111A,D750 111A,D750 -111B,AC00 111B,AC00 -111B,AC70 111B,AC70 -111B,ACE0 111B,ACE0 -111B,AD50 111B,AD50 -111B,ADC0 111B,ADC0 -111B,AE30 111B,AE30 -111B,AEA0 111B,AEA0 -111B,AF10 111B,AF10 -111B,AF80 111B,AF80 -111B,AFF0 111B,AFF0 -111B,B060 111B,B060 -111B,B0D0 111B,B0D0 -111B,B140 111B,B140 -111B,B1B0 111B,B1B0 -111B,B220 111B,B220 -111B,B290 111B,B290 -111B,B300 111B,B300 -111B,B370 111B,B370 -111B,B3E0 111B,B3E0 -111B,B450 111B,B450 -111B,B4C0 111B,B4C0 -111B,B530 111B,B530 -111B,B5A0 111B,B5A0 -111B,B610 111B,B610 -111B,B680 111B,B680 -111B,B6F0 111B,B6F0 -111B,B760 111B,B760 -111B,B7D0 111B,B7D0 -111B,B840 111B,B840 -111B,B8B0 111B,B8B0 -111B,B920 111B,B920 -111B,B990 111B,B990 -111B,BA00 111B,BA00 -111B,BA70 111B,BA70 -111B,BAE0 111B,BAE0 -111B,BB50 111B,BB50 -111B,BBC0 111B,BBC0 -111B,BC30 111B,BC30 -111B,BCA0 111B,BCA0 -111B,BD10 111B,BD10 -111B,BD80 111B,BD80 -111B,BDF0 111B,BDF0 -111B,BE60 111B,BE60 -111B,BED0 111B,BED0 -111B,BF40 111B,BF40 -111B,BFB0 111B,BFB0 -111B,C020 111B,C020 -111B,C090 111B,C090 -111B,C100 111B,C100 -111B,C170 111B,C170 -111B,C1E0 111B,C1E0 -111B,C250 111B,C250 -111B,C2C0 111B,C2C0 -111B,C330 111B,C330 -111B,C3A0 111B,C3A0 -111B,C410 111B,C410 -111B,C480 111B,C480 -111B,C4F0 111B,C4F0 -111B,C560 111B,C560 -111B,C5D0 111B,C5D0 -111B,C640 111B,C640 -111B,C6B0 111B,C6B0 -111B,C720 111B,C720 -111B,C790 111B,C790 -111B,C800 111B,C800 -111B,C870 111B,C870 -111B,C8E0 111B,C8E0 -111B,C950 111B,C950 -111B,C9C0 111B,C9C0 -111B,CA30 111B,CA30 -111B,CAA0 111B,CAA0 -111B,CB10 111B,CB10 -111B,CB80 111B,CB80 -111B,CBF0 111B,CBF0 -111B,CC60 111B,CC60 -111B,CCD0 111B,CCD0 -111B,CD40 111B,CD40 -111B,CDB0 111B,CDB0 -111B,CE20 111B,CE20 -111B,CE90 111B,CE90 -111B,CF00 111B,CF00 -111B,CF70 111B,CF70 -111B,CFE0 111B,CFE0 -111B,D050 111B,D050 -111B,D0C0 111B,D0C0 -111B,D130 111B,D130 -111B,D1A0 111B,D1A0 -111B,D210 111B,D210 -111B,D280 111B,D280 -111B,D2F0 111B,D2F0 -111B,D360 111B,D360 -111B,D3D0 111B,D3D0 -111B,D440 111B,D440 -111B,D4B0 111B,D4B0 -111B,D520 111B,D520 -111B,D590 111B,D590 -111B,D600 111B,D600 -111B,D670 111B,D670 -111B,D6E0 111B,D6E0 -111B,D750 111B,D750 -111C,AC00 111C,AC00 -111C,AC70 111C,AC70 -111C,ACE0 111C,ACE0 -111C,AD50 111C,AD50 -111C,ADC0 111C,ADC0 -111C,AE30 111C,AE30 -111C,AEA0 111C,AEA0 -111C,AF10 111C,AF10 -111C,AF80 111C,AF80 -111C,AFF0 111C,AFF0 -111C,B060 111C,B060 -111C,B0D0 111C,B0D0 -111C,B140 111C,B140 -111C,B1B0 111C,B1B0 -111C,B220 111C,B220 -111C,B290 111C,B290 -111C,B300 111C,B300 -111C,B370 111C,B370 -111C,B3E0 111C,B3E0 -111C,B450 111C,B450 -111C,B4C0 111C,B4C0 -111C,B530 111C,B530 -111C,B5A0 111C,B5A0 -111C,B610 111C,B610 -111C,B680 111C,B680 -111C,B6F0 111C,B6F0 -111C,B760 111C,B760 -111C,B7D0 111C,B7D0 -111C,B840 111C,B840 -111C,B8B0 111C,B8B0 -111C,B920 111C,B920 -111C,B990 111C,B990 -111C,BA00 111C,BA00 -111C,BA70 111C,BA70 -111C,BAE0 111C,BAE0 -111C,BB50 111C,BB50 -111C,BBC0 111C,BBC0 -111C,BC30 111C,BC30 -111C,BCA0 111C,BCA0 -111C,BD10 111C,BD10 -111C,BD80 111C,BD80 -111C,BDF0 111C,BDF0 -111C,BE60 111C,BE60 -111C,BED0 111C,BED0 -111C,BF40 111C,BF40 -111C,BFB0 111C,BFB0 -111C,C020 111C,C020 -111C,C090 111C,C090 -111C,C100 111C,C100 -111C,C170 111C,C170 -111C,C1E0 111C,C1E0 -111C,C250 111C,C250 -111C,C2C0 111C,C2C0 -111C,C330 111C,C330 -111C,C3A0 111C,C3A0 -111C,C410 111C,C410 -111C,C480 111C,C480 -111C,C4F0 111C,C4F0 -111C,C560 111C,C560 -111C,C5D0 111C,C5D0 -111C,C640 111C,C640 -111C,C6B0 111C,C6B0 -111C,C720 111C,C720 -111C,C790 111C,C790 -111C,C800 111C,C800 -111C,C870 111C,C870 -111C,C8E0 111C,C8E0 -111C,C950 111C,C950 -111C,C9C0 111C,C9C0 -111C,CA30 111C,CA30 -111C,CAA0 111C,CAA0 -111C,CB10 111C,CB10 -111C,CB80 111C,CB80 -111C,CBF0 111C,CBF0 -111C,CC60 111C,CC60 -111C,CCD0 111C,CCD0 -111C,CD40 111C,CD40 -111C,CDB0 111C,CDB0 -111C,CE20 111C,CE20 -111C,CE90 111C,CE90 -111C,CF00 111C,CF00 -111C,CF70 111C,CF70 -111C,CFE0 111C,CFE0 -111C,D050 111C,D050 -111C,D0C0 111C,D0C0 -111C,D130 111C,D130 -111C,D1A0 111C,D1A0 -111C,D210 111C,D210 -111C,D280 111C,D280 -111C,D2F0 111C,D2F0 -111C,D360 111C,D360 -111C,D3D0 111C,D3D0 -111C,D440 111C,D440 -111C,D4B0 111C,D4B0 -111C,D520 111C,D520 -111C,D590 111C,D590 -111C,D600 111C,D600 -111C,D670 111C,D670 -111C,D6E0 111C,D6E0 -111C,D750 111C,D750 -111D,AC00 111D,AC00 -111D,AC70 111D,AC70 -111D,ACE0 111D,ACE0 -111D,AD50 111D,AD50 -111D,ADC0 111D,ADC0 -111D,AE30 111D,AE30 -111D,AEA0 111D,AEA0 -111D,AF10 111D,AF10 -111D,AF80 111D,AF80 -111D,AFF0 111D,AFF0 -111D,B060 111D,B060 -111D,B0D0 111D,B0D0 -111D,B140 111D,B140 -111D,B1B0 111D,B1B0 -111D,B220 111D,B220 -111D,B290 111D,B290 -111D,B300 111D,B300 -111D,B370 111D,B370 -111D,B3E0 111D,B3E0 -111D,B450 111D,B450 -111D,B4C0 111D,B4C0 -111D,B530 111D,B530 -111D,B5A0 111D,B5A0 -111D,B610 111D,B610 -111D,B680 111D,B680 -111D,B6F0 111D,B6F0 -111D,B760 111D,B760 -111D,B7D0 111D,B7D0 -111D,B840 111D,B840 -111D,B8B0 111D,B8B0 -111D,B920 111D,B920 -111D,B990 111D,B990 -111D,BA00 111D,BA00 -111D,BA70 111D,BA70 -111D,BAE0 111D,BAE0 -111D,BB50 111D,BB50 -111D,BBC0 111D,BBC0 -111D,BC30 111D,BC30 -111D,BCA0 111D,BCA0 -111D,BD10 111D,BD10 -111D,BD80 111D,BD80 -111D,BDF0 111D,BDF0 -111D,BE60 111D,BE60 -111D,BED0 111D,BED0 -111D,BF40 111D,BF40 -111D,BFB0 111D,BFB0 -111D,C020 111D,C020 -111D,C090 111D,C090 -111D,C100 111D,C100 -111D,C170 111D,C170 -111D,C1E0 111D,C1E0 -111D,C250 111D,C250 -111D,C2C0 111D,C2C0 -111D,C330 111D,C330 -111D,C3A0 111D,C3A0 -111D,C410 111D,C410 -111D,C480 111D,C480 -111D,C4F0 111D,C4F0 -111D,C560 111D,C560 -111D,C5D0 111D,C5D0 -111D,C640 111D,C640 -111D,C6B0 111D,C6B0 -111D,C720 111D,C720 -111D,C790 111D,C790 -111D,C800 111D,C800 -111D,C870 111D,C870 -111D,C8E0 111D,C8E0 -111D,C950 111D,C950 -111D,C9C0 111D,C9C0 -111D,CA30 111D,CA30 -111D,CAA0 111D,CAA0 -111D,CB10 111D,CB10 -111D,CB80 111D,CB80 -111D,CBF0 111D,CBF0 -111D,CC60 111D,CC60 -111D,CCD0 111D,CCD0 -111D,CD40 111D,CD40 -111D,CDB0 111D,CDB0 -111D,CE20 111D,CE20 -111D,CE90 111D,CE90 -111D,CF00 111D,CF00 -111D,CF70 111D,CF70 -111D,CFE0 111D,CFE0 -111D,D050 111D,D050 -111D,D0C0 111D,D0C0 -111D,D130 111D,D130 -111D,D1A0 111D,D1A0 -111D,D210 111D,D210 -111D,D280 111D,D280 -111D,D2F0 111D,D2F0 -111D,D360 111D,D360 -111D,D3D0 111D,D3D0 -111D,D440 111D,D440 -111D,D4B0 111D,D4B0 -111D,D520 111D,D520 -111D,D590 111D,D590 -111D,D600 111D,D600 -111D,D670 111D,D670 -111D,D6E0 111D,D6E0 -111D,D750 111D,D750 -111E,AC00 111E,AC00 -111E,AC70 111E,AC70 -111E,ACE0 111E,ACE0 -111E,AD50 111E,AD50 -111E,ADC0 111E,ADC0 -111E,AE30 111E,AE30 -111E,AEA0 111E,AEA0 -111E,AF10 111E,AF10 -111E,AF80 111E,AF80 -111E,AFF0 111E,AFF0 -111E,B060 111E,B060 -111E,B0D0 111E,B0D0 -111E,B140 111E,B140 -111E,B1B0 111E,B1B0 -111E,B220 111E,B220 -111E,B290 111E,B290 -111E,B300 111E,B300 -111E,B370 111E,B370 -111E,B3E0 111E,B3E0 -111E,B450 111E,B450 -111E,B4C0 111E,B4C0 -111E,B530 111E,B530 -111E,B5A0 111E,B5A0 -111E,B610 111E,B610 -111E,B680 111E,B680 -111E,B6F0 111E,B6F0 -111E,B760 111E,B760 -111E,B7D0 111E,B7D0 -111E,B840 111E,B840 -111E,B8B0 111E,B8B0 -111E,B920 111E,B920 -111E,B990 111E,B990 -111E,BA00 111E,BA00 -111E,BA70 111E,BA70 -111E,BAE0 111E,BAE0 -111E,BB50 111E,BB50 -111E,BBC0 111E,BBC0 -111E,BC30 111E,BC30 -111E,BCA0 111E,BCA0 -111E,BD10 111E,BD10 -111E,BD80 111E,BD80 -111E,BDF0 111E,BDF0 -111E,BE60 111E,BE60 -111E,BED0 111E,BED0 -111E,BF40 111E,BF40 -111E,BFB0 111E,BFB0 -111E,C020 111E,C020 -111E,C090 111E,C090 -111E,C100 111E,C100 -111E,C170 111E,C170 -111E,C1E0 111E,C1E0 -111E,C250 111E,C250 -111E,C2C0 111E,C2C0 -111E,C330 111E,C330 -111E,C3A0 111E,C3A0 -111E,C410 111E,C410 -111E,C480 111E,C480 -111E,C4F0 111E,C4F0 -111E,C560 111E,C560 -111E,C5D0 111E,C5D0 -111E,C640 111E,C640 -111E,C6B0 111E,C6B0 -111E,C720 111E,C720 -111E,C790 111E,C790 -111E,C800 111E,C800 -111E,C870 111E,C870 -111E,C8E0 111E,C8E0 -111E,C950 111E,C950 -111E,C9C0 111E,C9C0 -111E,CA30 111E,CA30 -111E,CAA0 111E,CAA0 -111E,CB10 111E,CB10 -111E,CB80 111E,CB80 -111E,CBF0 111E,CBF0 -111E,CC60 111E,CC60 -111E,CCD0 111E,CCD0 -111E,CD40 111E,CD40 -111E,CDB0 111E,CDB0 -111E,CE20 111E,CE20 -111E,CE90 111E,CE90 -111E,CF00 111E,CF00 -111E,CF70 111E,CF70 -111E,CFE0 111E,CFE0 -111E,D050 111E,D050 -111E,D0C0 111E,D0C0 -111E,D130 111E,D130 -111E,D1A0 111E,D1A0 -111E,D210 111E,D210 -111E,D280 111E,D280 -111E,D2F0 111E,D2F0 -111E,D360 111E,D360 -111E,D3D0 111E,D3D0 -111E,D440 111E,D440 -111E,D4B0 111E,D4B0 -111E,D520 111E,D520 -111E,D590 111E,D590 -111E,D600 111E,D600 -111E,D670 111E,D670 -111E,D6E0 111E,D6E0 -111E,D750 111E,D750 -111F,AC00 111F,AC00 -111F,AC70 111F,AC70 -111F,ACE0 111F,ACE0 -111F,AD50 111F,AD50 -111F,ADC0 111F,ADC0 -111F,AE30 111F,AE30 -111F,AEA0 111F,AEA0 -111F,AF10 111F,AF10 -111F,AF80 111F,AF80 -111F,AFF0 111F,AFF0 -111F,B060 111F,B060 -111F,B0D0 111F,B0D0 -111F,B140 111F,B140 -111F,B1B0 111F,B1B0 -111F,B220 111F,B220 -111F,B290 111F,B290 -111F,B300 111F,B300 -111F,B370 111F,B370 -111F,B3E0 111F,B3E0 -111F,B450 111F,B450 -111F,B4C0 111F,B4C0 -111F,B530 111F,B530 -111F,B5A0 111F,B5A0 -111F,B610 111F,B610 -111F,B680 111F,B680 -111F,B6F0 111F,B6F0 -111F,B760 111F,B760 -111F,B7D0 111F,B7D0 -111F,B840 111F,B840 -111F,B8B0 111F,B8B0 -111F,B920 111F,B920 -111F,B990 111F,B990 -111F,BA00 111F,BA00 -111F,BA70 111F,BA70 -111F,BAE0 111F,BAE0 -111F,BB50 111F,BB50 -111F,BBC0 111F,BBC0 -111F,BC30 111F,BC30 -111F,BCA0 111F,BCA0 -111F,BD10 111F,BD10 -111F,BD80 111F,BD80 -111F,BDF0 111F,BDF0 -111F,BE60 111F,BE60 -111F,BED0 111F,BED0 -111F,BF40 111F,BF40 -111F,BFB0 111F,BFB0 -111F,C020 111F,C020 -111F,C090 111F,C090 -111F,C100 111F,C100 -111F,C170 111F,C170 -111F,C1E0 111F,C1E0 -111F,C250 111F,C250 -111F,C2C0 111F,C2C0 -111F,C330 111F,C330 -111F,C3A0 111F,C3A0 -111F,C410 111F,C410 -111F,C480 111F,C480 -111F,C4F0 111F,C4F0 -111F,C560 111F,C560 -111F,C5D0 111F,C5D0 -111F,C640 111F,C640 -111F,C6B0 111F,C6B0 -111F,C720 111F,C720 -111F,C790 111F,C790 -111F,C800 111F,C800 -111F,C870 111F,C870 -111F,C8E0 111F,C8E0 -111F,C950 111F,C950 -111F,C9C0 111F,C9C0 -111F,CA30 111F,CA30 -111F,CAA0 111F,CAA0 -111F,CB10 111F,CB10 -111F,CB80 111F,CB80 -111F,CBF0 111F,CBF0 -111F,CC60 111F,CC60 -111F,CCD0 111F,CCD0 -111F,CD40 111F,CD40 -111F,CDB0 111F,CDB0 -111F,CE20 111F,CE20 -111F,CE90 111F,CE90 -111F,CF00 111F,CF00 -111F,CF70 111F,CF70 -111F,CFE0 111F,CFE0 -111F,D050 111F,D050 -111F,D0C0 111F,D0C0 -111F,D130 111F,D130 -111F,D1A0 111F,D1A0 -111F,D210 111F,D210 -111F,D280 111F,D280 -111F,D2F0 111F,D2F0 -111F,D360 111F,D360 -111F,D3D0 111F,D3D0 -111F,D440 111F,D440 -111F,D4B0 111F,D4B0 -111F,D520 111F,D520 -111F,D590 111F,D590 -111F,D600 111F,D600 -111F,D670 111F,D670 -111F,D6E0 111F,D6E0 -111F,D750 111F,D750 -1120,AC00 1120,AC00 -1120,AC70 1120,AC70 -1120,ACE0 1120,ACE0 -1120,AD50 1120,AD50 -1120,ADC0 1120,ADC0 -1120,AE30 1120,AE30 -1120,AEA0 1120,AEA0 -1120,AF10 1120,AF10 -1120,AF80 1120,AF80 -1120,AFF0 1120,AFF0 -1120,B060 1120,B060 -1120,B0D0 1120,B0D0 -1120,B140 1120,B140 -1120,B1B0 1120,B1B0 -1120,B220 1120,B220 -1120,B290 1120,B290 -1120,B300 1120,B300 -1120,B370 1120,B370 -1120,B3E0 1120,B3E0 -1120,B450 1120,B450 -1120,B4C0 1120,B4C0 -1120,B530 1120,B530 -1120,B5A0 1120,B5A0 -1120,B610 1120,B610 -1120,B680 1120,B680 -1120,B6F0 1120,B6F0 -1120,B760 1120,B760 -1120,B7D0 1120,B7D0 -1120,B840 1120,B840 -1120,B8B0 1120,B8B0 -1120,B920 1120,B920 -1120,B990 1120,B990 -1120,BA00 1120,BA00 -1120,BA70 1120,BA70 -1120,BAE0 1120,BAE0 -1120,BB50 1120,BB50 -1120,BBC0 1120,BBC0 -1120,BC30 1120,BC30 -1120,BCA0 1120,BCA0 -1120,BD10 1120,BD10 -1120,BD80 1120,BD80 -1120,BDF0 1120,BDF0 -1120,BE60 1120,BE60 -1120,BED0 1120,BED0 -1120,BF40 1120,BF40 -1120,BFB0 1120,BFB0 -1120,C020 1120,C020 -1120,C090 1120,C090 -1120,C100 1120,C100 -1120,C170 1120,C170 -1120,C1E0 1120,C1E0 -1120,C250 1120,C250 -1120,C2C0 1120,C2C0 -1120,C330 1120,C330 -1120,C3A0 1120,C3A0 -1120,C410 1120,C410 -1120,C480 1120,C480 -1120,C4F0 1120,C4F0 -1120,C560 1120,C560 -1120,C5D0 1120,C5D0 -1120,C640 1120,C640 -1120,C6B0 1120,C6B0 -1120,C720 1120,C720 -1120,C790 1120,C790 -1120,C800 1120,C800 -1120,C870 1120,C870 -1120,C8E0 1120,C8E0 -1120,C950 1120,C950 -1120,C9C0 1120,C9C0 -1120,CA30 1120,CA30 -1120,CAA0 1120,CAA0 -1120,CB10 1120,CB10 -1120,CB80 1120,CB80 -1120,CBF0 1120,CBF0 -1120,CC60 1120,CC60 -1120,CCD0 1120,CCD0 -1120,CD40 1120,CD40 -1120,CDB0 1120,CDB0 -1120,CE20 1120,CE20 -1120,CE90 1120,CE90 -1120,CF00 1120,CF00 -1120,CF70 1120,CF70 -1120,CFE0 1120,CFE0 -1120,D050 1120,D050 -1120,D0C0 1120,D0C0 -1120,D130 1120,D130 -1120,D1A0 1120,D1A0 -1120,D210 1120,D210 -1120,D280 1120,D280 -1120,D2F0 1120,D2F0 -1120,D360 1120,D360 -1120,D3D0 1120,D3D0 -1120,D440 1120,D440 -1120,D4B0 1120,D4B0 -1120,D520 1120,D520 -1120,D590 1120,D590 -1120,D600 1120,D600 -1120,D670 1120,D670 -1120,D6E0 1120,D6E0 -1120,D750 1120,D750 -1121,AC00 1121,AC00 -1121,AC70 1121,AC70 -1121,ACE0 1121,ACE0 -1121,AD50 1121,AD50 -1121,ADC0 1121,ADC0 -1121,AE30 1121,AE30 -1121,AEA0 1121,AEA0 -1121,AF10 1121,AF10 -1121,AF80 1121,AF80 -1121,AFF0 1121,AFF0 -1121,B060 1121,B060 -1121,B0D0 1121,B0D0 -1121,B140 1121,B140 -1121,B1B0 1121,B1B0 -1121,B220 1121,B220 -1121,B290 1121,B290 -1121,B300 1121,B300 -1121,B370 1121,B370 -1121,B3E0 1121,B3E0 -1121,B450 1121,B450 -1121,B4C0 1121,B4C0 -1121,B530 1121,B530 -1121,B5A0 1121,B5A0 -1121,B610 1121,B610 -1121,B680 1121,B680 -1121,B6F0 1121,B6F0 -1121,B760 1121,B760 -1121,B7D0 1121,B7D0 -1121,B840 1121,B840 -1121,B8B0 1121,B8B0 -1121,B920 1121,B920 -1121,B990 1121,B990 -1121,BA00 1121,BA00 -1121,BA70 1121,BA70 -1121,BAE0 1121,BAE0 -1121,BB50 1121,BB50 -1121,BBC0 1121,BBC0 -1121,BC30 1121,BC30 -1121,BCA0 1121,BCA0 -1121,BD10 1121,BD10 -1121,BD80 1121,BD80 -1121,BDF0 1121,BDF0 -1121,BE60 1121,BE60 -1121,BED0 1121,BED0 -1121,BF40 1121,BF40 -1121,BFB0 1121,BFB0 -1121,C020 1121,C020 -1121,C090 1121,C090 -1121,C100 1121,C100 -1121,C170 1121,C170 -1121,C1E0 1121,C1E0 -1121,C250 1121,C250 -1121,C2C0 1121,C2C0 -1121,C330 1121,C330 -1121,C3A0 1121,C3A0 -1121,C410 1121,C410 -1121,C480 1121,C480 -1121,C4F0 1121,C4F0 -1121,C560 1121,C560 -1121,C5D0 1121,C5D0 -1121,C640 1121,C640 -1121,C6B0 1121,C6B0 -1121,C720 1121,C720 -1121,C790 1121,C790 -1121,C800 1121,C800 -1121,C870 1121,C870 -1121,C8E0 1121,C8E0 -1121,C950 1121,C950 -1121,C9C0 1121,C9C0 -1121,CA30 1121,CA30 -1121,CAA0 1121,CAA0 -1121,CB10 1121,CB10 -1121,CB80 1121,CB80 -1121,CBF0 1121,CBF0 -1121,CC60 1121,CC60 -1121,CCD0 1121,CCD0 -1121,CD40 1121,CD40 -1121,CDB0 1121,CDB0 -1121,CE20 1121,CE20 -1121,CE90 1121,CE90 -1121,CF00 1121,CF00 -1121,CF70 1121,CF70 -1121,CFE0 1121,CFE0 -1121,D050 1121,D050 -1121,D0C0 1121,D0C0 -1121,D130 1121,D130 -1121,D1A0 1121,D1A0 -1121,D210 1121,D210 -1121,D280 1121,D280 -1121,D2F0 1121,D2F0 -1121,D360 1121,D360 -1121,D3D0 1121,D3D0 -1121,D440 1121,D440 -1121,D4B0 1121,D4B0 -1121,D520 1121,D520 -1121,D590 1121,D590 -1121,D600 1121,D600 -1121,D670 1121,D670 -1121,D6E0 1121,D6E0 -1121,D750 1121,D750 -1122,AC00 1122,AC00 -1122,AC70 1122,AC70 -1122,ACE0 1122,ACE0 -1122,AD50 1122,AD50 -1122,ADC0 1122,ADC0 -1122,AE30 1122,AE30 -1122,AEA0 1122,AEA0 -1122,AF10 1122,AF10 -1122,AF80 1122,AF80 -1122,AFF0 1122,AFF0 -1122,B060 1122,B060 -1122,B0D0 1122,B0D0 -1122,B140 1122,B140 -1122,B1B0 1122,B1B0 -1122,B220 1122,B220 -1122,B290 1122,B290 -1122,B300 1122,B300 -1122,B370 1122,B370 -1122,B3E0 1122,B3E0 -1122,B450 1122,B450 -1122,B4C0 1122,B4C0 -1122,B530 1122,B530 -1122,B5A0 1122,B5A0 -1122,B610 1122,B610 -1122,B680 1122,B680 -1122,B6F0 1122,B6F0 -1122,B760 1122,B760 -1122,B7D0 1122,B7D0 -1122,B840 1122,B840 -1122,B8B0 1122,B8B0 -1122,B920 1122,B920 -1122,B990 1122,B990 -1122,BA00 1122,BA00 -1122,BA70 1122,BA70 -1122,BAE0 1122,BAE0 -1122,BB50 1122,BB50 -1122,BBC0 1122,BBC0 -1122,BC30 1122,BC30 -1122,BCA0 1122,BCA0 -1122,BD10 1122,BD10 -1122,BD80 1122,BD80 -1122,BDF0 1122,BDF0 -1122,BE60 1122,BE60 -1122,BED0 1122,BED0 -1122,BF40 1122,BF40 -1122,BFB0 1122,BFB0 -1122,C020 1122,C020 -1122,C090 1122,C090 -1122,C100 1122,C100 -1122,C170 1122,C170 -1122,C1E0 1122,C1E0 -1122,C250 1122,C250 -1122,C2C0 1122,C2C0 -1122,C330 1122,C330 -1122,C3A0 1122,C3A0 -1122,C410 1122,C410 -1122,C480 1122,C480 -1122,C4F0 1122,C4F0 -1122,C560 1122,C560 -1122,C5D0 1122,C5D0 -1122,C640 1122,C640 -1122,C6B0 1122,C6B0 -1122,C720 1122,C720 -1122,C790 1122,C790 -1122,C800 1122,C800 -1122,C870 1122,C870 -1122,C8E0 1122,C8E0 -1122,C950 1122,C950 -1122,C9C0 1122,C9C0 -1122,CA30 1122,CA30 -1122,CAA0 1122,CAA0 -1122,CB10 1122,CB10 -1122,CB80 1122,CB80 -1122,CBF0 1122,CBF0 -1122,CC60 1122,CC60 -1122,CCD0 1122,CCD0 -1122,CD40 1122,CD40 -1122,CDB0 1122,CDB0 -1122,CE20 1122,CE20 -1122,CE90 1122,CE90 -1122,CF00 1122,CF00 -1122,CF70 1122,CF70 -1122,CFE0 1122,CFE0 -1122,D050 1122,D050 -1122,D0C0 1122,D0C0 -1122,D130 1122,D130 -1122,D1A0 1122,D1A0 -1122,D210 1122,D210 -1122,D280 1122,D280 -1122,D2F0 1122,D2F0 -1122,D360 1122,D360 -1122,D3D0 1122,D3D0 -1122,D440 1122,D440 -1122,D4B0 1122,D4B0 -1122,D520 1122,D520 -1122,D590 1122,D590 -1122,D600 1122,D600 -1122,D670 1122,D670 -1122,D6E0 1122,D6E0 -1122,D750 1122,D750 -1123,AC00 1123,AC00 -1123,AC70 1123,AC70 -1123,ACE0 1123,ACE0 -1123,AD50 1123,AD50 -1123,ADC0 1123,ADC0 -1123,AE30 1123,AE30 -1123,AEA0 1123,AEA0 -1123,AF10 1123,AF10 -1123,AF80 1123,AF80 -1123,AFF0 1123,AFF0 -1123,B060 1123,B060 -1123,B0D0 1123,B0D0 -1123,B140 1123,B140 -1123,B1B0 1123,B1B0 -1123,B220 1123,B220 -1123,B290 1123,B290 -1123,B300 1123,B300 -1123,B370 1123,B370 -1123,B3E0 1123,B3E0 -1123,B450 1123,B450 -1123,B4C0 1123,B4C0 -1123,B530 1123,B530 -1123,B5A0 1123,B5A0 -1123,B610 1123,B610 -1123,B680 1123,B680 -1123,B6F0 1123,B6F0 -1123,B760 1123,B760 -1123,B7D0 1123,B7D0 -1123,B840 1123,B840 -1123,B8B0 1123,B8B0 -1123,B920 1123,B920 -1123,B990 1123,B990 -1123,BA00 1123,BA00 -1123,BA70 1123,BA70 -1123,BAE0 1123,BAE0 -1123,BB50 1123,BB50 -1123,BBC0 1123,BBC0 -1123,BC30 1123,BC30 -1123,BCA0 1123,BCA0 -1123,BD10 1123,BD10 -1123,BD80 1123,BD80 -1123,BDF0 1123,BDF0 -1123,BE60 1123,BE60 -1123,BED0 1123,BED0 -1123,BF40 1123,BF40 -1123,BFB0 1123,BFB0 -1123,C020 1123,C020 -1123,C090 1123,C090 -1123,C100 1123,C100 -1123,C170 1123,C170 -1123,C1E0 1123,C1E0 -1123,C250 1123,C250 -1123,C2C0 1123,C2C0 -1123,C330 1123,C330 -1123,C3A0 1123,C3A0 -1123,C410 1123,C410 -1123,C480 1123,C480 -1123,C4F0 1123,C4F0 -1123,C560 1123,C560 -1123,C5D0 1123,C5D0 -1123,C640 1123,C640 -1123,C6B0 1123,C6B0 -1123,C720 1123,C720 -1123,C790 1123,C790 -1123,C800 1123,C800 -1123,C870 1123,C870 -1123,C8E0 1123,C8E0 -1123,C950 1123,C950 -1123,C9C0 1123,C9C0 -1123,CA30 1123,CA30 -1123,CAA0 1123,CAA0 -1123,CB10 1123,CB10 -1123,CB80 1123,CB80 -1123,CBF0 1123,CBF0 -1123,CC60 1123,CC60 -1123,CCD0 1123,CCD0 -1123,CD40 1123,CD40 -1123,CDB0 1123,CDB0 -1123,CE20 1123,CE20 -1123,CE90 1123,CE90 -1123,CF00 1123,CF00 -1123,CF70 1123,CF70 -1123,CFE0 1123,CFE0 -1123,D050 1123,D050 -1123,D0C0 1123,D0C0 -1123,D130 1123,D130 -1123,D1A0 1123,D1A0 -1123,D210 1123,D210 -1123,D280 1123,D280 -1123,D2F0 1123,D2F0 -1123,D360 1123,D360 -1123,D3D0 1123,D3D0 -1123,D440 1123,D440 -1123,D4B0 1123,D4B0 -1123,D520 1123,D520 -1123,D590 1123,D590 -1123,D600 1123,D600 -1123,D670 1123,D670 -1123,D6E0 1123,D6E0 -1123,D750 1123,D750 -1124,AC00 1124,AC00 -1124,AC70 1124,AC70 -1124,ACE0 1124,ACE0 -1124,AD50 1124,AD50 -1124,ADC0 1124,ADC0 -1124,AE30 1124,AE30 -1124,AEA0 1124,AEA0 -1124,AF10 1124,AF10 -1124,AF80 1124,AF80 -1124,AFF0 1124,AFF0 -1124,B060 1124,B060 -1124,B0D0 1124,B0D0 -1124,B140 1124,B140 -1124,B1B0 1124,B1B0 -1124,B220 1124,B220 -1124,B290 1124,B290 -1124,B300 1124,B300 -1124,B370 1124,B370 -1124,B3E0 1124,B3E0 -1124,B450 1124,B450 -1124,B4C0 1124,B4C0 -1124,B530 1124,B530 -1124,B5A0 1124,B5A0 -1124,B610 1124,B610 -1124,B680 1124,B680 -1124,B6F0 1124,B6F0 -1124,B760 1124,B760 -1124,B7D0 1124,B7D0 -1124,B840 1124,B840 -1124,B8B0 1124,B8B0 -1124,B920 1124,B920 -1124,B990 1124,B990 -1124,BA00 1124,BA00 -1124,BA70 1124,BA70 -1124,BAE0 1124,BAE0 -1124,BB50 1124,BB50 -1124,BBC0 1124,BBC0 -1124,BC30 1124,BC30 -1124,BCA0 1124,BCA0 -1124,BD10 1124,BD10 -1124,BD80 1124,BD80 -1124,BDF0 1124,BDF0 -1124,BE60 1124,BE60 -1124,BED0 1124,BED0 -1124,BF40 1124,BF40 -1124,BFB0 1124,BFB0 -1124,C020 1124,C020 -1124,C090 1124,C090 -1124,C100 1124,C100 -1124,C170 1124,C170 -1124,C1E0 1124,C1E0 -1124,C250 1124,C250 -1124,C2C0 1124,C2C0 -1124,C330 1124,C330 -1124,C3A0 1124,C3A0 -1124,C410 1124,C410 -1124,C480 1124,C480 -1124,C4F0 1124,C4F0 -1124,C560 1124,C560 -1124,C5D0 1124,C5D0 -1124,C640 1124,C640 -1124,C6B0 1124,C6B0 -1124,C720 1124,C720 -1124,C790 1124,C790 -1124,C800 1124,C800 -1124,C870 1124,C870 -1124,C8E0 1124,C8E0 -1124,C950 1124,C950 -1124,C9C0 1124,C9C0 -1124,CA30 1124,CA30 -1124,CAA0 1124,CAA0 -1124,CB10 1124,CB10 -1124,CB80 1124,CB80 -1124,CBF0 1124,CBF0 -1124,CC60 1124,CC60 -1124,CCD0 1124,CCD0 -1124,CD40 1124,CD40 -1124,CDB0 1124,CDB0 -1124,CE20 1124,CE20 -1124,CE90 1124,CE90 -1124,CF00 1124,CF00 -1124,CF70 1124,CF70 -1124,CFE0 1124,CFE0 -1124,D050 1124,D050 -1124,D0C0 1124,D0C0 -1124,D130 1124,D130 -1124,D1A0 1124,D1A0 -1124,D210 1124,D210 -1124,D280 1124,D280 -1124,D2F0 1124,D2F0 -1124,D360 1124,D360 -1124,D3D0 1124,D3D0 -1124,D440 1124,D440 -1124,D4B0 1124,D4B0 -1124,D520 1124,D520 -1124,D590 1124,D590 -1124,D600 1124,D600 -1124,D670 1124,D670 -1124,D6E0 1124,D6E0 -1124,D750 1124,D750 -1125,AC00 1125,AC00 -1125,AC70 1125,AC70 -1125,ACE0 1125,ACE0 -1125,AD50 1125,AD50 -1125,ADC0 1125,ADC0 -1125,AE30 1125,AE30 -1125,AEA0 1125,AEA0 -1125,AF10 1125,AF10 -1125,AF80 1125,AF80 -1125,AFF0 1125,AFF0 -1125,B060 1125,B060 -1125,B0D0 1125,B0D0 -1125,B140 1125,B140 -1125,B1B0 1125,B1B0 -1125,B220 1125,B220 -1125,B290 1125,B290 -1125,B300 1125,B300 -1125,B370 1125,B370 -1125,B3E0 1125,B3E0 -1125,B450 1125,B450 -1125,B4C0 1125,B4C0 -1125,B530 1125,B530 -1125,B5A0 1125,B5A0 -1125,B610 1125,B610 -1125,B680 1125,B680 -1125,B6F0 1125,B6F0 -1125,B760 1125,B760 -1125,B7D0 1125,B7D0 -1125,B840 1125,B840 -1125,B8B0 1125,B8B0 -1125,B920 1125,B920 -1125,B990 1125,B990 -1125,BA00 1125,BA00 -1125,BA70 1125,BA70 -1125,BAE0 1125,BAE0 -1125,BB50 1125,BB50 -1125,BBC0 1125,BBC0 -1125,BC30 1125,BC30 -1125,BCA0 1125,BCA0 -1125,BD10 1125,BD10 -1125,BD80 1125,BD80 -1125,BDF0 1125,BDF0 -1125,BE60 1125,BE60 -1125,BED0 1125,BED0 -1125,BF40 1125,BF40 -1125,BFB0 1125,BFB0 -1125,C020 1125,C020 -1125,C090 1125,C090 -1125,C100 1125,C100 -1125,C170 1125,C170 -1125,C1E0 1125,C1E0 -1125,C250 1125,C250 -1125,C2C0 1125,C2C0 -1125,C330 1125,C330 -1125,C3A0 1125,C3A0 -1125,C410 1125,C410 -1125,C480 1125,C480 -1125,C4F0 1125,C4F0 -1125,C560 1125,C560 -1125,C5D0 1125,C5D0 -1125,C640 1125,C640 -1125,C6B0 1125,C6B0 -1125,C720 1125,C720 -1125,C790 1125,C790 -1125,C800 1125,C800 -1125,C870 1125,C870 -1125,C8E0 1125,C8E0 -1125,C950 1125,C950 -1125,C9C0 1125,C9C0 -1125,CA30 1125,CA30 -1125,CAA0 1125,CAA0 -1125,CB10 1125,CB10 -1125,CB80 1125,CB80 -1125,CBF0 1125,CBF0 -1125,CC60 1125,CC60 -1125,CCD0 1125,CCD0 -1125,CD40 1125,CD40 -1125,CDB0 1125,CDB0 -1125,CE20 1125,CE20 -1125,CE90 1125,CE90 -1125,CF00 1125,CF00 -1125,CF70 1125,CF70 -1125,CFE0 1125,CFE0 -1125,D050 1125,D050 -1125,D0C0 1125,D0C0 -1125,D130 1125,D130 -1125,D1A0 1125,D1A0 -1125,D210 1125,D210 -1125,D280 1125,D280 -1125,D2F0 1125,D2F0 -1125,D360 1125,D360 -1125,D3D0 1125,D3D0 -1125,D440 1125,D440 -1125,D4B0 1125,D4B0 -1125,D520 1125,D520 -1125,D590 1125,D590 -1125,D600 1125,D600 -1125,D670 1125,D670 -1125,D6E0 1125,D6E0 -1125,D750 1125,D750 -1126,AC00 1126,AC00 -1126,AC70 1126,AC70 -1126,ACE0 1126,ACE0 -1126,AD50 1126,AD50 -1126,ADC0 1126,ADC0 -1126,AE30 1126,AE30 -1126,AEA0 1126,AEA0 -1126,AF10 1126,AF10 -1126,AF80 1126,AF80 -1126,AFF0 1126,AFF0 -1126,B060 1126,B060 -1126,B0D0 1126,B0D0 -1126,B140 1126,B140 -1126,B1B0 1126,B1B0 -1126,B220 1126,B220 -1126,B290 1126,B290 -1126,B300 1126,B300 -1126,B370 1126,B370 -1126,B3E0 1126,B3E0 -1126,B450 1126,B450 -1126,B4C0 1126,B4C0 -1126,B530 1126,B530 -1126,B5A0 1126,B5A0 -1126,B610 1126,B610 -1126,B680 1126,B680 -1126,B6F0 1126,B6F0 -1126,B760 1126,B760 -1126,B7D0 1126,B7D0 -1126,B840 1126,B840 -1126,B8B0 1126,B8B0 -1126,B920 1126,B920 -1126,B990 1126,B990 -1126,BA00 1126,BA00 -1126,BA70 1126,BA70 -1126,BAE0 1126,BAE0 -1126,BB50 1126,BB50 -1126,BBC0 1126,BBC0 -1126,BC30 1126,BC30 -1126,BCA0 1126,BCA0 -1126,BD10 1126,BD10 -1126,BD80 1126,BD80 -1126,BDF0 1126,BDF0 -1126,BE60 1126,BE60 -1126,BED0 1126,BED0 -1126,BF40 1126,BF40 -1126,BFB0 1126,BFB0 -1126,C020 1126,C020 -1126,C090 1126,C090 -1126,C100 1126,C100 -1126,C170 1126,C170 -1126,C1E0 1126,C1E0 -1126,C250 1126,C250 -1126,C2C0 1126,C2C0 -1126,C330 1126,C330 -1126,C3A0 1126,C3A0 -1126,C410 1126,C410 -1126,C480 1126,C480 -1126,C4F0 1126,C4F0 -1126,C560 1126,C560 -1126,C5D0 1126,C5D0 -1126,C640 1126,C640 -1126,C6B0 1126,C6B0 -1126,C720 1126,C720 -1126,C790 1126,C790 -1126,C800 1126,C800 -1126,C870 1126,C870 -1126,C8E0 1126,C8E0 -1126,C950 1126,C950 -1126,C9C0 1126,C9C0 -1126,CA30 1126,CA30 -1126,CAA0 1126,CAA0 -1126,CB10 1126,CB10 -1126,CB80 1126,CB80 -1126,CBF0 1126,CBF0 -1126,CC60 1126,CC60 -1126,CCD0 1126,CCD0 -1126,CD40 1126,CD40 -1126,CDB0 1126,CDB0 -1126,CE20 1126,CE20 -1126,CE90 1126,CE90 -1126,CF00 1126,CF00 -1126,CF70 1126,CF70 -1126,CFE0 1126,CFE0 -1126,D050 1126,D050 -1126,D0C0 1126,D0C0 -1126,D130 1126,D130 -1126,D1A0 1126,D1A0 -1126,D210 1126,D210 -1126,D280 1126,D280 -1126,D2F0 1126,D2F0 -1126,D360 1126,D360 -1126,D3D0 1126,D3D0 -1126,D440 1126,D440 -1126,D4B0 1126,D4B0 -1126,D520 1126,D520 -1126,D590 1126,D590 -1126,D600 1126,D600 -1126,D670 1126,D670 -1126,D6E0 1126,D6E0 -1126,D750 1126,D750 -1127,AC00 1127,AC00 -1127,AC70 1127,AC70 -1127,ACE0 1127,ACE0 -1127,AD50 1127,AD50 -1127,ADC0 1127,ADC0 -1127,AE30 1127,AE30 -1127,AEA0 1127,AEA0 -1127,AF10 1127,AF10 -1127,AF80 1127,AF80 -1127,AFF0 1127,AFF0 -1127,B060 1127,B060 -1127,B0D0 1127,B0D0 -1127,B140 1127,B140 -1127,B1B0 1127,B1B0 -1127,B220 1127,B220 -1127,B290 1127,B290 -1127,B300 1127,B300 -1127,B370 1127,B370 -1127,B3E0 1127,B3E0 -1127,B450 1127,B450 -1127,B4C0 1127,B4C0 -1127,B530 1127,B530 -1127,B5A0 1127,B5A0 -1127,B610 1127,B610 -1127,B680 1127,B680 -1127,B6F0 1127,B6F0 -1127,B760 1127,B760 -1127,B7D0 1127,B7D0 -1127,B840 1127,B840 -1127,B8B0 1127,B8B0 -1127,B920 1127,B920 -1127,B990 1127,B990 -1127,BA00 1127,BA00 -1127,BA70 1127,BA70 -1127,BAE0 1127,BAE0 -1127,BB50 1127,BB50 -1127,BBC0 1127,BBC0 -1127,BC30 1127,BC30 -1127,BCA0 1127,BCA0 -1127,BD10 1127,BD10 -1127,BD80 1127,BD80 -1127,BDF0 1127,BDF0 -1127,BE60 1127,BE60 -1127,BED0 1127,BED0 -1127,BF40 1127,BF40 -1127,BFB0 1127,BFB0 -1127,C020 1127,C020 -1127,C090 1127,C090 -1127,C100 1127,C100 -1127,C170 1127,C170 -1127,C1E0 1127,C1E0 -1127,C250 1127,C250 -1127,C2C0 1127,C2C0 -1127,C330 1127,C330 -1127,C3A0 1127,C3A0 -1127,C410 1127,C410 -1127,C480 1127,C480 -1127,C4F0 1127,C4F0 -1127,C560 1127,C560 -1127,C5D0 1127,C5D0 -1127,C640 1127,C640 -1127,C6B0 1127,C6B0 -1127,C720 1127,C720 -1127,C790 1127,C790 -1127,C800 1127,C800 -1127,C870 1127,C870 -1127,C8E0 1127,C8E0 -1127,C950 1127,C950 -1127,C9C0 1127,C9C0 -1127,CA30 1127,CA30 -1127,CAA0 1127,CAA0 -1127,CB10 1127,CB10 -1127,CB80 1127,CB80 -1127,CBF0 1127,CBF0 -1127,CC60 1127,CC60 -1127,CCD0 1127,CCD0 -1127,CD40 1127,CD40 -1127,CDB0 1127,CDB0 -1127,CE20 1127,CE20 -1127,CE90 1127,CE90 -1127,CF00 1127,CF00 -1127,CF70 1127,CF70 -1127,CFE0 1127,CFE0 -1127,D050 1127,D050 -1127,D0C0 1127,D0C0 -1127,D130 1127,D130 -1127,D1A0 1127,D1A0 -1127,D210 1127,D210 -1127,D280 1127,D280 -1127,D2F0 1127,D2F0 -1127,D360 1127,D360 -1127,D3D0 1127,D3D0 -1127,D440 1127,D440 -1127,D4B0 1127,D4B0 -1127,D520 1127,D520 -1127,D590 1127,D590 -1127,D600 1127,D600 -1127,D670 1127,D670 -1127,D6E0 1127,D6E0 -1127,D750 1127,D750 -1128,AC00 1128,AC00 -1128,AC70 1128,AC70 -1128,ACE0 1128,ACE0 -1128,AD50 1128,AD50 -1128,ADC0 1128,ADC0 -1128,AE30 1128,AE30 -1128,AEA0 1128,AEA0 -1128,AF10 1128,AF10 -1128,AF80 1128,AF80 -1128,AFF0 1128,AFF0 -1128,B060 1128,B060 -1128,B0D0 1128,B0D0 -1128,B140 1128,B140 -1128,B1B0 1128,B1B0 -1128,B220 1128,B220 -1128,B290 1128,B290 -1128,B300 1128,B300 -1128,B370 1128,B370 -1128,B3E0 1128,B3E0 -1128,B450 1128,B450 -1128,B4C0 1128,B4C0 -1128,B530 1128,B530 -1128,B5A0 1128,B5A0 -1128,B610 1128,B610 -1128,B680 1128,B680 -1128,B6F0 1128,B6F0 -1128,B760 1128,B760 -1128,B7D0 1128,B7D0 -1128,B840 1128,B840 -1128,B8B0 1128,B8B0 -1128,B920 1128,B920 -1128,B990 1128,B990 -1128,BA00 1128,BA00 -1128,BA70 1128,BA70 -1128,BAE0 1128,BAE0 -1128,BB50 1128,BB50 -1128,BBC0 1128,BBC0 -1128,BC30 1128,BC30 -1128,BCA0 1128,BCA0 -1128,BD10 1128,BD10 -1128,BD80 1128,BD80 -1128,BDF0 1128,BDF0 -1128,BE60 1128,BE60 -1128,BED0 1128,BED0 -1128,BF40 1128,BF40 -1128,BFB0 1128,BFB0 -1128,C020 1128,C020 -1128,C090 1128,C090 -1128,C100 1128,C100 -1128,C170 1128,C170 -1128,C1E0 1128,C1E0 -1128,C250 1128,C250 -1128,C2C0 1128,C2C0 -1128,C330 1128,C330 -1128,C3A0 1128,C3A0 -1128,C410 1128,C410 -1128,C480 1128,C480 -1128,C4F0 1128,C4F0 -1128,C560 1128,C560 -1128,C5D0 1128,C5D0 -1128,C640 1128,C640 -1128,C6B0 1128,C6B0 -1128,C720 1128,C720 -1128,C790 1128,C790 -1128,C800 1128,C800 -1128,C870 1128,C870 -1128,C8E0 1128,C8E0 -1128,C950 1128,C950 -1128,C9C0 1128,C9C0 -1128,CA30 1128,CA30 -1128,CAA0 1128,CAA0 -1128,CB10 1128,CB10 -1128,CB80 1128,CB80 -1128,CBF0 1128,CBF0 -1128,CC60 1128,CC60 -1128,CCD0 1128,CCD0 -1128,CD40 1128,CD40 -1128,CDB0 1128,CDB0 -1128,CE20 1128,CE20 -1128,CE90 1128,CE90 -1128,CF00 1128,CF00 -1128,CF70 1128,CF70 -1128,CFE0 1128,CFE0 -1128,D050 1128,D050 -1128,D0C0 1128,D0C0 -1128,D130 1128,D130 -1128,D1A0 1128,D1A0 -1128,D210 1128,D210 -1128,D280 1128,D280 -1128,D2F0 1128,D2F0 -1128,D360 1128,D360 -1128,D3D0 1128,D3D0 -1128,D440 1128,D440 -1128,D4B0 1128,D4B0 -1128,D520 1128,D520 -1128,D590 1128,D590 -1128,D600 1128,D600 -1128,D670 1128,D670 -1128,D6E0 1128,D6E0 -1128,D750 1128,D750 -1129,AC00 1129,AC00 -1129,AC70 1129,AC70 -1129,ACE0 1129,ACE0 -1129,AD50 1129,AD50 -1129,ADC0 1129,ADC0 -1129,AE30 1129,AE30 -1129,AEA0 1129,AEA0 -1129,AF10 1129,AF10 -1129,AF80 1129,AF80 -1129,AFF0 1129,AFF0 -1129,B060 1129,B060 -1129,B0D0 1129,B0D0 -1129,B140 1129,B140 -1129,B1B0 1129,B1B0 -1129,B220 1129,B220 -1129,B290 1129,B290 -1129,B300 1129,B300 -1129,B370 1129,B370 -1129,B3E0 1129,B3E0 -1129,B450 1129,B450 -1129,B4C0 1129,B4C0 -1129,B530 1129,B530 -1129,B5A0 1129,B5A0 -1129,B610 1129,B610 -1129,B680 1129,B680 -1129,B6F0 1129,B6F0 -1129,B760 1129,B760 -1129,B7D0 1129,B7D0 -1129,B840 1129,B840 -1129,B8B0 1129,B8B0 -1129,B920 1129,B920 -1129,B990 1129,B990 -1129,BA00 1129,BA00 -1129,BA70 1129,BA70 -1129,BAE0 1129,BAE0 -1129,BB50 1129,BB50 -1129,BBC0 1129,BBC0 -1129,BC30 1129,BC30 -1129,BCA0 1129,BCA0 -1129,BD10 1129,BD10 -1129,BD80 1129,BD80 -1129,BDF0 1129,BDF0 -1129,BE60 1129,BE60 -1129,BED0 1129,BED0 -1129,BF40 1129,BF40 -1129,BFB0 1129,BFB0 -1129,C020 1129,C020 -1129,C090 1129,C090 -1129,C100 1129,C100 -1129,C170 1129,C170 -1129,C1E0 1129,C1E0 -1129,C250 1129,C250 -1129,C2C0 1129,C2C0 -1129,C330 1129,C330 -1129,C3A0 1129,C3A0 -1129,C410 1129,C410 -1129,C480 1129,C480 -1129,C4F0 1129,C4F0 -1129,C560 1129,C560 -1129,C5D0 1129,C5D0 -1129,C640 1129,C640 -1129,C6B0 1129,C6B0 -1129,C720 1129,C720 -1129,C790 1129,C790 -1129,C800 1129,C800 -1129,C870 1129,C870 -1129,C8E0 1129,C8E0 -1129,C950 1129,C950 -1129,C9C0 1129,C9C0 -1129,CA30 1129,CA30 -1129,CAA0 1129,CAA0 -1129,CB10 1129,CB10 -1129,CB80 1129,CB80 -1129,CBF0 1129,CBF0 -1129,CC60 1129,CC60 -1129,CCD0 1129,CCD0 -1129,CD40 1129,CD40 -1129,CDB0 1129,CDB0 -1129,CE20 1129,CE20 -1129,CE90 1129,CE90 -1129,CF00 1129,CF00 -1129,CF70 1129,CF70 -1129,CFE0 1129,CFE0 -1129,D050 1129,D050 -1129,D0C0 1129,D0C0 -1129,D130 1129,D130 -1129,D1A0 1129,D1A0 -1129,D210 1129,D210 -1129,D280 1129,D280 -1129,D2F0 1129,D2F0 -1129,D360 1129,D360 -1129,D3D0 1129,D3D0 -1129,D440 1129,D440 -1129,D4B0 1129,D4B0 -1129,D520 1129,D520 -1129,D590 1129,D590 -1129,D600 1129,D600 -1129,D670 1129,D670 -1129,D6E0 1129,D6E0 -1129,D750 1129,D750 -112A,AC00 112A,AC00 -112A,AC70 112A,AC70 -112A,ACE0 112A,ACE0 -112A,AD50 112A,AD50 -112A,ADC0 112A,ADC0 -112A,AE30 112A,AE30 -112A,AEA0 112A,AEA0 -112A,AF10 112A,AF10 -112A,AF80 112A,AF80 -112A,AFF0 112A,AFF0 -112A,B060 112A,B060 -112A,B0D0 112A,B0D0 -112A,B140 112A,B140 -112A,B1B0 112A,B1B0 -112A,B220 112A,B220 -112A,B290 112A,B290 -112A,B300 112A,B300 -112A,B370 112A,B370 -112A,B3E0 112A,B3E0 -112A,B450 112A,B450 -112A,B4C0 112A,B4C0 -112A,B530 112A,B530 -112A,B5A0 112A,B5A0 -112A,B610 112A,B610 -112A,B680 112A,B680 -112A,B6F0 112A,B6F0 -112A,B760 112A,B760 -112A,B7D0 112A,B7D0 -112A,B840 112A,B840 -112A,B8B0 112A,B8B0 -112A,B920 112A,B920 -112A,B990 112A,B990 -112A,BA00 112A,BA00 -112A,BA70 112A,BA70 -112A,BAE0 112A,BAE0 -112A,BB50 112A,BB50 -112A,BBC0 112A,BBC0 -112A,BC30 112A,BC30 -112A,BCA0 112A,BCA0 -112A,BD10 112A,BD10 -112A,BD80 112A,BD80 -112A,BDF0 112A,BDF0 -112A,BE60 112A,BE60 -112A,BED0 112A,BED0 -112A,BF40 112A,BF40 -112A,BFB0 112A,BFB0 -112A,C020 112A,C020 -112A,C090 112A,C090 -112A,C100 112A,C100 -112A,C170 112A,C170 -112A,C1E0 112A,C1E0 -112A,C250 112A,C250 -112A,C2C0 112A,C2C0 -112A,C330 112A,C330 -112A,C3A0 112A,C3A0 -112A,C410 112A,C410 -112A,C480 112A,C480 -112A,C4F0 112A,C4F0 -112A,C560 112A,C560 -112A,C5D0 112A,C5D0 -112A,C640 112A,C640 -112A,C6B0 112A,C6B0 -112A,C720 112A,C720 -112A,C790 112A,C790 -112A,C800 112A,C800 -112A,C870 112A,C870 -112A,C8E0 112A,C8E0 -112A,C950 112A,C950 -112A,C9C0 112A,C9C0 -112A,CA30 112A,CA30 -112A,CAA0 112A,CAA0 -112A,CB10 112A,CB10 -112A,CB80 112A,CB80 -112A,CBF0 112A,CBF0 -112A,CC60 112A,CC60 -112A,CCD0 112A,CCD0 -112A,CD40 112A,CD40 -112A,CDB0 112A,CDB0 -112A,CE20 112A,CE20 -112A,CE90 112A,CE90 -112A,CF00 112A,CF00 -112A,CF70 112A,CF70 -112A,CFE0 112A,CFE0 -112A,D050 112A,D050 -112A,D0C0 112A,D0C0 -112A,D130 112A,D130 -112A,D1A0 112A,D1A0 -112A,D210 112A,D210 -112A,D280 112A,D280 -112A,D2F0 112A,D2F0 -112A,D360 112A,D360 -112A,D3D0 112A,D3D0 -112A,D440 112A,D440 -112A,D4B0 112A,D4B0 -112A,D520 112A,D520 -112A,D590 112A,D590 -112A,D600 112A,D600 -112A,D670 112A,D670 -112A,D6E0 112A,D6E0 -112A,D750 112A,D750 -112B,AC00 112B,AC00 -112B,AC70 112B,AC70 -112B,ACE0 112B,ACE0 -112B,AD50 112B,AD50 -112B,ADC0 112B,ADC0 -112B,AE30 112B,AE30 -112B,AEA0 112B,AEA0 -112B,AF10 112B,AF10 -112B,AF80 112B,AF80 -112B,AFF0 112B,AFF0 -112B,B060 112B,B060 -112B,B0D0 112B,B0D0 -112B,B140 112B,B140 -112B,B1B0 112B,B1B0 -112B,B220 112B,B220 -112B,B290 112B,B290 -112B,B300 112B,B300 -112B,B370 112B,B370 -112B,B3E0 112B,B3E0 -112B,B450 112B,B450 -112B,B4C0 112B,B4C0 -112B,B530 112B,B530 -112B,B5A0 112B,B5A0 -112B,B610 112B,B610 -112B,B680 112B,B680 -112B,B6F0 112B,B6F0 -112B,B760 112B,B760 -112B,B7D0 112B,B7D0 -112B,B840 112B,B840 -112B,B8B0 112B,B8B0 -112B,B920 112B,B920 -112B,B990 112B,B990 -112B,BA00 112B,BA00 -112B,BA70 112B,BA70 -112B,BAE0 112B,BAE0 -112B,BB50 112B,BB50 -112B,BBC0 112B,BBC0 -112B,BC30 112B,BC30 -112B,BCA0 112B,BCA0 -112B,BD10 112B,BD10 -112B,BD80 112B,BD80 -112B,BDF0 112B,BDF0 -112B,BE60 112B,BE60 -112B,BED0 112B,BED0 -112B,BF40 112B,BF40 -112B,BFB0 112B,BFB0 -112B,C020 112B,C020 -112B,C090 112B,C090 -112B,C100 112B,C100 -112B,C170 112B,C170 -112B,C1E0 112B,C1E0 -112B,C250 112B,C250 -112B,C2C0 112B,C2C0 -112B,C330 112B,C330 -112B,C3A0 112B,C3A0 -112B,C410 112B,C410 -112B,C480 112B,C480 -112B,C4F0 112B,C4F0 -112B,C560 112B,C560 -112B,C5D0 112B,C5D0 -112B,C640 112B,C640 -112B,C6B0 112B,C6B0 -112B,C720 112B,C720 -112B,C790 112B,C790 -112B,C800 112B,C800 -112B,C870 112B,C870 -112B,C8E0 112B,C8E0 -112B,C950 112B,C950 -112B,C9C0 112B,C9C0 -112B,CA30 112B,CA30 -112B,CAA0 112B,CAA0 -112B,CB10 112B,CB10 -112B,CB80 112B,CB80 -112B,CBF0 112B,CBF0 -112B,CC60 112B,CC60 -112B,CCD0 112B,CCD0 -112B,CD40 112B,CD40 -112B,CDB0 112B,CDB0 -112B,CE20 112B,CE20 -112B,CE90 112B,CE90 -112B,CF00 112B,CF00 -112B,CF70 112B,CF70 -112B,CFE0 112B,CFE0 -112B,D050 112B,D050 -112B,D0C0 112B,D0C0 -112B,D130 112B,D130 -112B,D1A0 112B,D1A0 -112B,D210 112B,D210 -112B,D280 112B,D280 -112B,D2F0 112B,D2F0 -112B,D360 112B,D360 -112B,D3D0 112B,D3D0 -112B,D440 112B,D440 -112B,D4B0 112B,D4B0 -112B,D520 112B,D520 -112B,D590 112B,D590 -112B,D600 112B,D600 -112B,D670 112B,D670 -112B,D6E0 112B,D6E0 -112B,D750 112B,D750 -112C,AC00 112C,AC00 -112C,AC70 112C,AC70 -112C,ACE0 112C,ACE0 -112C,AD50 112C,AD50 -112C,ADC0 112C,ADC0 -112C,AE30 112C,AE30 -112C,AEA0 112C,AEA0 -112C,AF10 112C,AF10 -112C,AF80 112C,AF80 -112C,AFF0 112C,AFF0 -112C,B060 112C,B060 -112C,B0D0 112C,B0D0 -112C,B140 112C,B140 -112C,B1B0 112C,B1B0 -112C,B220 112C,B220 -112C,B290 112C,B290 -112C,B300 112C,B300 -112C,B370 112C,B370 -112C,B3E0 112C,B3E0 -112C,B450 112C,B450 -112C,B4C0 112C,B4C0 -112C,B530 112C,B530 -112C,B5A0 112C,B5A0 -112C,B610 112C,B610 -112C,B680 112C,B680 -112C,B6F0 112C,B6F0 -112C,B760 112C,B760 -112C,B7D0 112C,B7D0 -112C,B840 112C,B840 -112C,B8B0 112C,B8B0 -112C,B920 112C,B920 -112C,B990 112C,B990 -112C,BA00 112C,BA00 -112C,BA70 112C,BA70 -112C,BAE0 112C,BAE0 -112C,BB50 112C,BB50 -112C,BBC0 112C,BBC0 -112C,BC30 112C,BC30 -112C,BCA0 112C,BCA0 -112C,BD10 112C,BD10 -112C,BD80 112C,BD80 -112C,BDF0 112C,BDF0 -112C,BE60 112C,BE60 -112C,BED0 112C,BED0 -112C,BF40 112C,BF40 -112C,BFB0 112C,BFB0 -112C,C020 112C,C020 -112C,C090 112C,C090 -112C,C100 112C,C100 -112C,C170 112C,C170 -112C,C1E0 112C,C1E0 -112C,C250 112C,C250 -112C,C2C0 112C,C2C0 -112C,C330 112C,C330 -112C,C3A0 112C,C3A0 -112C,C410 112C,C410 -112C,C480 112C,C480 -112C,C4F0 112C,C4F0 -112C,C560 112C,C560 -112C,C5D0 112C,C5D0 -112C,C640 112C,C640 -112C,C6B0 112C,C6B0 -112C,C720 112C,C720 -112C,C790 112C,C790 -112C,C800 112C,C800 -112C,C870 112C,C870 -112C,C8E0 112C,C8E0 -112C,C950 112C,C950 -112C,C9C0 112C,C9C0 -112C,CA30 112C,CA30 -112C,CAA0 112C,CAA0 -112C,CB10 112C,CB10 -112C,CB80 112C,CB80 -112C,CBF0 112C,CBF0 -112C,CC60 112C,CC60 -112C,CCD0 112C,CCD0 -112C,CD40 112C,CD40 -112C,CDB0 112C,CDB0 -112C,CE20 112C,CE20 -112C,CE90 112C,CE90 -112C,CF00 112C,CF00 -112C,CF70 112C,CF70 -112C,CFE0 112C,CFE0 -112C,D050 112C,D050 -112C,D0C0 112C,D0C0 -112C,D130 112C,D130 -112C,D1A0 112C,D1A0 -112C,D210 112C,D210 -112C,D280 112C,D280 -112C,D2F0 112C,D2F0 -112C,D360 112C,D360 -112C,D3D0 112C,D3D0 -112C,D440 112C,D440 -112C,D4B0 112C,D4B0 -112C,D520 112C,D520 -112C,D590 112C,D590 -112C,D600 112C,D600 -112C,D670 112C,D670 -112C,D6E0 112C,D6E0 -112C,D750 112C,D750 -112D,AC00 112D,AC00 -112D,AC70 112D,AC70 -112D,ACE0 112D,ACE0 -112D,AD50 112D,AD50 -112D,ADC0 112D,ADC0 -112D,AE30 112D,AE30 -112D,AEA0 112D,AEA0 -112D,AF10 112D,AF10 -112D,AF80 112D,AF80 -112D,AFF0 112D,AFF0 -112D,B060 112D,B060 -112D,B0D0 112D,B0D0 -112D,B140 112D,B140 -112D,B1B0 112D,B1B0 -112D,B220 112D,B220 -112D,B290 112D,B290 -112D,B300 112D,B300 -112D,B370 112D,B370 -112D,B3E0 112D,B3E0 -112D,B450 112D,B450 -112D,B4C0 112D,B4C0 -112D,B530 112D,B530 -112D,B5A0 112D,B5A0 -112D,B610 112D,B610 -112D,B680 112D,B680 -112D,B6F0 112D,B6F0 -112D,B760 112D,B760 -112D,B7D0 112D,B7D0 -112D,B840 112D,B840 -112D,B8B0 112D,B8B0 -112D,B920 112D,B920 -112D,B990 112D,B990 -112D,BA00 112D,BA00 -112D,BA70 112D,BA70 -112D,BAE0 112D,BAE0 -112D,BB50 112D,BB50 -112D,BBC0 112D,BBC0 -112D,BC30 112D,BC30 -112D,BCA0 112D,BCA0 -112D,BD10 112D,BD10 -112D,BD80 112D,BD80 -112D,BDF0 112D,BDF0 -112D,BE60 112D,BE60 -112D,BED0 112D,BED0 -112D,BF40 112D,BF40 -112D,BFB0 112D,BFB0 -112D,C020 112D,C020 -112D,C090 112D,C090 -112D,C100 112D,C100 -112D,C170 112D,C170 -112D,C1E0 112D,C1E0 -112D,C250 112D,C250 -112D,C2C0 112D,C2C0 -112D,C330 112D,C330 -112D,C3A0 112D,C3A0 -112D,C410 112D,C410 -112D,C480 112D,C480 -112D,C4F0 112D,C4F0 -112D,C560 112D,C560 -112D,C5D0 112D,C5D0 -112D,C640 112D,C640 -112D,C6B0 112D,C6B0 -112D,C720 112D,C720 -112D,C790 112D,C790 -112D,C800 112D,C800 -112D,C870 112D,C870 -112D,C8E0 112D,C8E0 -112D,C950 112D,C950 -112D,C9C0 112D,C9C0 -112D,CA30 112D,CA30 -112D,CAA0 112D,CAA0 -112D,CB10 112D,CB10 -112D,CB80 112D,CB80 -112D,CBF0 112D,CBF0 -112D,CC60 112D,CC60 -112D,CCD0 112D,CCD0 -112D,CD40 112D,CD40 -112D,CDB0 112D,CDB0 -112D,CE20 112D,CE20 -112D,CE90 112D,CE90 -112D,CF00 112D,CF00 -112D,CF70 112D,CF70 -112D,CFE0 112D,CFE0 -112D,D050 112D,D050 -112D,D0C0 112D,D0C0 -112D,D130 112D,D130 -112D,D1A0 112D,D1A0 -112D,D210 112D,D210 -112D,D280 112D,D280 -112D,D2F0 112D,D2F0 -112D,D360 112D,D360 -112D,D3D0 112D,D3D0 -112D,D440 112D,D440 -112D,D4B0 112D,D4B0 -112D,D520 112D,D520 -112D,D590 112D,D590 -112D,D600 112D,D600 -112D,D670 112D,D670 -112D,D6E0 112D,D6E0 -112D,D750 112D,D750 -112E,AC00 112E,AC00 -112E,AC70 112E,AC70 -112E,ACE0 112E,ACE0 -112E,AD50 112E,AD50 -112E,ADC0 112E,ADC0 -112E,AE30 112E,AE30 -112E,AEA0 112E,AEA0 -112E,AF10 112E,AF10 -112E,AF80 112E,AF80 -112E,AFF0 112E,AFF0 -112E,B060 112E,B060 -112E,B0D0 112E,B0D0 -112E,B140 112E,B140 -112E,B1B0 112E,B1B0 -112E,B220 112E,B220 -112E,B290 112E,B290 -112E,B300 112E,B300 -112E,B370 112E,B370 -112E,B3E0 112E,B3E0 -112E,B450 112E,B450 -112E,B4C0 112E,B4C0 -112E,B530 112E,B530 -112E,B5A0 112E,B5A0 -112E,B610 112E,B610 -112E,B680 112E,B680 -112E,B6F0 112E,B6F0 -112E,B760 112E,B760 -112E,B7D0 112E,B7D0 -112E,B840 112E,B840 -112E,B8B0 112E,B8B0 -112E,B920 112E,B920 -112E,B990 112E,B990 -112E,BA00 112E,BA00 -112E,BA70 112E,BA70 -112E,BAE0 112E,BAE0 -112E,BB50 112E,BB50 -112E,BBC0 112E,BBC0 -112E,BC30 112E,BC30 -112E,BCA0 112E,BCA0 -112E,BD10 112E,BD10 -112E,BD80 112E,BD80 -112E,BDF0 112E,BDF0 -112E,BE60 112E,BE60 -112E,BED0 112E,BED0 -112E,BF40 112E,BF40 -112E,BFB0 112E,BFB0 -112E,C020 112E,C020 -112E,C090 112E,C090 -112E,C100 112E,C100 -112E,C170 112E,C170 -112E,C1E0 112E,C1E0 -112E,C250 112E,C250 -112E,C2C0 112E,C2C0 -112E,C330 112E,C330 -112E,C3A0 112E,C3A0 -112E,C410 112E,C410 -112E,C480 112E,C480 -112E,C4F0 112E,C4F0 -112E,C560 112E,C560 -112E,C5D0 112E,C5D0 -112E,C640 112E,C640 -112E,C6B0 112E,C6B0 -112E,C720 112E,C720 -112E,C790 112E,C790 -112E,C800 112E,C800 -112E,C870 112E,C870 -112E,C8E0 112E,C8E0 -112E,C950 112E,C950 -112E,C9C0 112E,C9C0 -112E,CA30 112E,CA30 -112E,CAA0 112E,CAA0 -112E,CB10 112E,CB10 -112E,CB80 112E,CB80 -112E,CBF0 112E,CBF0 -112E,CC60 112E,CC60 -112E,CCD0 112E,CCD0 -112E,CD40 112E,CD40 -112E,CDB0 112E,CDB0 -112E,CE20 112E,CE20 -112E,CE90 112E,CE90 -112E,CF00 112E,CF00 -112E,CF70 112E,CF70 -112E,CFE0 112E,CFE0 -112E,D050 112E,D050 -112E,D0C0 112E,D0C0 -112E,D130 112E,D130 -112E,D1A0 112E,D1A0 -112E,D210 112E,D210 -112E,D280 112E,D280 -112E,D2F0 112E,D2F0 -112E,D360 112E,D360 -112E,D3D0 112E,D3D0 -112E,D440 112E,D440 -112E,D4B0 112E,D4B0 -112E,D520 112E,D520 -112E,D590 112E,D590 -112E,D600 112E,D600 -112E,D670 112E,D670 -112E,D6E0 112E,D6E0 -112E,D750 112E,D750 -112F,AC00 112F,AC00 -112F,AC70 112F,AC70 -112F,ACE0 112F,ACE0 -112F,AD50 112F,AD50 -112F,ADC0 112F,ADC0 -112F,AE30 112F,AE30 -112F,AEA0 112F,AEA0 -112F,AF10 112F,AF10 -112F,AF80 112F,AF80 -112F,AFF0 112F,AFF0 -112F,B060 112F,B060 -112F,B0D0 112F,B0D0 -112F,B140 112F,B140 -112F,B1B0 112F,B1B0 -112F,B220 112F,B220 -112F,B290 112F,B290 -112F,B300 112F,B300 -112F,B370 112F,B370 -112F,B3E0 112F,B3E0 -112F,B450 112F,B450 -112F,B4C0 112F,B4C0 -112F,B530 112F,B530 -112F,B5A0 112F,B5A0 -112F,B610 112F,B610 -112F,B680 112F,B680 -112F,B6F0 112F,B6F0 -112F,B760 112F,B760 -112F,B7D0 112F,B7D0 -112F,B840 112F,B840 -112F,B8B0 112F,B8B0 -112F,B920 112F,B920 -112F,B990 112F,B990 -112F,BA00 112F,BA00 -112F,BA70 112F,BA70 -112F,BAE0 112F,BAE0 -112F,BB50 112F,BB50 -112F,BBC0 112F,BBC0 -112F,BC30 112F,BC30 -112F,BCA0 112F,BCA0 -112F,BD10 112F,BD10 -112F,BD80 112F,BD80 -112F,BDF0 112F,BDF0 -112F,BE60 112F,BE60 -112F,BED0 112F,BED0 -112F,BF40 112F,BF40 -112F,BFB0 112F,BFB0 -112F,C020 112F,C020 -112F,C090 112F,C090 -112F,C100 112F,C100 -112F,C170 112F,C170 -112F,C1E0 112F,C1E0 -112F,C250 112F,C250 -112F,C2C0 112F,C2C0 -112F,C330 112F,C330 -112F,C3A0 112F,C3A0 -112F,C410 112F,C410 -112F,C480 112F,C480 -112F,C4F0 112F,C4F0 -112F,C560 112F,C560 -112F,C5D0 112F,C5D0 -112F,C640 112F,C640 -112F,C6B0 112F,C6B0 -112F,C720 112F,C720 -112F,C790 112F,C790 -112F,C800 112F,C800 -112F,C870 112F,C870 -112F,C8E0 112F,C8E0 -112F,C950 112F,C950 -112F,C9C0 112F,C9C0 -112F,CA30 112F,CA30 -112F,CAA0 112F,CAA0 -112F,CB10 112F,CB10 -112F,CB80 112F,CB80 -112F,CBF0 112F,CBF0 -112F,CC60 112F,CC60 -112F,CCD0 112F,CCD0 -112F,CD40 112F,CD40 -112F,CDB0 112F,CDB0 -112F,CE20 112F,CE20 -112F,CE90 112F,CE90 -112F,CF00 112F,CF00 -112F,CF70 112F,CF70 -112F,CFE0 112F,CFE0 -112F,D050 112F,D050 -112F,D0C0 112F,D0C0 -112F,D130 112F,D130 -112F,D1A0 112F,D1A0 -112F,D210 112F,D210 -112F,D280 112F,D280 -112F,D2F0 112F,D2F0 -112F,D360 112F,D360 -112F,D3D0 112F,D3D0 -112F,D440 112F,D440 -112F,D4B0 112F,D4B0 -112F,D520 112F,D520 -112F,D590 112F,D590 -112F,D600 112F,D600 -112F,D670 112F,D670 -112F,D6E0 112F,D6E0 -112F,D750 112F,D750 -1130,AC00 1130,AC00 -1130,AC70 1130,AC70 -1130,ACE0 1130,ACE0 -1130,AD50 1130,AD50 -1130,ADC0 1130,ADC0 -1130,AE30 1130,AE30 -1130,AEA0 1130,AEA0 -1130,AF10 1130,AF10 -1130,AF80 1130,AF80 -1130,AFF0 1130,AFF0 -1130,B060 1130,B060 -1130,B0D0 1130,B0D0 -1130,B140 1130,B140 -1130,B1B0 1130,B1B0 -1130,B220 1130,B220 -1130,B290 1130,B290 -1130,B300 1130,B300 -1130,B370 1130,B370 -1130,B3E0 1130,B3E0 -1130,B450 1130,B450 -1130,B4C0 1130,B4C0 -1130,B530 1130,B530 -1130,B5A0 1130,B5A0 -1130,B610 1130,B610 -1130,B680 1130,B680 -1130,B6F0 1130,B6F0 -1130,B760 1130,B760 -1130,B7D0 1130,B7D0 -1130,B840 1130,B840 -1130,B8B0 1130,B8B0 -1130,B920 1130,B920 -1130,B990 1130,B990 -1130,BA00 1130,BA00 -1130,BA70 1130,BA70 -1130,BAE0 1130,BAE0 -1130,BB50 1130,BB50 -1130,BBC0 1130,BBC0 -1130,BC30 1130,BC30 -1130,BCA0 1130,BCA0 -1130,BD10 1130,BD10 -1130,BD80 1130,BD80 -1130,BDF0 1130,BDF0 -1130,BE60 1130,BE60 -1130,BED0 1130,BED0 -1130,BF40 1130,BF40 -1130,BFB0 1130,BFB0 -1130,C020 1130,C020 -1130,C090 1130,C090 -1130,C100 1130,C100 -1130,C170 1130,C170 -1130,C1E0 1130,C1E0 -1130,C250 1130,C250 -1130,C2C0 1130,C2C0 -1130,C330 1130,C330 -1130,C3A0 1130,C3A0 -1130,C410 1130,C410 -1130,C480 1130,C480 -1130,C4F0 1130,C4F0 -1130,C560 1130,C560 -1130,C5D0 1130,C5D0 -1130,C640 1130,C640 -1130,C6B0 1130,C6B0 -1130,C720 1130,C720 -1130,C790 1130,C790 -1130,C800 1130,C800 -1130,C870 1130,C870 -1130,C8E0 1130,C8E0 -1130,C950 1130,C950 -1130,C9C0 1130,C9C0 -1130,CA30 1130,CA30 -1130,CAA0 1130,CAA0 -1130,CB10 1130,CB10 -1130,CB80 1130,CB80 -1130,CBF0 1130,CBF0 -1130,CC60 1130,CC60 -1130,CCD0 1130,CCD0 -1130,CD40 1130,CD40 -1130,CDB0 1130,CDB0 -1130,CE20 1130,CE20 -1130,CE90 1130,CE90 -1130,CF00 1130,CF00 -1130,CF70 1130,CF70 -1130,CFE0 1130,CFE0 -1130,D050 1130,D050 -1130,D0C0 1130,D0C0 -1130,D130 1130,D130 -1130,D1A0 1130,D1A0 -1130,D210 1130,D210 -1130,D280 1130,D280 -1130,D2F0 1130,D2F0 -1130,D360 1130,D360 -1130,D3D0 1130,D3D0 -1130,D440 1130,D440 -1130,D4B0 1130,D4B0 -1130,D520 1130,D520 -1130,D590 1130,D590 -1130,D600 1130,D600 -1130,D670 1130,D670 -1130,D6E0 1130,D6E0 -1130,D750 1130,D750 -1131,AC00 1131,AC00 -1131,AC70 1131,AC70 -1131,ACE0 1131,ACE0 -1131,AD50 1131,AD50 -1131,ADC0 1131,ADC0 -1131,AE30 1131,AE30 -1131,AEA0 1131,AEA0 -1131,AF10 1131,AF10 -1131,AF80 1131,AF80 -1131,AFF0 1131,AFF0 -1131,B060 1131,B060 -1131,B0D0 1131,B0D0 -1131,B140 1131,B140 -1131,B1B0 1131,B1B0 -1131,B220 1131,B220 -1131,B290 1131,B290 -1131,B300 1131,B300 -1131,B370 1131,B370 -1131,B3E0 1131,B3E0 -1131,B450 1131,B450 -1131,B4C0 1131,B4C0 -1131,B530 1131,B530 -1131,B5A0 1131,B5A0 -1131,B610 1131,B610 -1131,B680 1131,B680 -1131,B6F0 1131,B6F0 -1131,B760 1131,B760 -1131,B7D0 1131,B7D0 -1131,B840 1131,B840 -1131,B8B0 1131,B8B0 -1131,B920 1131,B920 -1131,B990 1131,B990 -1131,BA00 1131,BA00 -1131,BA70 1131,BA70 -1131,BAE0 1131,BAE0 -1131,BB50 1131,BB50 -1131,BBC0 1131,BBC0 -1131,BC30 1131,BC30 -1131,BCA0 1131,BCA0 -1131,BD10 1131,BD10 -1131,BD80 1131,BD80 -1131,BDF0 1131,BDF0 -1131,BE60 1131,BE60 -1131,BED0 1131,BED0 -1131,BF40 1131,BF40 -1131,BFB0 1131,BFB0 -1131,C020 1131,C020 -1131,C090 1131,C090 -1131,C100 1131,C100 -1131,C170 1131,C170 -1131,C1E0 1131,C1E0 -1131,C250 1131,C250 -1131,C2C0 1131,C2C0 -1131,C330 1131,C330 -1131,C3A0 1131,C3A0 -1131,C410 1131,C410 -1131,C480 1131,C480 -1131,C4F0 1131,C4F0 -1131,C560 1131,C560 -1131,C5D0 1131,C5D0 -1131,C640 1131,C640 -1131,C6B0 1131,C6B0 -1131,C720 1131,C720 -1131,C790 1131,C790 -1131,C800 1131,C800 -1131,C870 1131,C870 -1131,C8E0 1131,C8E0 -1131,C950 1131,C950 -1131,C9C0 1131,C9C0 -1131,CA30 1131,CA30 -1131,CAA0 1131,CAA0 -1131,CB10 1131,CB10 -1131,CB80 1131,CB80 -1131,CBF0 1131,CBF0 -1131,CC60 1131,CC60 -1131,CCD0 1131,CCD0 -1131,CD40 1131,CD40 -1131,CDB0 1131,CDB0 -1131,CE20 1131,CE20 -1131,CE90 1131,CE90 -1131,CF00 1131,CF00 -1131,CF70 1131,CF70 -1131,CFE0 1131,CFE0 -1131,D050 1131,D050 -1131,D0C0 1131,D0C0 -1131,D130 1131,D130 -1131,D1A0 1131,D1A0 -1131,D210 1131,D210 -1131,D280 1131,D280 -1131,D2F0 1131,D2F0 -1131,D360 1131,D360 -1131,D3D0 1131,D3D0 -1131,D440 1131,D440 -1131,D4B0 1131,D4B0 -1131,D520 1131,D520 -1131,D590 1131,D590 -1131,D600 1131,D600 -1131,D670 1131,D670 -1131,D6E0 1131,D6E0 -1131,D750 1131,D750 -1132,AC00 1132,AC00 -1132,AC70 1132,AC70 -1132,ACE0 1132,ACE0 -1132,AD50 1132,AD50 -1132,ADC0 1132,ADC0 -1132,AE30 1132,AE30 -1132,AEA0 1132,AEA0 -1132,AF10 1132,AF10 -1132,AF80 1132,AF80 -1132,AFF0 1132,AFF0 -1132,B060 1132,B060 -1132,B0D0 1132,B0D0 -1132,B140 1132,B140 -1132,B1B0 1132,B1B0 -1132,B220 1132,B220 -1132,B290 1132,B290 -1132,B300 1132,B300 -1132,B370 1132,B370 -1132,B3E0 1132,B3E0 -1132,B450 1132,B450 -1132,B4C0 1132,B4C0 -1132,B530 1132,B530 -1132,B5A0 1132,B5A0 -1132,B610 1132,B610 -1132,B680 1132,B680 -1132,B6F0 1132,B6F0 -1132,B760 1132,B760 -1132,B7D0 1132,B7D0 -1132,B840 1132,B840 -1132,B8B0 1132,B8B0 -1132,B920 1132,B920 -1132,B990 1132,B990 -1132,BA00 1132,BA00 -1132,BA70 1132,BA70 -1132,BAE0 1132,BAE0 -1132,BB50 1132,BB50 -1132,BBC0 1132,BBC0 -1132,BC30 1132,BC30 -1132,BCA0 1132,BCA0 -1132,BD10 1132,BD10 -1132,BD80 1132,BD80 -1132,BDF0 1132,BDF0 -1132,BE60 1132,BE60 -1132,BED0 1132,BED0 -1132,BF40 1132,BF40 -1132,BFB0 1132,BFB0 -1132,C020 1132,C020 -1132,C090 1132,C090 -1132,C100 1132,C100 -1132,C170 1132,C170 -1132,C1E0 1132,C1E0 -1132,C250 1132,C250 -1132,C2C0 1132,C2C0 -1132,C330 1132,C330 -1132,C3A0 1132,C3A0 -1132,C410 1132,C410 -1132,C480 1132,C480 -1132,C4F0 1132,C4F0 -1132,C560 1132,C560 -1132,C5D0 1132,C5D0 -1132,C640 1132,C640 -1132,C6B0 1132,C6B0 -1132,C720 1132,C720 -1132,C790 1132,C790 -1132,C800 1132,C800 -1132,C870 1132,C870 -1132,C8E0 1132,C8E0 -1132,C950 1132,C950 -1132,C9C0 1132,C9C0 -1132,CA30 1132,CA30 -1132,CAA0 1132,CAA0 -1132,CB10 1132,CB10 -1132,CB80 1132,CB80 -1132,CBF0 1132,CBF0 -1132,CC60 1132,CC60 -1132,CCD0 1132,CCD0 -1132,CD40 1132,CD40 -1132,CDB0 1132,CDB0 -1132,CE20 1132,CE20 -1132,CE90 1132,CE90 -1132,CF00 1132,CF00 -1132,CF70 1132,CF70 -1132,CFE0 1132,CFE0 -1132,D050 1132,D050 -1132,D0C0 1132,D0C0 -1132,D130 1132,D130 -1132,D1A0 1132,D1A0 -1132,D210 1132,D210 -1132,D280 1132,D280 -1132,D2F0 1132,D2F0 -1132,D360 1132,D360 -1132,D3D0 1132,D3D0 -1132,D440 1132,D440 -1132,D4B0 1132,D4B0 -1132,D520 1132,D520 -1132,D590 1132,D590 -1132,D600 1132,D600 -1132,D670 1132,D670 -1132,D6E0 1132,D6E0 -1132,D750 1132,D750 -1133,AC00 1133,AC00 -1133,AC70 1133,AC70 -1133,ACE0 1133,ACE0 -1133,AD50 1133,AD50 -1133,ADC0 1133,ADC0 -1133,AE30 1133,AE30 -1133,AEA0 1133,AEA0 -1133,AF10 1133,AF10 -1133,AF80 1133,AF80 -1133,AFF0 1133,AFF0 -1133,B060 1133,B060 -1133,B0D0 1133,B0D0 -1133,B140 1133,B140 -1133,B1B0 1133,B1B0 -1133,B220 1133,B220 -1133,B290 1133,B290 -1133,B300 1133,B300 -1133,B370 1133,B370 -1133,B3E0 1133,B3E0 -1133,B450 1133,B450 -1133,B4C0 1133,B4C0 -1133,B530 1133,B530 -1133,B5A0 1133,B5A0 -1133,B610 1133,B610 -1133,B680 1133,B680 -1133,B6F0 1133,B6F0 -1133,B760 1133,B760 -1133,B7D0 1133,B7D0 -1133,B840 1133,B840 -1133,B8B0 1133,B8B0 -1133,B920 1133,B920 -1133,B990 1133,B990 -1133,BA00 1133,BA00 -1133,BA70 1133,BA70 -1133,BAE0 1133,BAE0 -1133,BB50 1133,BB50 -1133,BBC0 1133,BBC0 -1133,BC30 1133,BC30 -1133,BCA0 1133,BCA0 -1133,BD10 1133,BD10 -1133,BD80 1133,BD80 -1133,BDF0 1133,BDF0 -1133,BE60 1133,BE60 -1133,BED0 1133,BED0 -1133,BF40 1133,BF40 -1133,BFB0 1133,BFB0 -1133,C020 1133,C020 -1133,C090 1133,C090 -1133,C100 1133,C100 -1133,C170 1133,C170 -1133,C1E0 1133,C1E0 -1133,C250 1133,C250 -1133,C2C0 1133,C2C0 -1133,C330 1133,C330 -1133,C3A0 1133,C3A0 -1133,C410 1133,C410 -1133,C480 1133,C480 -1133,C4F0 1133,C4F0 -1133,C560 1133,C560 -1133,C5D0 1133,C5D0 -1133,C640 1133,C640 -1133,C6B0 1133,C6B0 -1133,C720 1133,C720 -1133,C790 1133,C790 -1133,C800 1133,C800 -1133,C870 1133,C870 -1133,C8E0 1133,C8E0 -1133,C950 1133,C950 -1133,C9C0 1133,C9C0 -1133,CA30 1133,CA30 -1133,CAA0 1133,CAA0 -1133,CB10 1133,CB10 -1133,CB80 1133,CB80 -1133,CBF0 1133,CBF0 -1133,CC60 1133,CC60 -1133,CCD0 1133,CCD0 -1133,CD40 1133,CD40 -1133,CDB0 1133,CDB0 -1133,CE20 1133,CE20 -1133,CE90 1133,CE90 -1133,CF00 1133,CF00 -1133,CF70 1133,CF70 -1133,CFE0 1133,CFE0 -1133,D050 1133,D050 -1133,D0C0 1133,D0C0 -1133,D130 1133,D130 -1133,D1A0 1133,D1A0 -1133,D210 1133,D210 -1133,D280 1133,D280 -1133,D2F0 1133,D2F0 -1133,D360 1133,D360 -1133,D3D0 1133,D3D0 -1133,D440 1133,D440 -1133,D4B0 1133,D4B0 -1133,D520 1133,D520 -1133,D590 1133,D590 -1133,D600 1133,D600 -1133,D670 1133,D670 -1133,D6E0 1133,D6E0 -1133,D750 1133,D750 -1134,AC00 1134,AC00 -1134,AC70 1134,AC70 -1134,ACE0 1134,ACE0 -1134,AD50 1134,AD50 -1134,ADC0 1134,ADC0 -1134,AE30 1134,AE30 -1134,AEA0 1134,AEA0 -1134,AF10 1134,AF10 -1134,AF80 1134,AF80 -1134,AFF0 1134,AFF0 -1134,B060 1134,B060 -1134,B0D0 1134,B0D0 -1134,B140 1134,B140 -1134,B1B0 1134,B1B0 -1134,B220 1134,B220 -1134,B290 1134,B290 -1134,B300 1134,B300 -1134,B370 1134,B370 -1134,B3E0 1134,B3E0 -1134,B450 1134,B450 -1134,B4C0 1134,B4C0 -1134,B530 1134,B530 -1134,B5A0 1134,B5A0 -1134,B610 1134,B610 -1134,B680 1134,B680 -1134,B6F0 1134,B6F0 -1134,B760 1134,B760 -1134,B7D0 1134,B7D0 -1134,B840 1134,B840 -1134,B8B0 1134,B8B0 -1134,B920 1134,B920 -1134,B990 1134,B990 -1134,BA00 1134,BA00 -1134,BA70 1134,BA70 -1134,BAE0 1134,BAE0 -1134,BB50 1134,BB50 -1134,BBC0 1134,BBC0 -1134,BC30 1134,BC30 -1134,BCA0 1134,BCA0 -1134,BD10 1134,BD10 -1134,BD80 1134,BD80 -1134,BDF0 1134,BDF0 -1134,BE60 1134,BE60 -1134,BED0 1134,BED0 -1134,BF40 1134,BF40 -1134,BFB0 1134,BFB0 -1134,C020 1134,C020 -1134,C090 1134,C090 -1134,C100 1134,C100 -1134,C170 1134,C170 -1134,C1E0 1134,C1E0 -1134,C250 1134,C250 -1134,C2C0 1134,C2C0 -1134,C330 1134,C330 -1134,C3A0 1134,C3A0 -1134,C410 1134,C410 -1134,C480 1134,C480 -1134,C4F0 1134,C4F0 -1134,C560 1134,C560 -1134,C5D0 1134,C5D0 -1134,C640 1134,C640 -1134,C6B0 1134,C6B0 -1134,C720 1134,C720 -1134,C790 1134,C790 -1134,C800 1134,C800 -1134,C870 1134,C870 -1134,C8E0 1134,C8E0 -1134,C950 1134,C950 -1134,C9C0 1134,C9C0 -1134,CA30 1134,CA30 -1134,CAA0 1134,CAA0 -1134,CB10 1134,CB10 -1134,CB80 1134,CB80 -1134,CBF0 1134,CBF0 -1134,CC60 1134,CC60 -1134,CCD0 1134,CCD0 -1134,CD40 1134,CD40 -1134,CDB0 1134,CDB0 -1134,CE20 1134,CE20 -1134,CE90 1134,CE90 -1134,CF00 1134,CF00 -1134,CF70 1134,CF70 -1134,CFE0 1134,CFE0 -1134,D050 1134,D050 -1134,D0C0 1134,D0C0 -1134,D130 1134,D130 -1134,D1A0 1134,D1A0 -1134,D210 1134,D210 -1134,D280 1134,D280 -1134,D2F0 1134,D2F0 -1134,D360 1134,D360 -1134,D3D0 1134,D3D0 -1134,D440 1134,D440 -1134,D4B0 1134,D4B0 -1134,D520 1134,D520 -1134,D590 1134,D590 -1134,D600 1134,D600 -1134,D670 1134,D670 -1134,D6E0 1134,D6E0 -1134,D750 1134,D750 -1135,AC00 1135,AC00 -1135,AC70 1135,AC70 -1135,ACE0 1135,ACE0 -1135,AD50 1135,AD50 -1135,ADC0 1135,ADC0 -1135,AE30 1135,AE30 -1135,AEA0 1135,AEA0 -1135,AF10 1135,AF10 -1135,AF80 1135,AF80 -1135,AFF0 1135,AFF0 -1135,B060 1135,B060 -1135,B0D0 1135,B0D0 -1135,B140 1135,B140 -1135,B1B0 1135,B1B0 -1135,B220 1135,B220 -1135,B290 1135,B290 -1135,B300 1135,B300 -1135,B370 1135,B370 -1135,B3E0 1135,B3E0 -1135,B450 1135,B450 -1135,B4C0 1135,B4C0 -1135,B530 1135,B530 -1135,B5A0 1135,B5A0 -1135,B610 1135,B610 -1135,B680 1135,B680 -1135,B6F0 1135,B6F0 -1135,B760 1135,B760 -1135,B7D0 1135,B7D0 -1135,B840 1135,B840 -1135,B8B0 1135,B8B0 -1135,B920 1135,B920 -1135,B990 1135,B990 -1135,BA00 1135,BA00 -1135,BA70 1135,BA70 -1135,BAE0 1135,BAE0 -1135,BB50 1135,BB50 -1135,BBC0 1135,BBC0 -1135,BC30 1135,BC30 -1135,BCA0 1135,BCA0 -1135,BD10 1135,BD10 -1135,BD80 1135,BD80 -1135,BDF0 1135,BDF0 -1135,BE60 1135,BE60 -1135,BED0 1135,BED0 -1135,BF40 1135,BF40 -1135,BFB0 1135,BFB0 -1135,C020 1135,C020 -1135,C090 1135,C090 -1135,C100 1135,C100 -1135,C170 1135,C170 -1135,C1E0 1135,C1E0 -1135,C250 1135,C250 -1135,C2C0 1135,C2C0 -1135,C330 1135,C330 -1135,C3A0 1135,C3A0 -1135,C410 1135,C410 -1135,C480 1135,C480 -1135,C4F0 1135,C4F0 -1135,C560 1135,C560 -1135,C5D0 1135,C5D0 -1135,C640 1135,C640 -1135,C6B0 1135,C6B0 -1135,C720 1135,C720 -1135,C790 1135,C790 -1135,C800 1135,C800 -1135,C870 1135,C870 -1135,C8E0 1135,C8E0 -1135,C950 1135,C950 -1135,C9C0 1135,C9C0 -1135,CA30 1135,CA30 -1135,CAA0 1135,CAA0 -1135,CB10 1135,CB10 -1135,CB80 1135,CB80 -1135,CBF0 1135,CBF0 -1135,CC60 1135,CC60 -1135,CCD0 1135,CCD0 -1135,CD40 1135,CD40 -1135,CDB0 1135,CDB0 -1135,CE20 1135,CE20 -1135,CE90 1135,CE90 -1135,CF00 1135,CF00 -1135,CF70 1135,CF70 -1135,CFE0 1135,CFE0 -1135,D050 1135,D050 -1135,D0C0 1135,D0C0 -1135,D130 1135,D130 -1135,D1A0 1135,D1A0 -1135,D210 1135,D210 -1135,D280 1135,D280 -1135,D2F0 1135,D2F0 -1135,D360 1135,D360 -1135,D3D0 1135,D3D0 -1135,D440 1135,D440 -1135,D4B0 1135,D4B0 -1135,D520 1135,D520 -1135,D590 1135,D590 -1135,D600 1135,D600 -1135,D670 1135,D670 -1135,D6E0 1135,D6E0 -1135,D750 1135,D750 -1136,AC00 1136,AC00 -1136,AC70 1136,AC70 -1136,ACE0 1136,ACE0 -1136,AD50 1136,AD50 -1136,ADC0 1136,ADC0 -1136,AE30 1136,AE30 -1136,AEA0 1136,AEA0 -1136,AF10 1136,AF10 -1136,AF80 1136,AF80 -1136,AFF0 1136,AFF0 -1136,B060 1136,B060 -1136,B0D0 1136,B0D0 -1136,B140 1136,B140 -1136,B1B0 1136,B1B0 -1136,B220 1136,B220 -1136,B290 1136,B290 -1136,B300 1136,B300 -1136,B370 1136,B370 -1136,B3E0 1136,B3E0 -1136,B450 1136,B450 -1136,B4C0 1136,B4C0 -1136,B530 1136,B530 -1136,B5A0 1136,B5A0 -1136,B610 1136,B610 -1136,B680 1136,B680 -1136,B6F0 1136,B6F0 -1136,B760 1136,B760 -1136,B7D0 1136,B7D0 -1136,B840 1136,B840 -1136,B8B0 1136,B8B0 -1136,B920 1136,B920 -1136,B990 1136,B990 -1136,BA00 1136,BA00 -1136,BA70 1136,BA70 -1136,BAE0 1136,BAE0 -1136,BB50 1136,BB50 -1136,BBC0 1136,BBC0 -1136,BC30 1136,BC30 -1136,BCA0 1136,BCA0 -1136,BD10 1136,BD10 -1136,BD80 1136,BD80 -1136,BDF0 1136,BDF0 -1136,BE60 1136,BE60 -1136,BED0 1136,BED0 -1136,BF40 1136,BF40 -1136,BFB0 1136,BFB0 -1136,C020 1136,C020 -1136,C090 1136,C090 -1136,C100 1136,C100 -1136,C170 1136,C170 -1136,C1E0 1136,C1E0 -1136,C250 1136,C250 -1136,C2C0 1136,C2C0 -1136,C330 1136,C330 -1136,C3A0 1136,C3A0 -1136,C410 1136,C410 -1136,C480 1136,C480 -1136,C4F0 1136,C4F0 -1136,C560 1136,C560 -1136,C5D0 1136,C5D0 -1136,C640 1136,C640 -1136,C6B0 1136,C6B0 -1136,C720 1136,C720 -1136,C790 1136,C790 -1136,C800 1136,C800 -1136,C870 1136,C870 -1136,C8E0 1136,C8E0 -1136,C950 1136,C950 -1136,C9C0 1136,C9C0 -1136,CA30 1136,CA30 -1136,CAA0 1136,CAA0 -1136,CB10 1136,CB10 -1136,CB80 1136,CB80 -1136,CBF0 1136,CBF0 -1136,CC60 1136,CC60 -1136,CCD0 1136,CCD0 -1136,CD40 1136,CD40 -1136,CDB0 1136,CDB0 -1136,CE20 1136,CE20 -1136,CE90 1136,CE90 -1136,CF00 1136,CF00 -1136,CF70 1136,CF70 -1136,CFE0 1136,CFE0 -1136,D050 1136,D050 -1136,D0C0 1136,D0C0 -1136,D130 1136,D130 -1136,D1A0 1136,D1A0 -1136,D210 1136,D210 -1136,D280 1136,D280 -1136,D2F0 1136,D2F0 -1136,D360 1136,D360 -1136,D3D0 1136,D3D0 -1136,D440 1136,D440 -1136,D4B0 1136,D4B0 -1136,D520 1136,D520 -1136,D590 1136,D590 -1136,D600 1136,D600 -1136,D670 1136,D670 -1136,D6E0 1136,D6E0 -1136,D750 1136,D750 -1137,AC00 1137,AC00 -1137,AC70 1137,AC70 -1137,ACE0 1137,ACE0 -1137,AD50 1137,AD50 -1137,ADC0 1137,ADC0 -1137,AE30 1137,AE30 -1137,AEA0 1137,AEA0 -1137,AF10 1137,AF10 -1137,AF80 1137,AF80 -1137,AFF0 1137,AFF0 -1137,B060 1137,B060 -1137,B0D0 1137,B0D0 -1137,B140 1137,B140 -1137,B1B0 1137,B1B0 -1137,B220 1137,B220 -1137,B290 1137,B290 -1137,B300 1137,B300 -1137,B370 1137,B370 -1137,B3E0 1137,B3E0 -1137,B450 1137,B450 -1137,B4C0 1137,B4C0 -1137,B530 1137,B530 -1137,B5A0 1137,B5A0 -1137,B610 1137,B610 -1137,B680 1137,B680 -1137,B6F0 1137,B6F0 -1137,B760 1137,B760 -1137,B7D0 1137,B7D0 -1137,B840 1137,B840 -1137,B8B0 1137,B8B0 -1137,B920 1137,B920 -1137,B990 1137,B990 -1137,BA00 1137,BA00 -1137,BA70 1137,BA70 -1137,BAE0 1137,BAE0 -1137,BB50 1137,BB50 -1137,BBC0 1137,BBC0 -1137,BC30 1137,BC30 -1137,BCA0 1137,BCA0 -1137,BD10 1137,BD10 -1137,BD80 1137,BD80 -1137,BDF0 1137,BDF0 -1137,BE60 1137,BE60 -1137,BED0 1137,BED0 -1137,BF40 1137,BF40 -1137,BFB0 1137,BFB0 -1137,C020 1137,C020 -1137,C090 1137,C090 -1137,C100 1137,C100 -1137,C170 1137,C170 -1137,C1E0 1137,C1E0 -1137,C250 1137,C250 -1137,C2C0 1137,C2C0 -1137,C330 1137,C330 -1137,C3A0 1137,C3A0 -1137,C410 1137,C410 -1137,C480 1137,C480 -1137,C4F0 1137,C4F0 -1137,C560 1137,C560 -1137,C5D0 1137,C5D0 -1137,C640 1137,C640 -1137,C6B0 1137,C6B0 -1137,C720 1137,C720 -1137,C790 1137,C790 -1137,C800 1137,C800 -1137,C870 1137,C870 -1137,C8E0 1137,C8E0 -1137,C950 1137,C950 -1137,C9C0 1137,C9C0 -1137,CA30 1137,CA30 -1137,CAA0 1137,CAA0 -1137,CB10 1137,CB10 -1137,CB80 1137,CB80 -1137,CBF0 1137,CBF0 -1137,CC60 1137,CC60 -1137,CCD0 1137,CCD0 -1137,CD40 1137,CD40 -1137,CDB0 1137,CDB0 -1137,CE20 1137,CE20 -1137,CE90 1137,CE90 -1137,CF00 1137,CF00 -1137,CF70 1137,CF70 -1137,CFE0 1137,CFE0 -1137,D050 1137,D050 -1137,D0C0 1137,D0C0 -1137,D130 1137,D130 -1137,D1A0 1137,D1A0 -1137,D210 1137,D210 -1137,D280 1137,D280 -1137,D2F0 1137,D2F0 -1137,D360 1137,D360 -1137,D3D0 1137,D3D0 -1137,D440 1137,D440 -1137,D4B0 1137,D4B0 -1137,D520 1137,D520 -1137,D590 1137,D590 -1137,D600 1137,D600 -1137,D670 1137,D670 -1137,D6E0 1137,D6E0 -1137,D750 1137,D750 -1138,AC00 1138,AC00 -1138,AC70 1138,AC70 -1138,ACE0 1138,ACE0 -1138,AD50 1138,AD50 -1138,ADC0 1138,ADC0 -1138,AE30 1138,AE30 -1138,AEA0 1138,AEA0 -1138,AF10 1138,AF10 -1138,AF80 1138,AF80 -1138,AFF0 1138,AFF0 -1138,B060 1138,B060 -1138,B0D0 1138,B0D0 -1138,B140 1138,B140 -1138,B1B0 1138,B1B0 -1138,B220 1138,B220 -1138,B290 1138,B290 -1138,B300 1138,B300 -1138,B370 1138,B370 -1138,B3E0 1138,B3E0 -1138,B450 1138,B450 -1138,B4C0 1138,B4C0 -1138,B530 1138,B530 -1138,B5A0 1138,B5A0 -1138,B610 1138,B610 -1138,B680 1138,B680 -1138,B6F0 1138,B6F0 -1138,B760 1138,B760 -1138,B7D0 1138,B7D0 -1138,B840 1138,B840 -1138,B8B0 1138,B8B0 -1138,B920 1138,B920 -1138,B990 1138,B990 -1138,BA00 1138,BA00 -1138,BA70 1138,BA70 -1138,BAE0 1138,BAE0 -1138,BB50 1138,BB50 -1138,BBC0 1138,BBC0 -1138,BC30 1138,BC30 -1138,BCA0 1138,BCA0 -1138,BD10 1138,BD10 -1138,BD80 1138,BD80 -1138,BDF0 1138,BDF0 -1138,BE60 1138,BE60 -1138,BED0 1138,BED0 -1138,BF40 1138,BF40 -1138,BFB0 1138,BFB0 -1138,C020 1138,C020 -1138,C090 1138,C090 -1138,C100 1138,C100 -1138,C170 1138,C170 -1138,C1E0 1138,C1E0 -1138,C250 1138,C250 -1138,C2C0 1138,C2C0 -1138,C330 1138,C330 -1138,C3A0 1138,C3A0 -1138,C410 1138,C410 -1138,C480 1138,C480 -1138,C4F0 1138,C4F0 -1138,C560 1138,C560 -1138,C5D0 1138,C5D0 -1138,C640 1138,C640 -1138,C6B0 1138,C6B0 -1138,C720 1138,C720 -1138,C790 1138,C790 -1138,C800 1138,C800 -1138,C870 1138,C870 -1138,C8E0 1138,C8E0 -1138,C950 1138,C950 -1138,C9C0 1138,C9C0 -1138,CA30 1138,CA30 -1138,CAA0 1138,CAA0 -1138,CB10 1138,CB10 -1138,CB80 1138,CB80 -1138,CBF0 1138,CBF0 -1138,CC60 1138,CC60 -1138,CCD0 1138,CCD0 -1138,CD40 1138,CD40 -1138,CDB0 1138,CDB0 -1138,CE20 1138,CE20 -1138,CE90 1138,CE90 -1138,CF00 1138,CF00 -1138,CF70 1138,CF70 -1138,CFE0 1138,CFE0 -1138,D050 1138,D050 -1138,D0C0 1138,D0C0 -1138,D130 1138,D130 -1138,D1A0 1138,D1A0 -1138,D210 1138,D210 -1138,D280 1138,D280 -1138,D2F0 1138,D2F0 -1138,D360 1138,D360 -1138,D3D0 1138,D3D0 -1138,D440 1138,D440 -1138,D4B0 1138,D4B0 -1138,D520 1138,D520 -1138,D590 1138,D590 -1138,D600 1138,D600 -1138,D670 1138,D670 -1138,D6E0 1138,D6E0 -1138,D750 1138,D750 -1139,AC00 1139,AC00 -1139,AC70 1139,AC70 -1139,ACE0 1139,ACE0 -1139,AD50 1139,AD50 -1139,ADC0 1139,ADC0 -1139,AE30 1139,AE30 -1139,AEA0 1139,AEA0 -1139,AF10 1139,AF10 -1139,AF80 1139,AF80 -1139,AFF0 1139,AFF0 -1139,B060 1139,B060 -1139,B0D0 1139,B0D0 -1139,B140 1139,B140 -1139,B1B0 1139,B1B0 -1139,B220 1139,B220 -1139,B290 1139,B290 -1139,B300 1139,B300 -1139,B370 1139,B370 -1139,B3E0 1139,B3E0 -1139,B450 1139,B450 -1139,B4C0 1139,B4C0 -1139,B530 1139,B530 -1139,B5A0 1139,B5A0 -1139,B610 1139,B610 -1139,B680 1139,B680 -1139,B6F0 1139,B6F0 -1139,B760 1139,B760 -1139,B7D0 1139,B7D0 -1139,B840 1139,B840 -1139,B8B0 1139,B8B0 -1139,B920 1139,B920 -1139,B990 1139,B990 -1139,BA00 1139,BA00 -1139,BA70 1139,BA70 -1139,BAE0 1139,BAE0 -1139,BB50 1139,BB50 -1139,BBC0 1139,BBC0 -1139,BC30 1139,BC30 -1139,BCA0 1139,BCA0 -1139,BD10 1139,BD10 -1139,BD80 1139,BD80 -1139,BDF0 1139,BDF0 -1139,BE60 1139,BE60 -1139,BED0 1139,BED0 -1139,BF40 1139,BF40 -1139,BFB0 1139,BFB0 -1139,C020 1139,C020 -1139,C090 1139,C090 -1139,C100 1139,C100 -1139,C170 1139,C170 -1139,C1E0 1139,C1E0 -1139,C250 1139,C250 -1139,C2C0 1139,C2C0 -1139,C330 1139,C330 -1139,C3A0 1139,C3A0 -1139,C410 1139,C410 -1139,C480 1139,C480 -1139,C4F0 1139,C4F0 -1139,C560 1139,C560 -1139,C5D0 1139,C5D0 -1139,C640 1139,C640 -1139,C6B0 1139,C6B0 -1139,C720 1139,C720 -1139,C790 1139,C790 -1139,C800 1139,C800 -1139,C870 1139,C870 -1139,C8E0 1139,C8E0 -1139,C950 1139,C950 -1139,C9C0 1139,C9C0 -1139,CA30 1139,CA30 -1139,CAA0 1139,CAA0 -1139,CB10 1139,CB10 -1139,CB80 1139,CB80 -1139,CBF0 1139,CBF0 -1139,CC60 1139,CC60 -1139,CCD0 1139,CCD0 -1139,CD40 1139,CD40 -1139,CDB0 1139,CDB0 -1139,CE20 1139,CE20 -1139,CE90 1139,CE90 -1139,CF00 1139,CF00 -1139,CF70 1139,CF70 -1139,CFE0 1139,CFE0 -1139,D050 1139,D050 -1139,D0C0 1139,D0C0 -1139,D130 1139,D130 -1139,D1A0 1139,D1A0 -1139,D210 1139,D210 -1139,D280 1139,D280 -1139,D2F0 1139,D2F0 -1139,D360 1139,D360 -1139,D3D0 1139,D3D0 -1139,D440 1139,D440 -1139,D4B0 1139,D4B0 -1139,D520 1139,D520 -1139,D590 1139,D590 -1139,D600 1139,D600 -1139,D670 1139,D670 -1139,D6E0 1139,D6E0 -1139,D750 1139,D750 -113A,AC00 113A,AC00 -113A,AC70 113A,AC70 -113A,ACE0 113A,ACE0 -113A,AD50 113A,AD50 -113A,ADC0 113A,ADC0 -113A,AE30 113A,AE30 -113A,AEA0 113A,AEA0 -113A,AF10 113A,AF10 -113A,AF80 113A,AF80 -113A,AFF0 113A,AFF0 -113A,B060 113A,B060 -113A,B0D0 113A,B0D0 -113A,B140 113A,B140 -113A,B1B0 113A,B1B0 -113A,B220 113A,B220 -113A,B290 113A,B290 -113A,B300 113A,B300 -113A,B370 113A,B370 -113A,B3E0 113A,B3E0 -113A,B450 113A,B450 -113A,B4C0 113A,B4C0 -113A,B530 113A,B530 -113A,B5A0 113A,B5A0 -113A,B610 113A,B610 -113A,B680 113A,B680 -113A,B6F0 113A,B6F0 -113A,B760 113A,B760 -113A,B7D0 113A,B7D0 -113A,B840 113A,B840 -113A,B8B0 113A,B8B0 -113A,B920 113A,B920 -113A,B990 113A,B990 -113A,BA00 113A,BA00 -113A,BA70 113A,BA70 -113A,BAE0 113A,BAE0 -113A,BB50 113A,BB50 -113A,BBC0 113A,BBC0 -113A,BC30 113A,BC30 -113A,BCA0 113A,BCA0 -113A,BD10 113A,BD10 -113A,BD80 113A,BD80 -113A,BDF0 113A,BDF0 -113A,BE60 113A,BE60 -113A,BED0 113A,BED0 -113A,BF40 113A,BF40 -113A,BFB0 113A,BFB0 -113A,C020 113A,C020 -113A,C090 113A,C090 -113A,C100 113A,C100 -113A,C170 113A,C170 -113A,C1E0 113A,C1E0 -113A,C250 113A,C250 -113A,C2C0 113A,C2C0 -113A,C330 113A,C330 -113A,C3A0 113A,C3A0 -113A,C410 113A,C410 -113A,C480 113A,C480 -113A,C4F0 113A,C4F0 -113A,C560 113A,C560 -113A,C5D0 113A,C5D0 -113A,C640 113A,C640 -113A,C6B0 113A,C6B0 -113A,C720 113A,C720 -113A,C790 113A,C790 -113A,C800 113A,C800 -113A,C870 113A,C870 -113A,C8E0 113A,C8E0 -113A,C950 113A,C950 -113A,C9C0 113A,C9C0 -113A,CA30 113A,CA30 -113A,CAA0 113A,CAA0 -113A,CB10 113A,CB10 -113A,CB80 113A,CB80 -113A,CBF0 113A,CBF0 -113A,CC60 113A,CC60 -113A,CCD0 113A,CCD0 -113A,CD40 113A,CD40 -113A,CDB0 113A,CDB0 -113A,CE20 113A,CE20 -113A,CE90 113A,CE90 -113A,CF00 113A,CF00 -113A,CF70 113A,CF70 -113A,CFE0 113A,CFE0 -113A,D050 113A,D050 -113A,D0C0 113A,D0C0 -113A,D130 113A,D130 -113A,D1A0 113A,D1A0 -113A,D210 113A,D210 -113A,D280 113A,D280 -113A,D2F0 113A,D2F0 -113A,D360 113A,D360 -113A,D3D0 113A,D3D0 -113A,D440 113A,D440 -113A,D4B0 113A,D4B0 -113A,D520 113A,D520 -113A,D590 113A,D590 -113A,D600 113A,D600 -113A,D670 113A,D670 -113A,D6E0 113A,D6E0 -113A,D750 113A,D750 -113B,AC00 113B,AC00 -113B,AC70 113B,AC70 -113B,ACE0 113B,ACE0 -113B,AD50 113B,AD50 -113B,ADC0 113B,ADC0 -113B,AE30 113B,AE30 -113B,AEA0 113B,AEA0 -113B,AF10 113B,AF10 -113B,AF80 113B,AF80 -113B,AFF0 113B,AFF0 -113B,B060 113B,B060 -113B,B0D0 113B,B0D0 -113B,B140 113B,B140 -113B,B1B0 113B,B1B0 -113B,B220 113B,B220 -113B,B290 113B,B290 -113B,B300 113B,B300 -113B,B370 113B,B370 -113B,B3E0 113B,B3E0 -113B,B450 113B,B450 -113B,B4C0 113B,B4C0 -113B,B530 113B,B530 -113B,B5A0 113B,B5A0 -113B,B610 113B,B610 -113B,B680 113B,B680 -113B,B6F0 113B,B6F0 -113B,B760 113B,B760 -113B,B7D0 113B,B7D0 -113B,B840 113B,B840 -113B,B8B0 113B,B8B0 -113B,B920 113B,B920 -113B,B990 113B,B990 -113B,BA00 113B,BA00 -113B,BA70 113B,BA70 -113B,BAE0 113B,BAE0 -113B,BB50 113B,BB50 -113B,BBC0 113B,BBC0 -113B,BC30 113B,BC30 -113B,BCA0 113B,BCA0 -113B,BD10 113B,BD10 -113B,BD80 113B,BD80 -113B,BDF0 113B,BDF0 -113B,BE60 113B,BE60 -113B,BED0 113B,BED0 -113B,BF40 113B,BF40 -113B,BFB0 113B,BFB0 -113B,C020 113B,C020 -113B,C090 113B,C090 -113B,C100 113B,C100 -113B,C170 113B,C170 -113B,C1E0 113B,C1E0 -113B,C250 113B,C250 -113B,C2C0 113B,C2C0 -113B,C330 113B,C330 -113B,C3A0 113B,C3A0 -113B,C410 113B,C410 -113B,C480 113B,C480 -113B,C4F0 113B,C4F0 -113B,C560 113B,C560 -113B,C5D0 113B,C5D0 -113B,C640 113B,C640 -113B,C6B0 113B,C6B0 -113B,C720 113B,C720 -113B,C790 113B,C790 -113B,C800 113B,C800 -113B,C870 113B,C870 -113B,C8E0 113B,C8E0 -113B,C950 113B,C950 -113B,C9C0 113B,C9C0 -113B,CA30 113B,CA30 -113B,CAA0 113B,CAA0 -113B,CB10 113B,CB10 -113B,CB80 113B,CB80 -113B,CBF0 113B,CBF0 -113B,CC60 113B,CC60 -113B,CCD0 113B,CCD0 -113B,CD40 113B,CD40 -113B,CDB0 113B,CDB0 -113B,CE20 113B,CE20 -113B,CE90 113B,CE90 -113B,CF00 113B,CF00 -113B,CF70 113B,CF70 -113B,CFE0 113B,CFE0 -113B,D050 113B,D050 -113B,D0C0 113B,D0C0 -113B,D130 113B,D130 -113B,D1A0 113B,D1A0 -113B,D210 113B,D210 -113B,D280 113B,D280 -113B,D2F0 113B,D2F0 -113B,D360 113B,D360 -113B,D3D0 113B,D3D0 -113B,D440 113B,D440 -113B,D4B0 113B,D4B0 -113B,D520 113B,D520 -113B,D590 113B,D590 -113B,D600 113B,D600 -113B,D670 113B,D670 -113B,D6E0 113B,D6E0 -113B,D750 113B,D750 -113C,AC00 113C,AC00 -113C,AC70 113C,AC70 -113C,ACE0 113C,ACE0 -113C,AD50 113C,AD50 -113C,ADC0 113C,ADC0 -113C,AE30 113C,AE30 -113C,AEA0 113C,AEA0 -113C,AF10 113C,AF10 -113C,AF80 113C,AF80 -113C,AFF0 113C,AFF0 -113C,B060 113C,B060 -113C,B0D0 113C,B0D0 -113C,B140 113C,B140 -113C,B1B0 113C,B1B0 -113C,B220 113C,B220 -113C,B290 113C,B290 -113C,B300 113C,B300 -113C,B370 113C,B370 -113C,B3E0 113C,B3E0 -113C,B450 113C,B450 -113C,B4C0 113C,B4C0 -113C,B530 113C,B530 -113C,B5A0 113C,B5A0 -113C,B610 113C,B610 -113C,B680 113C,B680 -113C,B6F0 113C,B6F0 -113C,B760 113C,B760 -113C,B7D0 113C,B7D0 -113C,B840 113C,B840 -113C,B8B0 113C,B8B0 -113C,B920 113C,B920 -113C,B990 113C,B990 -113C,BA00 113C,BA00 -113C,BA70 113C,BA70 -113C,BAE0 113C,BAE0 -113C,BB50 113C,BB50 -113C,BBC0 113C,BBC0 -113C,BC30 113C,BC30 -113C,BCA0 113C,BCA0 -113C,BD10 113C,BD10 -113C,BD80 113C,BD80 -113C,BDF0 113C,BDF0 -113C,BE60 113C,BE60 -113C,BED0 113C,BED0 -113C,BF40 113C,BF40 -113C,BFB0 113C,BFB0 -113C,C020 113C,C020 -113C,C090 113C,C090 -113C,C100 113C,C100 -113C,C170 113C,C170 -113C,C1E0 113C,C1E0 -113C,C250 113C,C250 -113C,C2C0 113C,C2C0 -113C,C330 113C,C330 -113C,C3A0 113C,C3A0 -113C,C410 113C,C410 -113C,C480 113C,C480 -113C,C4F0 113C,C4F0 -113C,C560 113C,C560 -113C,C5D0 113C,C5D0 -113C,C640 113C,C640 -113C,C6B0 113C,C6B0 -113C,C720 113C,C720 -113C,C790 113C,C790 -113C,C800 113C,C800 -113C,C870 113C,C870 -113C,C8E0 113C,C8E0 -113C,C950 113C,C950 -113C,C9C0 113C,C9C0 -113C,CA30 113C,CA30 -113C,CAA0 113C,CAA0 -113C,CB10 113C,CB10 -113C,CB80 113C,CB80 -113C,CBF0 113C,CBF0 -113C,CC60 113C,CC60 -113C,CCD0 113C,CCD0 -113C,CD40 113C,CD40 -113C,CDB0 113C,CDB0 -113C,CE20 113C,CE20 -113C,CE90 113C,CE90 -113C,CF00 113C,CF00 -113C,CF70 113C,CF70 -113C,CFE0 113C,CFE0 -113C,D050 113C,D050 -113C,D0C0 113C,D0C0 -113C,D130 113C,D130 -113C,D1A0 113C,D1A0 -113C,D210 113C,D210 -113C,D280 113C,D280 -113C,D2F0 113C,D2F0 -113C,D360 113C,D360 -113C,D3D0 113C,D3D0 -113C,D440 113C,D440 -113C,D4B0 113C,D4B0 -113C,D520 113C,D520 -113C,D590 113C,D590 -113C,D600 113C,D600 -113C,D670 113C,D670 -113C,D6E0 113C,D6E0 -113C,D750 113C,D750 -113D,AC00 113D,AC00 -113D,AC70 113D,AC70 -113D,ACE0 113D,ACE0 -113D,AD50 113D,AD50 -113D,ADC0 113D,ADC0 -113D,AE30 113D,AE30 -113D,AEA0 113D,AEA0 -113D,AF10 113D,AF10 -113D,AF80 113D,AF80 -113D,AFF0 113D,AFF0 -113D,B060 113D,B060 -113D,B0D0 113D,B0D0 -113D,B140 113D,B140 -113D,B1B0 113D,B1B0 -113D,B220 113D,B220 -113D,B290 113D,B290 -113D,B300 113D,B300 -113D,B370 113D,B370 -113D,B3E0 113D,B3E0 -113D,B450 113D,B450 -113D,B4C0 113D,B4C0 -113D,B530 113D,B530 -113D,B5A0 113D,B5A0 -113D,B610 113D,B610 -113D,B680 113D,B680 -113D,B6F0 113D,B6F0 -113D,B760 113D,B760 -113D,B7D0 113D,B7D0 -113D,B840 113D,B840 -113D,B8B0 113D,B8B0 -113D,B920 113D,B920 -113D,B990 113D,B990 -113D,BA00 113D,BA00 -113D,BA70 113D,BA70 -113D,BAE0 113D,BAE0 -113D,BB50 113D,BB50 -113D,BBC0 113D,BBC0 -113D,BC30 113D,BC30 -113D,BCA0 113D,BCA0 -113D,BD10 113D,BD10 -113D,BD80 113D,BD80 -113D,BDF0 113D,BDF0 -113D,BE60 113D,BE60 -113D,BED0 113D,BED0 -113D,BF40 113D,BF40 -113D,BFB0 113D,BFB0 -113D,C020 113D,C020 -113D,C090 113D,C090 -113D,C100 113D,C100 -113D,C170 113D,C170 -113D,C1E0 113D,C1E0 -113D,C250 113D,C250 -113D,C2C0 113D,C2C0 -113D,C330 113D,C330 -113D,C3A0 113D,C3A0 -113D,C410 113D,C410 -113D,C480 113D,C480 -113D,C4F0 113D,C4F0 -113D,C560 113D,C560 -113D,C5D0 113D,C5D0 -113D,C640 113D,C640 -113D,C6B0 113D,C6B0 -113D,C720 113D,C720 -113D,C790 113D,C790 -113D,C800 113D,C800 -113D,C870 113D,C870 -113D,C8E0 113D,C8E0 -113D,C950 113D,C950 -113D,C9C0 113D,C9C0 -113D,CA30 113D,CA30 -113D,CAA0 113D,CAA0 -113D,CB10 113D,CB10 -113D,CB80 113D,CB80 -113D,CBF0 113D,CBF0 -113D,CC60 113D,CC60 -113D,CCD0 113D,CCD0 -113D,CD40 113D,CD40 -113D,CDB0 113D,CDB0 -113D,CE20 113D,CE20 -113D,CE90 113D,CE90 -113D,CF00 113D,CF00 -113D,CF70 113D,CF70 -113D,CFE0 113D,CFE0 -113D,D050 113D,D050 -113D,D0C0 113D,D0C0 -113D,D130 113D,D130 -113D,D1A0 113D,D1A0 -113D,D210 113D,D210 -113D,D280 113D,D280 -113D,D2F0 113D,D2F0 -113D,D360 113D,D360 -113D,D3D0 113D,D3D0 -113D,D440 113D,D440 -113D,D4B0 113D,D4B0 -113D,D520 113D,D520 -113D,D590 113D,D590 -113D,D600 113D,D600 -113D,D670 113D,D670 -113D,D6E0 113D,D6E0 -113D,D750 113D,D750 -113E,AC00 113E,AC00 -113E,AC70 113E,AC70 -113E,ACE0 113E,ACE0 -113E,AD50 113E,AD50 -113E,ADC0 113E,ADC0 -113E,AE30 113E,AE30 -113E,AEA0 113E,AEA0 -113E,AF10 113E,AF10 -113E,AF80 113E,AF80 -113E,AFF0 113E,AFF0 -113E,B060 113E,B060 -113E,B0D0 113E,B0D0 -113E,B140 113E,B140 -113E,B1B0 113E,B1B0 -113E,B220 113E,B220 -113E,B290 113E,B290 -113E,B300 113E,B300 -113E,B370 113E,B370 -113E,B3E0 113E,B3E0 -113E,B450 113E,B450 -113E,B4C0 113E,B4C0 -113E,B530 113E,B530 -113E,B5A0 113E,B5A0 -113E,B610 113E,B610 -113E,B680 113E,B680 -113E,B6F0 113E,B6F0 -113E,B760 113E,B760 -113E,B7D0 113E,B7D0 -113E,B840 113E,B840 -113E,B8B0 113E,B8B0 -113E,B920 113E,B920 -113E,B990 113E,B990 -113E,BA00 113E,BA00 -113E,BA70 113E,BA70 -113E,BAE0 113E,BAE0 -113E,BB50 113E,BB50 -113E,BBC0 113E,BBC0 -113E,BC30 113E,BC30 -113E,BCA0 113E,BCA0 -113E,BD10 113E,BD10 -113E,BD80 113E,BD80 -113E,BDF0 113E,BDF0 -113E,BE60 113E,BE60 -113E,BED0 113E,BED0 -113E,BF40 113E,BF40 -113E,BFB0 113E,BFB0 -113E,C020 113E,C020 -113E,C090 113E,C090 -113E,C100 113E,C100 -113E,C170 113E,C170 -113E,C1E0 113E,C1E0 -113E,C250 113E,C250 -113E,C2C0 113E,C2C0 -113E,C330 113E,C330 -113E,C3A0 113E,C3A0 -113E,C410 113E,C410 -113E,C480 113E,C480 -113E,C4F0 113E,C4F0 -113E,C560 113E,C560 -113E,C5D0 113E,C5D0 -113E,C640 113E,C640 -113E,C6B0 113E,C6B0 -113E,C720 113E,C720 -113E,C790 113E,C790 -113E,C800 113E,C800 -113E,C870 113E,C870 -113E,C8E0 113E,C8E0 -113E,C950 113E,C950 -113E,C9C0 113E,C9C0 -113E,CA30 113E,CA30 -113E,CAA0 113E,CAA0 -113E,CB10 113E,CB10 -113E,CB80 113E,CB80 -113E,CBF0 113E,CBF0 -113E,CC60 113E,CC60 -113E,CCD0 113E,CCD0 -113E,CD40 113E,CD40 -113E,CDB0 113E,CDB0 -113E,CE20 113E,CE20 -113E,CE90 113E,CE90 -113E,CF00 113E,CF00 -113E,CF70 113E,CF70 -113E,CFE0 113E,CFE0 -113E,D050 113E,D050 -113E,D0C0 113E,D0C0 -113E,D130 113E,D130 -113E,D1A0 113E,D1A0 -113E,D210 113E,D210 -113E,D280 113E,D280 -113E,D2F0 113E,D2F0 -113E,D360 113E,D360 -113E,D3D0 113E,D3D0 -113E,D440 113E,D440 -113E,D4B0 113E,D4B0 -113E,D520 113E,D520 -113E,D590 113E,D590 -113E,D600 113E,D600 -113E,D670 113E,D670 -113E,D6E0 113E,D6E0 -113E,D750 113E,D750 -113F,AC00 113F,AC00 -113F,AC70 113F,AC70 -113F,ACE0 113F,ACE0 -113F,AD50 113F,AD50 -113F,ADC0 113F,ADC0 -113F,AE30 113F,AE30 -113F,AEA0 113F,AEA0 -113F,AF10 113F,AF10 -113F,AF80 113F,AF80 -113F,AFF0 113F,AFF0 -113F,B060 113F,B060 -113F,B0D0 113F,B0D0 -113F,B140 113F,B140 -113F,B1B0 113F,B1B0 -113F,B220 113F,B220 -113F,B290 113F,B290 -113F,B300 113F,B300 -113F,B370 113F,B370 -113F,B3E0 113F,B3E0 -113F,B450 113F,B450 -113F,B4C0 113F,B4C0 -113F,B530 113F,B530 -113F,B5A0 113F,B5A0 -113F,B610 113F,B610 -113F,B680 113F,B680 -113F,B6F0 113F,B6F0 -113F,B760 113F,B760 -113F,B7D0 113F,B7D0 -113F,B840 113F,B840 -113F,B8B0 113F,B8B0 -113F,B920 113F,B920 -113F,B990 113F,B990 -113F,BA00 113F,BA00 -113F,BA70 113F,BA70 -113F,BAE0 113F,BAE0 -113F,BB50 113F,BB50 -113F,BBC0 113F,BBC0 -113F,BC30 113F,BC30 -113F,BCA0 113F,BCA0 -113F,BD10 113F,BD10 -113F,BD80 113F,BD80 -113F,BDF0 113F,BDF0 -113F,BE60 113F,BE60 -113F,BED0 113F,BED0 -113F,BF40 113F,BF40 -113F,BFB0 113F,BFB0 -113F,C020 113F,C020 -113F,C090 113F,C090 -113F,C100 113F,C100 -113F,C170 113F,C170 -113F,C1E0 113F,C1E0 -113F,C250 113F,C250 -113F,C2C0 113F,C2C0 -113F,C330 113F,C330 -113F,C3A0 113F,C3A0 -113F,C410 113F,C410 -113F,C480 113F,C480 -113F,C4F0 113F,C4F0 -113F,C560 113F,C560 -113F,C5D0 113F,C5D0 -113F,C640 113F,C640 -113F,C6B0 113F,C6B0 -113F,C720 113F,C720 -113F,C790 113F,C790 -113F,C800 113F,C800 -113F,C870 113F,C870 -113F,C8E0 113F,C8E0 -113F,C950 113F,C950 -113F,C9C0 113F,C9C0 -113F,CA30 113F,CA30 -113F,CAA0 113F,CAA0 -113F,CB10 113F,CB10 -113F,CB80 113F,CB80 -113F,CBF0 113F,CBF0 -113F,CC60 113F,CC60 -113F,CCD0 113F,CCD0 -113F,CD40 113F,CD40 -113F,CDB0 113F,CDB0 -113F,CE20 113F,CE20 -113F,CE90 113F,CE90 -113F,CF00 113F,CF00 -113F,CF70 113F,CF70 -113F,CFE0 113F,CFE0 -113F,D050 113F,D050 -113F,D0C0 113F,D0C0 -113F,D130 113F,D130 -113F,D1A0 113F,D1A0 -113F,D210 113F,D210 -113F,D280 113F,D280 -113F,D2F0 113F,D2F0 -113F,D360 113F,D360 -113F,D3D0 113F,D3D0 -113F,D440 113F,D440 -113F,D4B0 113F,D4B0 -113F,D520 113F,D520 -113F,D590 113F,D590 -113F,D600 113F,D600 -113F,D670 113F,D670 -113F,D6E0 113F,D6E0 -113F,D750 113F,D750 -1140,AC00 1140,AC00 -1140,AC70 1140,AC70 -1140,ACE0 1140,ACE0 -1140,AD50 1140,AD50 -1140,ADC0 1140,ADC0 -1140,AE30 1140,AE30 -1140,AEA0 1140,AEA0 -1140,AF10 1140,AF10 -1140,AF80 1140,AF80 -1140,AFF0 1140,AFF0 -1140,B060 1140,B060 -1140,B0D0 1140,B0D0 -1140,B140 1140,B140 -1140,B1B0 1140,B1B0 -1140,B220 1140,B220 -1140,B290 1140,B290 -1140,B300 1140,B300 -1140,B370 1140,B370 -1140,B3E0 1140,B3E0 -1140,B450 1140,B450 -1140,B4C0 1140,B4C0 -1140,B530 1140,B530 -1140,B5A0 1140,B5A0 -1140,B610 1140,B610 -1140,B680 1140,B680 -1140,B6F0 1140,B6F0 -1140,B760 1140,B760 -1140,B7D0 1140,B7D0 -1140,B840 1140,B840 -1140,B8B0 1140,B8B0 -1140,B920 1140,B920 -1140,B990 1140,B990 -1140,BA00 1140,BA00 -1140,BA70 1140,BA70 -1140,BAE0 1140,BAE0 -1140,BB50 1140,BB50 -1140,BBC0 1140,BBC0 -1140,BC30 1140,BC30 -1140,BCA0 1140,BCA0 -1140,BD10 1140,BD10 -1140,BD80 1140,BD80 -1140,BDF0 1140,BDF0 -1140,BE60 1140,BE60 -1140,BED0 1140,BED0 -1140,BF40 1140,BF40 -1140,BFB0 1140,BFB0 -1140,C020 1140,C020 -1140,C090 1140,C090 -1140,C100 1140,C100 -1140,C170 1140,C170 -1140,C1E0 1140,C1E0 -1140,C250 1140,C250 -1140,C2C0 1140,C2C0 -1140,C330 1140,C330 -1140,C3A0 1140,C3A0 -1140,C410 1140,C410 -1140,C480 1140,C480 -1140,C4F0 1140,C4F0 -1140,C560 1140,C560 -1140,C5D0 1140,C5D0 -1140,C640 1140,C640 -1140,C6B0 1140,C6B0 -1140,C720 1140,C720 -1140,C790 1140,C790 -1140,C800 1140,C800 -1140,C870 1140,C870 -1140,C8E0 1140,C8E0 -1140,C950 1140,C950 -1140,C9C0 1140,C9C0 -1140,CA30 1140,CA30 -1140,CAA0 1140,CAA0 -1140,CB10 1140,CB10 -1140,CB80 1140,CB80 -1140,CBF0 1140,CBF0 -1140,CC60 1140,CC60 -1140,CCD0 1140,CCD0 -1140,CD40 1140,CD40 -1140,CDB0 1140,CDB0 -1140,CE20 1140,CE20 -1140,CE90 1140,CE90 -1140,CF00 1140,CF00 -1140,CF70 1140,CF70 -1140,CFE0 1140,CFE0 -1140,D050 1140,D050 -1140,D0C0 1140,D0C0 -1140,D130 1140,D130 -1140,D1A0 1140,D1A0 -1140,D210 1140,D210 -1140,D280 1140,D280 -1140,D2F0 1140,D2F0 -1140,D360 1140,D360 -1140,D3D0 1140,D3D0 -1140,D440 1140,D440 -1140,D4B0 1140,D4B0 -1140,D520 1140,D520 -1140,D590 1140,D590 -1140,D600 1140,D600 -1140,D670 1140,D670 -1140,D6E0 1140,D6E0 -1140,D750 1140,D750 -1141,AC00 1141,AC00 -1141,AC70 1141,AC70 -1141,ACE0 1141,ACE0 -1141,AD50 1141,AD50 -1141,ADC0 1141,ADC0 -1141,AE30 1141,AE30 -1141,AEA0 1141,AEA0 -1141,AF10 1141,AF10 -1141,AF80 1141,AF80 -1141,AFF0 1141,AFF0 -1141,B060 1141,B060 -1141,B0D0 1141,B0D0 -1141,B140 1141,B140 -1141,B1B0 1141,B1B0 -1141,B220 1141,B220 -1141,B290 1141,B290 -1141,B300 1141,B300 -1141,B370 1141,B370 -1141,B3E0 1141,B3E0 -1141,B450 1141,B450 -1141,B4C0 1141,B4C0 -1141,B530 1141,B530 -1141,B5A0 1141,B5A0 -1141,B610 1141,B610 -1141,B680 1141,B680 -1141,B6F0 1141,B6F0 -1141,B760 1141,B760 -1141,B7D0 1141,B7D0 -1141,B840 1141,B840 -1141,B8B0 1141,B8B0 -1141,B920 1141,B920 -1141,B990 1141,B990 -1141,BA00 1141,BA00 -1141,BA70 1141,BA70 -1141,BAE0 1141,BAE0 -1141,BB50 1141,BB50 -1141,BBC0 1141,BBC0 -1141,BC30 1141,BC30 -1141,BCA0 1141,BCA0 -1141,BD10 1141,BD10 -1141,BD80 1141,BD80 -1141,BDF0 1141,BDF0 -1141,BE60 1141,BE60 -1141,BED0 1141,BED0 -1141,BF40 1141,BF40 -1141,BFB0 1141,BFB0 -1141,C020 1141,C020 -1141,C090 1141,C090 -1141,C100 1141,C100 -1141,C170 1141,C170 -1141,C1E0 1141,C1E0 -1141,C250 1141,C250 -1141,C2C0 1141,C2C0 -1141,C330 1141,C330 -1141,C3A0 1141,C3A0 -1141,C410 1141,C410 -1141,C480 1141,C480 -1141,C4F0 1141,C4F0 -1141,C560 1141,C560 -1141,C5D0 1141,C5D0 -1141,C640 1141,C640 -1141,C6B0 1141,C6B0 -1141,C720 1141,C720 -1141,C790 1141,C790 -1141,C800 1141,C800 -1141,C870 1141,C870 -1141,C8E0 1141,C8E0 -1141,C950 1141,C950 -1141,C9C0 1141,C9C0 -1141,CA30 1141,CA30 -1141,CAA0 1141,CAA0 -1141,CB10 1141,CB10 -1141,CB80 1141,CB80 -1141,CBF0 1141,CBF0 -1141,CC60 1141,CC60 -1141,CCD0 1141,CCD0 -1141,CD40 1141,CD40 -1141,CDB0 1141,CDB0 -1141,CE20 1141,CE20 -1141,CE90 1141,CE90 -1141,CF00 1141,CF00 -1141,CF70 1141,CF70 -1141,CFE0 1141,CFE0 -1141,D050 1141,D050 -1141,D0C0 1141,D0C0 -1141,D130 1141,D130 -1141,D1A0 1141,D1A0 -1141,D210 1141,D210 -1141,D280 1141,D280 -1141,D2F0 1141,D2F0 -1141,D360 1141,D360 -1141,D3D0 1141,D3D0 -1141,D440 1141,D440 -1141,D4B0 1141,D4B0 -1141,D520 1141,D520 -1141,D590 1141,D590 -1141,D600 1141,D600 -1141,D670 1141,D670 -1141,D6E0 1141,D6E0 -1141,D750 1141,D750 -1142,AC00 1142,AC00 -1142,AC70 1142,AC70 -1142,ACE0 1142,ACE0 -1142,AD50 1142,AD50 -1142,ADC0 1142,ADC0 -1142,AE30 1142,AE30 -1142,AEA0 1142,AEA0 -1142,AF10 1142,AF10 -1142,AF80 1142,AF80 -1142,AFF0 1142,AFF0 -1142,B060 1142,B060 -1142,B0D0 1142,B0D0 -1142,B140 1142,B140 -1142,B1B0 1142,B1B0 -1142,B220 1142,B220 -1142,B290 1142,B290 -1142,B300 1142,B300 -1142,B370 1142,B370 -1142,B3E0 1142,B3E0 -1142,B450 1142,B450 -1142,B4C0 1142,B4C0 -1142,B530 1142,B530 -1142,B5A0 1142,B5A0 -1142,B610 1142,B610 -1142,B680 1142,B680 -1142,B6F0 1142,B6F0 -1142,B760 1142,B760 -1142,B7D0 1142,B7D0 -1142,B840 1142,B840 -1142,B8B0 1142,B8B0 -1142,B920 1142,B920 -1142,B990 1142,B990 -1142,BA00 1142,BA00 -1142,BA70 1142,BA70 -1142,BAE0 1142,BAE0 -1142,BB50 1142,BB50 -1142,BBC0 1142,BBC0 -1142,BC30 1142,BC30 -1142,BCA0 1142,BCA0 -1142,BD10 1142,BD10 -1142,BD80 1142,BD80 -1142,BDF0 1142,BDF0 -1142,BE60 1142,BE60 -1142,BED0 1142,BED0 -1142,BF40 1142,BF40 -1142,BFB0 1142,BFB0 -1142,C020 1142,C020 -1142,C090 1142,C090 -1142,C100 1142,C100 -1142,C170 1142,C170 -1142,C1E0 1142,C1E0 -1142,C250 1142,C250 -1142,C2C0 1142,C2C0 -1142,C330 1142,C330 -1142,C3A0 1142,C3A0 -1142,C410 1142,C410 -1142,C480 1142,C480 -1142,C4F0 1142,C4F0 -1142,C560 1142,C560 -1142,C5D0 1142,C5D0 -1142,C640 1142,C640 -1142,C6B0 1142,C6B0 -1142,C720 1142,C720 -1142,C790 1142,C790 -1142,C800 1142,C800 -1142,C870 1142,C870 -1142,C8E0 1142,C8E0 -1142,C950 1142,C950 -1142,C9C0 1142,C9C0 -1142,CA30 1142,CA30 -1142,CAA0 1142,CAA0 -1142,CB10 1142,CB10 -1142,CB80 1142,CB80 -1142,CBF0 1142,CBF0 -1142,CC60 1142,CC60 -1142,CCD0 1142,CCD0 -1142,CD40 1142,CD40 -1142,CDB0 1142,CDB0 -1142,CE20 1142,CE20 -1142,CE90 1142,CE90 -1142,CF00 1142,CF00 -1142,CF70 1142,CF70 -1142,CFE0 1142,CFE0 -1142,D050 1142,D050 -1142,D0C0 1142,D0C0 -1142,D130 1142,D130 -1142,D1A0 1142,D1A0 -1142,D210 1142,D210 -1142,D280 1142,D280 -1142,D2F0 1142,D2F0 -1142,D360 1142,D360 -1142,D3D0 1142,D3D0 -1142,D440 1142,D440 -1142,D4B0 1142,D4B0 -1142,D520 1142,D520 -1142,D590 1142,D590 -1142,D600 1142,D600 -1142,D670 1142,D670 -1142,D6E0 1142,D6E0 -1142,D750 1142,D750 -1143,AC00 1143,AC00 -1143,AC70 1143,AC70 -1143,ACE0 1143,ACE0 -1143,AD50 1143,AD50 -1143,ADC0 1143,ADC0 -1143,AE30 1143,AE30 -1143,AEA0 1143,AEA0 -1143,AF10 1143,AF10 -1143,AF80 1143,AF80 -1143,AFF0 1143,AFF0 -1143,B060 1143,B060 -1143,B0D0 1143,B0D0 -1143,B140 1143,B140 -1143,B1B0 1143,B1B0 -1143,B220 1143,B220 -1143,B290 1143,B290 -1143,B300 1143,B300 -1143,B370 1143,B370 -1143,B3E0 1143,B3E0 -1143,B450 1143,B450 -1143,B4C0 1143,B4C0 -1143,B530 1143,B530 -1143,B5A0 1143,B5A0 -1143,B610 1143,B610 -1143,B680 1143,B680 -1143,B6F0 1143,B6F0 -1143,B760 1143,B760 -1143,B7D0 1143,B7D0 -1143,B840 1143,B840 -1143,B8B0 1143,B8B0 -1143,B920 1143,B920 -1143,B990 1143,B990 -1143,BA00 1143,BA00 -1143,BA70 1143,BA70 -1143,BAE0 1143,BAE0 -1143,BB50 1143,BB50 -1143,BBC0 1143,BBC0 -1143,BC30 1143,BC30 -1143,BCA0 1143,BCA0 -1143,BD10 1143,BD10 -1143,BD80 1143,BD80 -1143,BDF0 1143,BDF0 -1143,BE60 1143,BE60 -1143,BED0 1143,BED0 -1143,BF40 1143,BF40 -1143,BFB0 1143,BFB0 -1143,C020 1143,C020 -1143,C090 1143,C090 -1143,C100 1143,C100 -1143,C170 1143,C170 -1143,C1E0 1143,C1E0 -1143,C250 1143,C250 -1143,C2C0 1143,C2C0 -1143,C330 1143,C330 -1143,C3A0 1143,C3A0 -1143,C410 1143,C410 -1143,C480 1143,C480 -1143,C4F0 1143,C4F0 -1143,C560 1143,C560 -1143,C5D0 1143,C5D0 -1143,C640 1143,C640 -1143,C6B0 1143,C6B0 -1143,C720 1143,C720 -1143,C790 1143,C790 -1143,C800 1143,C800 -1143,C870 1143,C870 -1143,C8E0 1143,C8E0 -1143,C950 1143,C950 -1143,C9C0 1143,C9C0 -1143,CA30 1143,CA30 -1143,CAA0 1143,CAA0 -1143,CB10 1143,CB10 -1143,CB80 1143,CB80 -1143,CBF0 1143,CBF0 -1143,CC60 1143,CC60 -1143,CCD0 1143,CCD0 -1143,CD40 1143,CD40 -1143,CDB0 1143,CDB0 -1143,CE20 1143,CE20 -1143,CE90 1143,CE90 -1143,CF00 1143,CF00 -1143,CF70 1143,CF70 -1143,CFE0 1143,CFE0 -1143,D050 1143,D050 -1143,D0C0 1143,D0C0 -1143,D130 1143,D130 -1143,D1A0 1143,D1A0 -1143,D210 1143,D210 -1143,D280 1143,D280 -1143,D2F0 1143,D2F0 -1143,D360 1143,D360 -1143,D3D0 1143,D3D0 -1143,D440 1143,D440 -1143,D4B0 1143,D4B0 -1143,D520 1143,D520 -1143,D590 1143,D590 -1143,D600 1143,D600 -1143,D670 1143,D670 -1143,D6E0 1143,D6E0 -1143,D750 1143,D750 -1144,AC00 1144,AC00 -1144,AC70 1144,AC70 -1144,ACE0 1144,ACE0 -1144,AD50 1144,AD50 -1144,ADC0 1144,ADC0 -1144,AE30 1144,AE30 -1144,AEA0 1144,AEA0 -1144,AF10 1144,AF10 -1144,AF80 1144,AF80 -1144,AFF0 1144,AFF0 -1144,B060 1144,B060 -1144,B0D0 1144,B0D0 -1144,B140 1144,B140 -1144,B1B0 1144,B1B0 -1144,B220 1144,B220 -1144,B290 1144,B290 -1144,B300 1144,B300 -1144,B370 1144,B370 -1144,B3E0 1144,B3E0 -1144,B450 1144,B450 -1144,B4C0 1144,B4C0 -1144,B530 1144,B530 -1144,B5A0 1144,B5A0 -1144,B610 1144,B610 -1144,B680 1144,B680 -1144,B6F0 1144,B6F0 -1144,B760 1144,B760 -1144,B7D0 1144,B7D0 -1144,B840 1144,B840 -1144,B8B0 1144,B8B0 -1144,B920 1144,B920 -1144,B990 1144,B990 -1144,BA00 1144,BA00 -1144,BA70 1144,BA70 -1144,BAE0 1144,BAE0 -1144,BB50 1144,BB50 -1144,BBC0 1144,BBC0 -1144,BC30 1144,BC30 -1144,BCA0 1144,BCA0 -1144,BD10 1144,BD10 -1144,BD80 1144,BD80 -1144,BDF0 1144,BDF0 -1144,BE60 1144,BE60 -1144,BED0 1144,BED0 -1144,BF40 1144,BF40 -1144,BFB0 1144,BFB0 -1144,C020 1144,C020 -1144,C090 1144,C090 -1144,C100 1144,C100 -1144,C170 1144,C170 -1144,C1E0 1144,C1E0 -1144,C250 1144,C250 -1144,C2C0 1144,C2C0 -1144,C330 1144,C330 -1144,C3A0 1144,C3A0 -1144,C410 1144,C410 -1144,C480 1144,C480 -1144,C4F0 1144,C4F0 -1144,C560 1144,C560 -1144,C5D0 1144,C5D0 -1144,C640 1144,C640 -1144,C6B0 1144,C6B0 -1144,C720 1144,C720 -1144,C790 1144,C790 -1144,C800 1144,C800 -1144,C870 1144,C870 -1144,C8E0 1144,C8E0 -1144,C950 1144,C950 -1144,C9C0 1144,C9C0 -1144,CA30 1144,CA30 -1144,CAA0 1144,CAA0 -1144,CB10 1144,CB10 -1144,CB80 1144,CB80 -1144,CBF0 1144,CBF0 -1144,CC60 1144,CC60 -1144,CCD0 1144,CCD0 -1144,CD40 1144,CD40 -1144,CDB0 1144,CDB0 -1144,CE20 1144,CE20 -1144,CE90 1144,CE90 -1144,CF00 1144,CF00 -1144,CF70 1144,CF70 -1144,CFE0 1144,CFE0 -1144,D050 1144,D050 -1144,D0C0 1144,D0C0 -1144,D130 1144,D130 -1144,D1A0 1144,D1A0 -1144,D210 1144,D210 -1144,D280 1144,D280 -1144,D2F0 1144,D2F0 -1144,D360 1144,D360 -1144,D3D0 1144,D3D0 -1144,D440 1144,D440 -1144,D4B0 1144,D4B0 -1144,D520 1144,D520 -1144,D590 1144,D590 -1144,D600 1144,D600 -1144,D670 1144,D670 -1144,D6E0 1144,D6E0 -1144,D750 1144,D750 -1145,AC00 1145,AC00 -1145,AC70 1145,AC70 -1145,ACE0 1145,ACE0 -1145,AD50 1145,AD50 -1145,ADC0 1145,ADC0 -1145,AE30 1145,AE30 -1145,AEA0 1145,AEA0 -1145,AF10 1145,AF10 -1145,AF80 1145,AF80 -1145,AFF0 1145,AFF0 -1145,B060 1145,B060 -1145,B0D0 1145,B0D0 -1145,B140 1145,B140 -1145,B1B0 1145,B1B0 -1145,B220 1145,B220 -1145,B290 1145,B290 -1145,B300 1145,B300 -1145,B370 1145,B370 -1145,B3E0 1145,B3E0 -1145,B450 1145,B450 -1145,B4C0 1145,B4C0 -1145,B530 1145,B530 -1145,B5A0 1145,B5A0 -1145,B610 1145,B610 -1145,B680 1145,B680 -1145,B6F0 1145,B6F0 -1145,B760 1145,B760 -1145,B7D0 1145,B7D0 -1145,B840 1145,B840 -1145,B8B0 1145,B8B0 -1145,B920 1145,B920 -1145,B990 1145,B990 -1145,BA00 1145,BA00 -1145,BA70 1145,BA70 -1145,BAE0 1145,BAE0 -1145,BB50 1145,BB50 -1145,BBC0 1145,BBC0 -1145,BC30 1145,BC30 -1145,BCA0 1145,BCA0 -1145,BD10 1145,BD10 -1145,BD80 1145,BD80 -1145,BDF0 1145,BDF0 -1145,BE60 1145,BE60 -1145,BED0 1145,BED0 -1145,BF40 1145,BF40 -1145,BFB0 1145,BFB0 -1145,C020 1145,C020 -1145,C090 1145,C090 -1145,C100 1145,C100 -1145,C170 1145,C170 -1145,C1E0 1145,C1E0 -1145,C250 1145,C250 -1145,C2C0 1145,C2C0 -1145,C330 1145,C330 -1145,C3A0 1145,C3A0 -1145,C410 1145,C410 -1145,C480 1145,C480 -1145,C4F0 1145,C4F0 -1145,C560 1145,C560 -1145,C5D0 1145,C5D0 -1145,C640 1145,C640 -1145,C6B0 1145,C6B0 -1145,C720 1145,C720 -1145,C790 1145,C790 -1145,C800 1145,C800 -1145,C870 1145,C870 -1145,C8E0 1145,C8E0 -1145,C950 1145,C950 -1145,C9C0 1145,C9C0 -1145,CA30 1145,CA30 -1145,CAA0 1145,CAA0 -1145,CB10 1145,CB10 -1145,CB80 1145,CB80 -1145,CBF0 1145,CBF0 -1145,CC60 1145,CC60 -1145,CCD0 1145,CCD0 -1145,CD40 1145,CD40 -1145,CDB0 1145,CDB0 -1145,CE20 1145,CE20 -1145,CE90 1145,CE90 -1145,CF00 1145,CF00 -1145,CF70 1145,CF70 -1145,CFE0 1145,CFE0 -1145,D050 1145,D050 -1145,D0C0 1145,D0C0 -1145,D130 1145,D130 -1145,D1A0 1145,D1A0 -1145,D210 1145,D210 -1145,D280 1145,D280 -1145,D2F0 1145,D2F0 -1145,D360 1145,D360 -1145,D3D0 1145,D3D0 -1145,D440 1145,D440 -1145,D4B0 1145,D4B0 -1145,D520 1145,D520 -1145,D590 1145,D590 -1145,D600 1145,D600 -1145,D670 1145,D670 -1145,D6E0 1145,D6E0 -1145,D750 1145,D750 -1146,AC00 1146,AC00 -1146,AC70 1146,AC70 -1146,ACE0 1146,ACE0 -1146,AD50 1146,AD50 -1146,ADC0 1146,ADC0 -1146,AE30 1146,AE30 -1146,AEA0 1146,AEA0 -1146,AF10 1146,AF10 -1146,AF80 1146,AF80 -1146,AFF0 1146,AFF0 -1146,B060 1146,B060 -1146,B0D0 1146,B0D0 -1146,B140 1146,B140 -1146,B1B0 1146,B1B0 -1146,B220 1146,B220 -1146,B290 1146,B290 -1146,B300 1146,B300 -1146,B370 1146,B370 -1146,B3E0 1146,B3E0 -1146,B450 1146,B450 -1146,B4C0 1146,B4C0 -1146,B530 1146,B530 -1146,B5A0 1146,B5A0 -1146,B610 1146,B610 -1146,B680 1146,B680 -1146,B6F0 1146,B6F0 -1146,B760 1146,B760 -1146,B7D0 1146,B7D0 -1146,B840 1146,B840 -1146,B8B0 1146,B8B0 -1146,B920 1146,B920 -1146,B990 1146,B990 -1146,BA00 1146,BA00 -1146,BA70 1146,BA70 -1146,BAE0 1146,BAE0 -1146,BB50 1146,BB50 -1146,BBC0 1146,BBC0 -1146,BC30 1146,BC30 -1146,BCA0 1146,BCA0 -1146,BD10 1146,BD10 -1146,BD80 1146,BD80 -1146,BDF0 1146,BDF0 -1146,BE60 1146,BE60 -1146,BED0 1146,BED0 -1146,BF40 1146,BF40 -1146,BFB0 1146,BFB0 -1146,C020 1146,C020 -1146,C090 1146,C090 -1146,C100 1146,C100 -1146,C170 1146,C170 -1146,C1E0 1146,C1E0 -1146,C250 1146,C250 -1146,C2C0 1146,C2C0 -1146,C330 1146,C330 -1146,C3A0 1146,C3A0 -1146,C410 1146,C410 -1146,C480 1146,C480 -1146,C4F0 1146,C4F0 -1146,C560 1146,C560 -1146,C5D0 1146,C5D0 -1146,C640 1146,C640 -1146,C6B0 1146,C6B0 -1146,C720 1146,C720 -1146,C790 1146,C790 -1146,C800 1146,C800 -1146,C870 1146,C870 -1146,C8E0 1146,C8E0 -1146,C950 1146,C950 -1146,C9C0 1146,C9C0 -1146,CA30 1146,CA30 -1146,CAA0 1146,CAA0 -1146,CB10 1146,CB10 -1146,CB80 1146,CB80 -1146,CBF0 1146,CBF0 -1146,CC60 1146,CC60 -1146,CCD0 1146,CCD0 -1146,CD40 1146,CD40 -1146,CDB0 1146,CDB0 -1146,CE20 1146,CE20 -1146,CE90 1146,CE90 -1146,CF00 1146,CF00 -1146,CF70 1146,CF70 -1146,CFE0 1146,CFE0 -1146,D050 1146,D050 -1146,D0C0 1146,D0C0 -1146,D130 1146,D130 -1146,D1A0 1146,D1A0 -1146,D210 1146,D210 -1146,D280 1146,D280 -1146,D2F0 1146,D2F0 -1146,D360 1146,D360 -1146,D3D0 1146,D3D0 -1146,D440 1146,D440 -1146,D4B0 1146,D4B0 -1146,D520 1146,D520 -1146,D590 1146,D590 -1146,D600 1146,D600 -1146,D670 1146,D670 -1146,D6E0 1146,D6E0 -1146,D750 1146,D750 -1147,AC00 1147,AC00 -1147,AC70 1147,AC70 -1147,ACE0 1147,ACE0 -1147,AD50 1147,AD50 -1147,ADC0 1147,ADC0 -1147,AE30 1147,AE30 -1147,AEA0 1147,AEA0 -1147,AF10 1147,AF10 -1147,AF80 1147,AF80 -1147,AFF0 1147,AFF0 -1147,B060 1147,B060 -1147,B0D0 1147,B0D0 -1147,B140 1147,B140 -1147,B1B0 1147,B1B0 -1147,B220 1147,B220 -1147,B290 1147,B290 -1147,B300 1147,B300 -1147,B370 1147,B370 -1147,B3E0 1147,B3E0 -1147,B450 1147,B450 -1147,B4C0 1147,B4C0 -1147,B530 1147,B530 -1147,B5A0 1147,B5A0 -1147,B610 1147,B610 -1147,B680 1147,B680 -1147,B6F0 1147,B6F0 -1147,B760 1147,B760 -1147,B7D0 1147,B7D0 -1147,B840 1147,B840 -1147,B8B0 1147,B8B0 -1147,B920 1147,B920 -1147,B990 1147,B990 -1147,BA00 1147,BA00 -1147,BA70 1147,BA70 -1147,BAE0 1147,BAE0 -1147,BB50 1147,BB50 -1147,BBC0 1147,BBC0 -1147,BC30 1147,BC30 -1147,BCA0 1147,BCA0 -1147,BD10 1147,BD10 -1147,BD80 1147,BD80 -1147,BDF0 1147,BDF0 -1147,BE60 1147,BE60 -1147,BED0 1147,BED0 -1147,BF40 1147,BF40 -1147,BFB0 1147,BFB0 -1147,C020 1147,C020 -1147,C090 1147,C090 -1147,C100 1147,C100 -1147,C170 1147,C170 -1147,C1E0 1147,C1E0 -1147,C250 1147,C250 -1147,C2C0 1147,C2C0 -1147,C330 1147,C330 -1147,C3A0 1147,C3A0 -1147,C410 1147,C410 -1147,C480 1147,C480 -1147,C4F0 1147,C4F0 -1147,C560 1147,C560 -1147,C5D0 1147,C5D0 -1147,C640 1147,C640 -1147,C6B0 1147,C6B0 -1147,C720 1147,C720 -1147,C790 1147,C790 -1147,C800 1147,C800 -1147,C870 1147,C870 -1147,C8E0 1147,C8E0 -1147,C950 1147,C950 -1147,C9C0 1147,C9C0 -1147,CA30 1147,CA30 -1147,CAA0 1147,CAA0 -1147,CB10 1147,CB10 -1147,CB80 1147,CB80 -1147,CBF0 1147,CBF0 -1147,CC60 1147,CC60 -1147,CCD0 1147,CCD0 -1147,CD40 1147,CD40 -1147,CDB0 1147,CDB0 -1147,CE20 1147,CE20 -1147,CE90 1147,CE90 -1147,CF00 1147,CF00 -1147,CF70 1147,CF70 -1147,CFE0 1147,CFE0 -1147,D050 1147,D050 -1147,D0C0 1147,D0C0 -1147,D130 1147,D130 -1147,D1A0 1147,D1A0 -1147,D210 1147,D210 -1147,D280 1147,D280 -1147,D2F0 1147,D2F0 -1147,D360 1147,D360 -1147,D3D0 1147,D3D0 -1147,D440 1147,D440 -1147,D4B0 1147,D4B0 -1147,D520 1147,D520 -1147,D590 1147,D590 -1147,D600 1147,D600 -1147,D670 1147,D670 -1147,D6E0 1147,D6E0 -1147,D750 1147,D750 -1148,AC00 1148,AC00 -1148,AC70 1148,AC70 -1148,ACE0 1148,ACE0 -1148,AD50 1148,AD50 -1148,ADC0 1148,ADC0 -1148,AE30 1148,AE30 -1148,AEA0 1148,AEA0 -1148,AF10 1148,AF10 -1148,AF80 1148,AF80 -1148,AFF0 1148,AFF0 -1148,B060 1148,B060 -1148,B0D0 1148,B0D0 -1148,B140 1148,B140 -1148,B1B0 1148,B1B0 -1148,B220 1148,B220 -1148,B290 1148,B290 -1148,B300 1148,B300 -1148,B370 1148,B370 -1148,B3E0 1148,B3E0 -1148,B450 1148,B450 -1148,B4C0 1148,B4C0 -1148,B530 1148,B530 -1148,B5A0 1148,B5A0 -1148,B610 1148,B610 -1148,B680 1148,B680 -1148,B6F0 1148,B6F0 -1148,B760 1148,B760 -1148,B7D0 1148,B7D0 -1148,B840 1148,B840 -1148,B8B0 1148,B8B0 -1148,B920 1148,B920 -1148,B990 1148,B990 -1148,BA00 1148,BA00 -1148,BA70 1148,BA70 -1148,BAE0 1148,BAE0 -1148,BB50 1148,BB50 -1148,BBC0 1148,BBC0 -1148,BC30 1148,BC30 -1148,BCA0 1148,BCA0 -1148,BD10 1148,BD10 -1148,BD80 1148,BD80 -1148,BDF0 1148,BDF0 -1148,BE60 1148,BE60 -1148,BED0 1148,BED0 -1148,BF40 1148,BF40 -1148,BFB0 1148,BFB0 -1148,C020 1148,C020 -1148,C090 1148,C090 -1148,C100 1148,C100 -1148,C170 1148,C170 -1148,C1E0 1148,C1E0 -1148,C250 1148,C250 -1148,C2C0 1148,C2C0 -1148,C330 1148,C330 -1148,C3A0 1148,C3A0 -1148,C410 1148,C410 -1148,C480 1148,C480 -1148,C4F0 1148,C4F0 -1148,C560 1148,C560 -1148,C5D0 1148,C5D0 -1148,C640 1148,C640 -1148,C6B0 1148,C6B0 -1148,C720 1148,C720 -1148,C790 1148,C790 -1148,C800 1148,C800 -1148,C870 1148,C870 -1148,C8E0 1148,C8E0 -1148,C950 1148,C950 -1148,C9C0 1148,C9C0 -1148,CA30 1148,CA30 -1148,CAA0 1148,CAA0 -1148,CB10 1148,CB10 -1148,CB80 1148,CB80 -1148,CBF0 1148,CBF0 -1148,CC60 1148,CC60 -1148,CCD0 1148,CCD0 -1148,CD40 1148,CD40 -1148,CDB0 1148,CDB0 -1148,CE20 1148,CE20 -1148,CE90 1148,CE90 -1148,CF00 1148,CF00 -1148,CF70 1148,CF70 -1148,CFE0 1148,CFE0 -1148,D050 1148,D050 -1148,D0C0 1148,D0C0 -1148,D130 1148,D130 -1148,D1A0 1148,D1A0 -1148,D210 1148,D210 -1148,D280 1148,D280 -1148,D2F0 1148,D2F0 -1148,D360 1148,D360 -1148,D3D0 1148,D3D0 -1148,D440 1148,D440 -1148,D4B0 1148,D4B0 -1148,D520 1148,D520 -1148,D590 1148,D590 -1148,D600 1148,D600 -1148,D670 1148,D670 -1148,D6E0 1148,D6E0 -1148,D750 1148,D750 -1149,AC00 1149,AC00 -1149,AC70 1149,AC70 -1149,ACE0 1149,ACE0 -1149,AD50 1149,AD50 -1149,ADC0 1149,ADC0 -1149,AE30 1149,AE30 -1149,AEA0 1149,AEA0 -1149,AF10 1149,AF10 -1149,AF80 1149,AF80 -1149,AFF0 1149,AFF0 -1149,B060 1149,B060 -1149,B0D0 1149,B0D0 -1149,B140 1149,B140 -1149,B1B0 1149,B1B0 -1149,B220 1149,B220 -1149,B290 1149,B290 -1149,B300 1149,B300 -1149,B370 1149,B370 -1149,B3E0 1149,B3E0 -1149,B450 1149,B450 -1149,B4C0 1149,B4C0 -1149,B530 1149,B530 -1149,B5A0 1149,B5A0 -1149,B610 1149,B610 -1149,B680 1149,B680 -1149,B6F0 1149,B6F0 -1149,B760 1149,B760 -1149,B7D0 1149,B7D0 -1149,B840 1149,B840 -1149,B8B0 1149,B8B0 -1149,B920 1149,B920 -1149,B990 1149,B990 -1149,BA00 1149,BA00 -1149,BA70 1149,BA70 -1149,BAE0 1149,BAE0 -1149,BB50 1149,BB50 -1149,BBC0 1149,BBC0 -1149,BC30 1149,BC30 -1149,BCA0 1149,BCA0 -1149,BD10 1149,BD10 -1149,BD80 1149,BD80 -1149,BDF0 1149,BDF0 -1149,BE60 1149,BE60 -1149,BED0 1149,BED0 -1149,BF40 1149,BF40 -1149,BFB0 1149,BFB0 -1149,C020 1149,C020 -1149,C090 1149,C090 -1149,C100 1149,C100 -1149,C170 1149,C170 -1149,C1E0 1149,C1E0 -1149,C250 1149,C250 -1149,C2C0 1149,C2C0 -1149,C330 1149,C330 -1149,C3A0 1149,C3A0 -1149,C410 1149,C410 -1149,C480 1149,C480 -1149,C4F0 1149,C4F0 -1149,C560 1149,C560 -1149,C5D0 1149,C5D0 -1149,C640 1149,C640 -1149,C6B0 1149,C6B0 -1149,C720 1149,C720 -1149,C790 1149,C790 -1149,C800 1149,C800 -1149,C870 1149,C870 -1149,C8E0 1149,C8E0 -1149,C950 1149,C950 -1149,C9C0 1149,C9C0 -1149,CA30 1149,CA30 -1149,CAA0 1149,CAA0 -1149,CB10 1149,CB10 -1149,CB80 1149,CB80 -1149,CBF0 1149,CBF0 -1149,CC60 1149,CC60 -1149,CCD0 1149,CCD0 -1149,CD40 1149,CD40 -1149,CDB0 1149,CDB0 -1149,CE20 1149,CE20 -1149,CE90 1149,CE90 -1149,CF00 1149,CF00 -1149,CF70 1149,CF70 -1149,CFE0 1149,CFE0 -1149,D050 1149,D050 -1149,D0C0 1149,D0C0 -1149,D130 1149,D130 -1149,D1A0 1149,D1A0 -1149,D210 1149,D210 -1149,D280 1149,D280 -1149,D2F0 1149,D2F0 -1149,D360 1149,D360 -1149,D3D0 1149,D3D0 -1149,D440 1149,D440 -1149,D4B0 1149,D4B0 -1149,D520 1149,D520 -1149,D590 1149,D590 -1149,D600 1149,D600 -1149,D670 1149,D670 -1149,D6E0 1149,D6E0 -1149,D750 1149,D750 -114A,AC00 114A,AC00 -114A,AC70 114A,AC70 -114A,ACE0 114A,ACE0 -114A,AD50 114A,AD50 -114A,ADC0 114A,ADC0 -114A,AE30 114A,AE30 -114A,AEA0 114A,AEA0 -114A,AF10 114A,AF10 -114A,AF80 114A,AF80 -114A,AFF0 114A,AFF0 -114A,B060 114A,B060 -114A,B0D0 114A,B0D0 -114A,B140 114A,B140 -114A,B1B0 114A,B1B0 -114A,B220 114A,B220 -114A,B290 114A,B290 -114A,B300 114A,B300 -114A,B370 114A,B370 -114A,B3E0 114A,B3E0 -114A,B450 114A,B450 -114A,B4C0 114A,B4C0 -114A,B530 114A,B530 -114A,B5A0 114A,B5A0 -114A,B610 114A,B610 -114A,B680 114A,B680 -114A,B6F0 114A,B6F0 -114A,B760 114A,B760 -114A,B7D0 114A,B7D0 -114A,B840 114A,B840 -114A,B8B0 114A,B8B0 -114A,B920 114A,B920 -114A,B990 114A,B990 -114A,BA00 114A,BA00 -114A,BA70 114A,BA70 -114A,BAE0 114A,BAE0 -114A,BB50 114A,BB50 -114A,BBC0 114A,BBC0 -114A,BC30 114A,BC30 -114A,BCA0 114A,BCA0 -114A,BD10 114A,BD10 -114A,BD80 114A,BD80 -114A,BDF0 114A,BDF0 -114A,BE60 114A,BE60 -114A,BED0 114A,BED0 -114A,BF40 114A,BF40 -114A,BFB0 114A,BFB0 -114A,C020 114A,C020 -114A,C090 114A,C090 -114A,C100 114A,C100 -114A,C170 114A,C170 -114A,C1E0 114A,C1E0 -114A,C250 114A,C250 -114A,C2C0 114A,C2C0 -114A,C330 114A,C330 -114A,C3A0 114A,C3A0 -114A,C410 114A,C410 -114A,C480 114A,C480 -114A,C4F0 114A,C4F0 -114A,C560 114A,C560 -114A,C5D0 114A,C5D0 -114A,C640 114A,C640 -114A,C6B0 114A,C6B0 -114A,C720 114A,C720 -114A,C790 114A,C790 -114A,C800 114A,C800 -114A,C870 114A,C870 -114A,C8E0 114A,C8E0 -114A,C950 114A,C950 -114A,C9C0 114A,C9C0 -114A,CA30 114A,CA30 -114A,CAA0 114A,CAA0 -114A,CB10 114A,CB10 -114A,CB80 114A,CB80 -114A,CBF0 114A,CBF0 -114A,CC60 114A,CC60 -114A,CCD0 114A,CCD0 -114A,CD40 114A,CD40 -114A,CDB0 114A,CDB0 -114A,CE20 114A,CE20 -114A,CE90 114A,CE90 -114A,CF00 114A,CF00 -114A,CF70 114A,CF70 -114A,CFE0 114A,CFE0 -114A,D050 114A,D050 -114A,D0C0 114A,D0C0 -114A,D130 114A,D130 -114A,D1A0 114A,D1A0 -114A,D210 114A,D210 -114A,D280 114A,D280 -114A,D2F0 114A,D2F0 -114A,D360 114A,D360 -114A,D3D0 114A,D3D0 -114A,D440 114A,D440 -114A,D4B0 114A,D4B0 -114A,D520 114A,D520 -114A,D590 114A,D590 -114A,D600 114A,D600 -114A,D670 114A,D670 -114A,D6E0 114A,D6E0 -114A,D750 114A,D750 -114B,AC00 114B,AC00 -114B,AC70 114B,AC70 -114B,ACE0 114B,ACE0 -114B,AD50 114B,AD50 -114B,ADC0 114B,ADC0 -114B,AE30 114B,AE30 -114B,AEA0 114B,AEA0 -114B,AF10 114B,AF10 -114B,AF80 114B,AF80 -114B,AFF0 114B,AFF0 -114B,B060 114B,B060 -114B,B0D0 114B,B0D0 -114B,B140 114B,B140 -114B,B1B0 114B,B1B0 -114B,B220 114B,B220 -114B,B290 114B,B290 -114B,B300 114B,B300 -114B,B370 114B,B370 -114B,B3E0 114B,B3E0 -114B,B450 114B,B450 -114B,B4C0 114B,B4C0 -114B,B530 114B,B530 -114B,B5A0 114B,B5A0 -114B,B610 114B,B610 -114B,B680 114B,B680 -114B,B6F0 114B,B6F0 -114B,B760 114B,B760 -114B,B7D0 114B,B7D0 -114B,B840 114B,B840 -114B,B8B0 114B,B8B0 -114B,B920 114B,B920 -114B,B990 114B,B990 -114B,BA00 114B,BA00 -114B,BA70 114B,BA70 -114B,BAE0 114B,BAE0 -114B,BB50 114B,BB50 -114B,BBC0 114B,BBC0 -114B,BC30 114B,BC30 -114B,BCA0 114B,BCA0 -114B,BD10 114B,BD10 -114B,BD80 114B,BD80 -114B,BDF0 114B,BDF0 -114B,BE60 114B,BE60 -114B,BED0 114B,BED0 -114B,BF40 114B,BF40 -114B,BFB0 114B,BFB0 -114B,C020 114B,C020 -114B,C090 114B,C090 -114B,C100 114B,C100 -114B,C170 114B,C170 -114B,C1E0 114B,C1E0 -114B,C250 114B,C250 -114B,C2C0 114B,C2C0 -114B,C330 114B,C330 -114B,C3A0 114B,C3A0 -114B,C410 114B,C410 -114B,C480 114B,C480 -114B,C4F0 114B,C4F0 -114B,C560 114B,C560 -114B,C5D0 114B,C5D0 -114B,C640 114B,C640 -114B,C6B0 114B,C6B0 -114B,C720 114B,C720 -114B,C790 114B,C790 -114B,C800 114B,C800 -114B,C870 114B,C870 -114B,C8E0 114B,C8E0 -114B,C950 114B,C950 -114B,C9C0 114B,C9C0 -114B,CA30 114B,CA30 -114B,CAA0 114B,CAA0 -114B,CB10 114B,CB10 -114B,CB80 114B,CB80 -114B,CBF0 114B,CBF0 -114B,CC60 114B,CC60 -114B,CCD0 114B,CCD0 -114B,CD40 114B,CD40 -114B,CDB0 114B,CDB0 -114B,CE20 114B,CE20 -114B,CE90 114B,CE90 -114B,CF00 114B,CF00 -114B,CF70 114B,CF70 -114B,CFE0 114B,CFE0 -114B,D050 114B,D050 -114B,D0C0 114B,D0C0 -114B,D130 114B,D130 -114B,D1A0 114B,D1A0 -114B,D210 114B,D210 -114B,D280 114B,D280 -114B,D2F0 114B,D2F0 -114B,D360 114B,D360 -114B,D3D0 114B,D3D0 -114B,D440 114B,D440 -114B,D4B0 114B,D4B0 -114B,D520 114B,D520 -114B,D590 114B,D590 -114B,D600 114B,D600 -114B,D670 114B,D670 -114B,D6E0 114B,D6E0 -114B,D750 114B,D750 -114C,AC00 114C,AC00 -114C,AC70 114C,AC70 -114C,ACE0 114C,ACE0 -114C,AD50 114C,AD50 -114C,ADC0 114C,ADC0 -114C,AE30 114C,AE30 -114C,AEA0 114C,AEA0 -114C,AF10 114C,AF10 -114C,AF80 114C,AF80 -114C,AFF0 114C,AFF0 -114C,B060 114C,B060 -114C,B0D0 114C,B0D0 -114C,B140 114C,B140 -114C,B1B0 114C,B1B0 -114C,B220 114C,B220 -114C,B290 114C,B290 -114C,B300 114C,B300 -114C,B370 114C,B370 -114C,B3E0 114C,B3E0 -114C,B450 114C,B450 -114C,B4C0 114C,B4C0 -114C,B530 114C,B530 -114C,B5A0 114C,B5A0 -114C,B610 114C,B610 -114C,B680 114C,B680 -114C,B6F0 114C,B6F0 -114C,B760 114C,B760 -114C,B7D0 114C,B7D0 -114C,B840 114C,B840 -114C,B8B0 114C,B8B0 -114C,B920 114C,B920 -114C,B990 114C,B990 -114C,BA00 114C,BA00 -114C,BA70 114C,BA70 -114C,BAE0 114C,BAE0 -114C,BB50 114C,BB50 -114C,BBC0 114C,BBC0 -114C,BC30 114C,BC30 -114C,BCA0 114C,BCA0 -114C,BD10 114C,BD10 -114C,BD80 114C,BD80 -114C,BDF0 114C,BDF0 -114C,BE60 114C,BE60 -114C,BED0 114C,BED0 -114C,BF40 114C,BF40 -114C,BFB0 114C,BFB0 -114C,C020 114C,C020 -114C,C090 114C,C090 -114C,C100 114C,C100 -114C,C170 114C,C170 -114C,C1E0 114C,C1E0 -114C,C250 114C,C250 -114C,C2C0 114C,C2C0 -114C,C330 114C,C330 -114C,C3A0 114C,C3A0 -114C,C410 114C,C410 -114C,C480 114C,C480 -114C,C4F0 114C,C4F0 -114C,C560 114C,C560 -114C,C5D0 114C,C5D0 -114C,C640 114C,C640 -114C,C6B0 114C,C6B0 -114C,C720 114C,C720 -114C,C790 114C,C790 -114C,C800 114C,C800 -114C,C870 114C,C870 -114C,C8E0 114C,C8E0 -114C,C950 114C,C950 -114C,C9C0 114C,C9C0 -114C,CA30 114C,CA30 -114C,CAA0 114C,CAA0 -114C,CB10 114C,CB10 -114C,CB80 114C,CB80 -114C,CBF0 114C,CBF0 -114C,CC60 114C,CC60 -114C,CCD0 114C,CCD0 -114C,CD40 114C,CD40 -114C,CDB0 114C,CDB0 -114C,CE20 114C,CE20 -114C,CE90 114C,CE90 -114C,CF00 114C,CF00 -114C,CF70 114C,CF70 -114C,CFE0 114C,CFE0 -114C,D050 114C,D050 -114C,D0C0 114C,D0C0 -114C,D130 114C,D130 -114C,D1A0 114C,D1A0 -114C,D210 114C,D210 -114C,D280 114C,D280 -114C,D2F0 114C,D2F0 -114C,D360 114C,D360 -114C,D3D0 114C,D3D0 -114C,D440 114C,D440 -114C,D4B0 114C,D4B0 -114C,D520 114C,D520 -114C,D590 114C,D590 -114C,D600 114C,D600 -114C,D670 114C,D670 -114C,D6E0 114C,D6E0 -114C,D750 114C,D750 -114D,AC00 114D,AC00 -114D,AC70 114D,AC70 -114D,ACE0 114D,ACE0 -114D,AD50 114D,AD50 -114D,ADC0 114D,ADC0 -114D,AE30 114D,AE30 -114D,AEA0 114D,AEA0 -114D,AF10 114D,AF10 -114D,AF80 114D,AF80 -114D,AFF0 114D,AFF0 -114D,B060 114D,B060 -114D,B0D0 114D,B0D0 -114D,B140 114D,B140 -114D,B1B0 114D,B1B0 -114D,B220 114D,B220 -114D,B290 114D,B290 -114D,B300 114D,B300 -114D,B370 114D,B370 -114D,B3E0 114D,B3E0 -114D,B450 114D,B450 -114D,B4C0 114D,B4C0 -114D,B530 114D,B530 -114D,B5A0 114D,B5A0 -114D,B610 114D,B610 -114D,B680 114D,B680 -114D,B6F0 114D,B6F0 -114D,B760 114D,B760 -114D,B7D0 114D,B7D0 -114D,B840 114D,B840 -114D,B8B0 114D,B8B0 -114D,B920 114D,B920 -114D,B990 114D,B990 -114D,BA00 114D,BA00 -114D,BA70 114D,BA70 -114D,BAE0 114D,BAE0 -114D,BB50 114D,BB50 -114D,BBC0 114D,BBC0 -114D,BC30 114D,BC30 -114D,BCA0 114D,BCA0 -114D,BD10 114D,BD10 -114D,BD80 114D,BD80 -114D,BDF0 114D,BDF0 -114D,BE60 114D,BE60 -114D,BED0 114D,BED0 -114D,BF40 114D,BF40 -114D,BFB0 114D,BFB0 -114D,C020 114D,C020 -114D,C090 114D,C090 -114D,C100 114D,C100 -114D,C170 114D,C170 -114D,C1E0 114D,C1E0 -114D,C250 114D,C250 -114D,C2C0 114D,C2C0 -114D,C330 114D,C330 -114D,C3A0 114D,C3A0 -114D,C410 114D,C410 -114D,C480 114D,C480 -114D,C4F0 114D,C4F0 -114D,C560 114D,C560 -114D,C5D0 114D,C5D0 -114D,C640 114D,C640 -114D,C6B0 114D,C6B0 -114D,C720 114D,C720 -114D,C790 114D,C790 -114D,C800 114D,C800 -114D,C870 114D,C870 -114D,C8E0 114D,C8E0 -114D,C950 114D,C950 -114D,C9C0 114D,C9C0 -114D,CA30 114D,CA30 -114D,CAA0 114D,CAA0 -114D,CB10 114D,CB10 -114D,CB80 114D,CB80 -114D,CBF0 114D,CBF0 -114D,CC60 114D,CC60 -114D,CCD0 114D,CCD0 -114D,CD40 114D,CD40 -114D,CDB0 114D,CDB0 -114D,CE20 114D,CE20 -114D,CE90 114D,CE90 -114D,CF00 114D,CF00 -114D,CF70 114D,CF70 -114D,CFE0 114D,CFE0 -114D,D050 114D,D050 -114D,D0C0 114D,D0C0 -114D,D130 114D,D130 -114D,D1A0 114D,D1A0 -114D,D210 114D,D210 -114D,D280 114D,D280 -114D,D2F0 114D,D2F0 -114D,D360 114D,D360 -114D,D3D0 114D,D3D0 -114D,D440 114D,D440 -114D,D4B0 114D,D4B0 -114D,D520 114D,D520 -114D,D590 114D,D590 -114D,D600 114D,D600 -114D,D670 114D,D670 -114D,D6E0 114D,D6E0 -114D,D750 114D,D750 -114E,AC00 114E,AC00 -114E,AC70 114E,AC70 -114E,ACE0 114E,ACE0 -114E,AD50 114E,AD50 -114E,ADC0 114E,ADC0 -114E,AE30 114E,AE30 -114E,AEA0 114E,AEA0 -114E,AF10 114E,AF10 -114E,AF80 114E,AF80 -114E,AFF0 114E,AFF0 -114E,B060 114E,B060 -114E,B0D0 114E,B0D0 -114E,B140 114E,B140 -114E,B1B0 114E,B1B0 -114E,B220 114E,B220 -114E,B290 114E,B290 -114E,B300 114E,B300 -114E,B370 114E,B370 -114E,B3E0 114E,B3E0 -114E,B450 114E,B450 -114E,B4C0 114E,B4C0 -114E,B530 114E,B530 -114E,B5A0 114E,B5A0 -114E,B610 114E,B610 -114E,B680 114E,B680 -114E,B6F0 114E,B6F0 -114E,B760 114E,B760 -114E,B7D0 114E,B7D0 -114E,B840 114E,B840 -114E,B8B0 114E,B8B0 -114E,B920 114E,B920 -114E,B990 114E,B990 -114E,BA00 114E,BA00 -114E,BA70 114E,BA70 -114E,BAE0 114E,BAE0 -114E,BB50 114E,BB50 -114E,BBC0 114E,BBC0 -114E,BC30 114E,BC30 -114E,BCA0 114E,BCA0 -114E,BD10 114E,BD10 -114E,BD80 114E,BD80 -114E,BDF0 114E,BDF0 -114E,BE60 114E,BE60 -114E,BED0 114E,BED0 -114E,BF40 114E,BF40 -114E,BFB0 114E,BFB0 -114E,C020 114E,C020 -114E,C090 114E,C090 -114E,C100 114E,C100 -114E,C170 114E,C170 -114E,C1E0 114E,C1E0 -114E,C250 114E,C250 -114E,C2C0 114E,C2C0 -114E,C330 114E,C330 -114E,C3A0 114E,C3A0 -114E,C410 114E,C410 -114E,C480 114E,C480 -114E,C4F0 114E,C4F0 -114E,C560 114E,C560 -114E,C5D0 114E,C5D0 -114E,C640 114E,C640 -114E,C6B0 114E,C6B0 -114E,C720 114E,C720 -114E,C790 114E,C790 -114E,C800 114E,C800 -114E,C870 114E,C870 -114E,C8E0 114E,C8E0 -114E,C950 114E,C950 -114E,C9C0 114E,C9C0 -114E,CA30 114E,CA30 -114E,CAA0 114E,CAA0 -114E,CB10 114E,CB10 -114E,CB80 114E,CB80 -114E,CBF0 114E,CBF0 -114E,CC60 114E,CC60 -114E,CCD0 114E,CCD0 -114E,CD40 114E,CD40 -114E,CDB0 114E,CDB0 -114E,CE20 114E,CE20 -114E,CE90 114E,CE90 -114E,CF00 114E,CF00 -114E,CF70 114E,CF70 -114E,CFE0 114E,CFE0 -114E,D050 114E,D050 -114E,D0C0 114E,D0C0 -114E,D130 114E,D130 -114E,D1A0 114E,D1A0 -114E,D210 114E,D210 -114E,D280 114E,D280 -114E,D2F0 114E,D2F0 -114E,D360 114E,D360 -114E,D3D0 114E,D3D0 -114E,D440 114E,D440 -114E,D4B0 114E,D4B0 -114E,D520 114E,D520 -114E,D590 114E,D590 -114E,D600 114E,D600 -114E,D670 114E,D670 -114E,D6E0 114E,D6E0 -114E,D750 114E,D750 -114F,AC00 114F,AC00 -114F,AC70 114F,AC70 -114F,ACE0 114F,ACE0 -114F,AD50 114F,AD50 -114F,ADC0 114F,ADC0 -114F,AE30 114F,AE30 -114F,AEA0 114F,AEA0 -114F,AF10 114F,AF10 -114F,AF80 114F,AF80 -114F,AFF0 114F,AFF0 -114F,B060 114F,B060 -114F,B0D0 114F,B0D0 -114F,B140 114F,B140 -114F,B1B0 114F,B1B0 -114F,B220 114F,B220 -114F,B290 114F,B290 -114F,B300 114F,B300 -114F,B370 114F,B370 -114F,B3E0 114F,B3E0 -114F,B450 114F,B450 -114F,B4C0 114F,B4C0 -114F,B530 114F,B530 -114F,B5A0 114F,B5A0 -114F,B610 114F,B610 -114F,B680 114F,B680 -114F,B6F0 114F,B6F0 -114F,B760 114F,B760 -114F,B7D0 114F,B7D0 -114F,B840 114F,B840 -114F,B8B0 114F,B8B0 -114F,B920 114F,B920 -114F,B990 114F,B990 -114F,BA00 114F,BA00 -114F,BA70 114F,BA70 -114F,BAE0 114F,BAE0 -114F,BB50 114F,BB50 -114F,BBC0 114F,BBC0 -114F,BC30 114F,BC30 -114F,BCA0 114F,BCA0 -114F,BD10 114F,BD10 -114F,BD80 114F,BD80 -114F,BDF0 114F,BDF0 -114F,BE60 114F,BE60 -114F,BED0 114F,BED0 -114F,BF40 114F,BF40 -114F,BFB0 114F,BFB0 -114F,C020 114F,C020 -114F,C090 114F,C090 -114F,C100 114F,C100 -114F,C170 114F,C170 -114F,C1E0 114F,C1E0 -114F,C250 114F,C250 -114F,C2C0 114F,C2C0 -114F,C330 114F,C330 -114F,C3A0 114F,C3A0 -114F,C410 114F,C410 -114F,C480 114F,C480 -114F,C4F0 114F,C4F0 -114F,C560 114F,C560 -114F,C5D0 114F,C5D0 -114F,C640 114F,C640 -114F,C6B0 114F,C6B0 -114F,C720 114F,C720 -114F,C790 114F,C790 -114F,C800 114F,C800 -114F,C870 114F,C870 -114F,C8E0 114F,C8E0 -114F,C950 114F,C950 -114F,C9C0 114F,C9C0 -114F,CA30 114F,CA30 -114F,CAA0 114F,CAA0 -114F,CB10 114F,CB10 -114F,CB80 114F,CB80 -114F,CBF0 114F,CBF0 -114F,CC60 114F,CC60 -114F,CCD0 114F,CCD0 -114F,CD40 114F,CD40 -114F,CDB0 114F,CDB0 -114F,CE20 114F,CE20 -114F,CE90 114F,CE90 -114F,CF00 114F,CF00 -114F,CF70 114F,CF70 -114F,CFE0 114F,CFE0 -114F,D050 114F,D050 -114F,D0C0 114F,D0C0 -114F,D130 114F,D130 -114F,D1A0 114F,D1A0 -114F,D210 114F,D210 -114F,D280 114F,D280 -114F,D2F0 114F,D2F0 -114F,D360 114F,D360 -114F,D3D0 114F,D3D0 -114F,D440 114F,D440 -114F,D4B0 114F,D4B0 -114F,D520 114F,D520 -114F,D590 114F,D590 -114F,D600 114F,D600 -114F,D670 114F,D670 -114F,D6E0 114F,D6E0 -114F,D750 114F,D750 -1150,AC00 1150,AC00 -1150,AC70 1150,AC70 -1150,ACE0 1150,ACE0 -1150,AD50 1150,AD50 -1150,ADC0 1150,ADC0 -1150,AE30 1150,AE30 -1150,AEA0 1150,AEA0 -1150,AF10 1150,AF10 -1150,AF80 1150,AF80 -1150,AFF0 1150,AFF0 -1150,B060 1150,B060 -1150,B0D0 1150,B0D0 -1150,B140 1150,B140 -1150,B1B0 1150,B1B0 -1150,B220 1150,B220 -1150,B290 1150,B290 -1150,B300 1150,B300 -1150,B370 1150,B370 -1150,B3E0 1150,B3E0 -1150,B450 1150,B450 -1150,B4C0 1150,B4C0 -1150,B530 1150,B530 -1150,B5A0 1150,B5A0 -1150,B610 1150,B610 -1150,B680 1150,B680 -1150,B6F0 1150,B6F0 -1150,B760 1150,B760 -1150,B7D0 1150,B7D0 -1150,B840 1150,B840 -1150,B8B0 1150,B8B0 -1150,B920 1150,B920 -1150,B990 1150,B990 -1150,BA00 1150,BA00 -1150,BA70 1150,BA70 -1150,BAE0 1150,BAE0 -1150,BB50 1150,BB50 -1150,BBC0 1150,BBC0 -1150,BC30 1150,BC30 -1150,BCA0 1150,BCA0 -1150,BD10 1150,BD10 -1150,BD80 1150,BD80 -1150,BDF0 1150,BDF0 -1150,BE60 1150,BE60 -1150,BED0 1150,BED0 -1150,BF40 1150,BF40 -1150,BFB0 1150,BFB0 -1150,C020 1150,C020 -1150,C090 1150,C090 -1150,C100 1150,C100 -1150,C170 1150,C170 -1150,C1E0 1150,C1E0 -1150,C250 1150,C250 -1150,C2C0 1150,C2C0 -1150,C330 1150,C330 -1150,C3A0 1150,C3A0 -1150,C410 1150,C410 -1150,C480 1150,C480 -1150,C4F0 1150,C4F0 -1150,C560 1150,C560 -1150,C5D0 1150,C5D0 -1150,C640 1150,C640 -1150,C6B0 1150,C6B0 -1150,C720 1150,C720 -1150,C790 1150,C790 -1150,C800 1150,C800 -1150,C870 1150,C870 -1150,C8E0 1150,C8E0 -1150,C950 1150,C950 -1150,C9C0 1150,C9C0 -1150,CA30 1150,CA30 -1150,CAA0 1150,CAA0 -1150,CB10 1150,CB10 -1150,CB80 1150,CB80 -1150,CBF0 1150,CBF0 -1150,CC60 1150,CC60 -1150,CCD0 1150,CCD0 -1150,CD40 1150,CD40 -1150,CDB0 1150,CDB0 -1150,CE20 1150,CE20 -1150,CE90 1150,CE90 -1150,CF00 1150,CF00 -1150,CF70 1150,CF70 -1150,CFE0 1150,CFE0 -1150,D050 1150,D050 -1150,D0C0 1150,D0C0 -1150,D130 1150,D130 -1150,D1A0 1150,D1A0 -1150,D210 1150,D210 -1150,D280 1150,D280 -1150,D2F0 1150,D2F0 -1150,D360 1150,D360 -1150,D3D0 1150,D3D0 -1150,D440 1150,D440 -1150,D4B0 1150,D4B0 -1150,D520 1150,D520 -1150,D590 1150,D590 -1150,D600 1150,D600 -1150,D670 1150,D670 -1150,D6E0 1150,D6E0 -1150,D750 1150,D750 -1151,AC00 1151,AC00 -1151,AC70 1151,AC70 -1151,ACE0 1151,ACE0 -1151,AD50 1151,AD50 -1151,ADC0 1151,ADC0 -1151,AE30 1151,AE30 -1151,AEA0 1151,AEA0 -1151,AF10 1151,AF10 -1151,AF80 1151,AF80 -1151,AFF0 1151,AFF0 -1151,B060 1151,B060 -1151,B0D0 1151,B0D0 -1151,B140 1151,B140 -1151,B1B0 1151,B1B0 -1151,B220 1151,B220 -1151,B290 1151,B290 -1151,B300 1151,B300 -1151,B370 1151,B370 -1151,B3E0 1151,B3E0 -1151,B450 1151,B450 -1151,B4C0 1151,B4C0 -1151,B530 1151,B530 -1151,B5A0 1151,B5A0 -1151,B610 1151,B610 -1151,B680 1151,B680 -1151,B6F0 1151,B6F0 -1151,B760 1151,B760 -1151,B7D0 1151,B7D0 -1151,B840 1151,B840 -1151,B8B0 1151,B8B0 -1151,B920 1151,B920 -1151,B990 1151,B990 -1151,BA00 1151,BA00 -1151,BA70 1151,BA70 -1151,BAE0 1151,BAE0 -1151,BB50 1151,BB50 -1151,BBC0 1151,BBC0 -1151,BC30 1151,BC30 -1151,BCA0 1151,BCA0 -1151,BD10 1151,BD10 -1151,BD80 1151,BD80 -1151,BDF0 1151,BDF0 -1151,BE60 1151,BE60 -1151,BED0 1151,BED0 -1151,BF40 1151,BF40 -1151,BFB0 1151,BFB0 -1151,C020 1151,C020 -1151,C090 1151,C090 -1151,C100 1151,C100 -1151,C170 1151,C170 -1151,C1E0 1151,C1E0 -1151,C250 1151,C250 -1151,C2C0 1151,C2C0 -1151,C330 1151,C330 -1151,C3A0 1151,C3A0 -1151,C410 1151,C410 -1151,C480 1151,C480 -1151,C4F0 1151,C4F0 -1151,C560 1151,C560 -1151,C5D0 1151,C5D0 -1151,C640 1151,C640 -1151,C6B0 1151,C6B0 -1151,C720 1151,C720 -1151,C790 1151,C790 -1151,C800 1151,C800 -1151,C870 1151,C870 -1151,C8E0 1151,C8E0 -1151,C950 1151,C950 -1151,C9C0 1151,C9C0 -1151,CA30 1151,CA30 -1151,CAA0 1151,CAA0 -1151,CB10 1151,CB10 -1151,CB80 1151,CB80 -1151,CBF0 1151,CBF0 -1151,CC60 1151,CC60 -1151,CCD0 1151,CCD0 -1151,CD40 1151,CD40 -1151,CDB0 1151,CDB0 -1151,CE20 1151,CE20 -1151,CE90 1151,CE90 -1151,CF00 1151,CF00 -1151,CF70 1151,CF70 -1151,CFE0 1151,CFE0 -1151,D050 1151,D050 -1151,D0C0 1151,D0C0 -1151,D130 1151,D130 -1151,D1A0 1151,D1A0 -1151,D210 1151,D210 -1151,D280 1151,D280 -1151,D2F0 1151,D2F0 -1151,D360 1151,D360 -1151,D3D0 1151,D3D0 -1151,D440 1151,D440 -1151,D4B0 1151,D4B0 -1151,D520 1151,D520 -1151,D590 1151,D590 -1151,D600 1151,D600 -1151,D670 1151,D670 -1151,D6E0 1151,D6E0 -1151,D750 1151,D750 -1152,AC00 1152,AC00 -1152,AC70 1152,AC70 -1152,ACE0 1152,ACE0 -1152,AD50 1152,AD50 -1152,ADC0 1152,ADC0 -1152,AE30 1152,AE30 -1152,AEA0 1152,AEA0 -1152,AF10 1152,AF10 -1152,AF80 1152,AF80 -1152,AFF0 1152,AFF0 -1152,B060 1152,B060 -1152,B0D0 1152,B0D0 -1152,B140 1152,B140 -1152,B1B0 1152,B1B0 -1152,B220 1152,B220 -1152,B290 1152,B290 -1152,B300 1152,B300 -1152,B370 1152,B370 -1152,B3E0 1152,B3E0 -1152,B450 1152,B450 -1152,B4C0 1152,B4C0 -1152,B530 1152,B530 -1152,B5A0 1152,B5A0 -1152,B610 1152,B610 -1152,B680 1152,B680 -1152,B6F0 1152,B6F0 -1152,B760 1152,B760 -1152,B7D0 1152,B7D0 -1152,B840 1152,B840 -1152,B8B0 1152,B8B0 -1152,B920 1152,B920 -1152,B990 1152,B990 -1152,BA00 1152,BA00 -1152,BA70 1152,BA70 -1152,BAE0 1152,BAE0 -1152,BB50 1152,BB50 -1152,BBC0 1152,BBC0 -1152,BC30 1152,BC30 -1152,BCA0 1152,BCA0 -1152,BD10 1152,BD10 -1152,BD80 1152,BD80 -1152,BDF0 1152,BDF0 -1152,BE60 1152,BE60 -1152,BED0 1152,BED0 -1152,BF40 1152,BF40 -1152,BFB0 1152,BFB0 -1152,C020 1152,C020 -1152,C090 1152,C090 -1152,C100 1152,C100 -1152,C170 1152,C170 -1152,C1E0 1152,C1E0 -1152,C250 1152,C250 -1152,C2C0 1152,C2C0 -1152,C330 1152,C330 -1152,C3A0 1152,C3A0 -1152,C410 1152,C410 -1152,C480 1152,C480 -1152,C4F0 1152,C4F0 -1152,C560 1152,C560 -1152,C5D0 1152,C5D0 -1152,C640 1152,C640 -1152,C6B0 1152,C6B0 -1152,C720 1152,C720 -1152,C790 1152,C790 -1152,C800 1152,C800 -1152,C870 1152,C870 -1152,C8E0 1152,C8E0 -1152,C950 1152,C950 -1152,C9C0 1152,C9C0 -1152,CA30 1152,CA30 -1152,CAA0 1152,CAA0 -1152,CB10 1152,CB10 -1152,CB80 1152,CB80 -1152,CBF0 1152,CBF0 -1152,CC60 1152,CC60 -1152,CCD0 1152,CCD0 -1152,CD40 1152,CD40 -1152,CDB0 1152,CDB0 -1152,CE20 1152,CE20 -1152,CE90 1152,CE90 -1152,CF00 1152,CF00 -1152,CF70 1152,CF70 -1152,CFE0 1152,CFE0 -1152,D050 1152,D050 -1152,D0C0 1152,D0C0 -1152,D130 1152,D130 -1152,D1A0 1152,D1A0 -1152,D210 1152,D210 -1152,D280 1152,D280 -1152,D2F0 1152,D2F0 -1152,D360 1152,D360 -1152,D3D0 1152,D3D0 -1152,D440 1152,D440 -1152,D4B0 1152,D4B0 -1152,D520 1152,D520 -1152,D590 1152,D590 -1152,D600 1152,D600 -1152,D670 1152,D670 -1152,D6E0 1152,D6E0 -1152,D750 1152,D750 -1153,AC00 1153,AC00 -1153,AC70 1153,AC70 -1153,ACE0 1153,ACE0 -1153,AD50 1153,AD50 -1153,ADC0 1153,ADC0 -1153,AE30 1153,AE30 -1153,AEA0 1153,AEA0 -1153,AF10 1153,AF10 -1153,AF80 1153,AF80 -1153,AFF0 1153,AFF0 -1153,B060 1153,B060 -1153,B0D0 1153,B0D0 -1153,B140 1153,B140 -1153,B1B0 1153,B1B0 -1153,B220 1153,B220 -1153,B290 1153,B290 -1153,B300 1153,B300 -1153,B370 1153,B370 -1153,B3E0 1153,B3E0 -1153,B450 1153,B450 -1153,B4C0 1153,B4C0 -1153,B530 1153,B530 -1153,B5A0 1153,B5A0 -1153,B610 1153,B610 -1153,B680 1153,B680 -1153,B6F0 1153,B6F0 -1153,B760 1153,B760 -1153,B7D0 1153,B7D0 -1153,B840 1153,B840 -1153,B8B0 1153,B8B0 -1153,B920 1153,B920 -1153,B990 1153,B990 -1153,BA00 1153,BA00 -1153,BA70 1153,BA70 -1153,BAE0 1153,BAE0 -1153,BB50 1153,BB50 -1153,BBC0 1153,BBC0 -1153,BC30 1153,BC30 -1153,BCA0 1153,BCA0 -1153,BD10 1153,BD10 -1153,BD80 1153,BD80 -1153,BDF0 1153,BDF0 -1153,BE60 1153,BE60 -1153,BED0 1153,BED0 -1153,BF40 1153,BF40 -1153,BFB0 1153,BFB0 -1153,C020 1153,C020 -1153,C090 1153,C090 -1153,C100 1153,C100 -1153,C170 1153,C170 -1153,C1E0 1153,C1E0 -1153,C250 1153,C250 -1153,C2C0 1153,C2C0 -1153,C330 1153,C330 -1153,C3A0 1153,C3A0 -1153,C410 1153,C410 -1153,C480 1153,C480 -1153,C4F0 1153,C4F0 -1153,C560 1153,C560 -1153,C5D0 1153,C5D0 -1153,C640 1153,C640 -1153,C6B0 1153,C6B0 -1153,C720 1153,C720 -1153,C790 1153,C790 -1153,C800 1153,C800 -1153,C870 1153,C870 -1153,C8E0 1153,C8E0 -1153,C950 1153,C950 -1153,C9C0 1153,C9C0 -1153,CA30 1153,CA30 -1153,CAA0 1153,CAA0 -1153,CB10 1153,CB10 -1153,CB80 1153,CB80 -1153,CBF0 1153,CBF0 -1153,CC60 1153,CC60 -1153,CCD0 1153,CCD0 -1153,CD40 1153,CD40 -1153,CDB0 1153,CDB0 -1153,CE20 1153,CE20 -1153,CE90 1153,CE90 -1153,CF00 1153,CF00 -1153,CF70 1153,CF70 -1153,CFE0 1153,CFE0 -1153,D050 1153,D050 -1153,D0C0 1153,D0C0 -1153,D130 1153,D130 -1153,D1A0 1153,D1A0 -1153,D210 1153,D210 -1153,D280 1153,D280 -1153,D2F0 1153,D2F0 -1153,D360 1153,D360 -1153,D3D0 1153,D3D0 -1153,D440 1153,D440 -1153,D4B0 1153,D4B0 -1153,D520 1153,D520 -1153,D590 1153,D590 -1153,D600 1153,D600 -1153,D670 1153,D670 -1153,D6E0 1153,D6E0 -1153,D750 1153,D750 -1154,AC00 1154,AC00 -1154,AC70 1154,AC70 -1154,ACE0 1154,ACE0 -1154,AD50 1154,AD50 -1154,ADC0 1154,ADC0 -1154,AE30 1154,AE30 -1154,AEA0 1154,AEA0 -1154,AF10 1154,AF10 -1154,AF80 1154,AF80 -1154,AFF0 1154,AFF0 -1154,B060 1154,B060 -1154,B0D0 1154,B0D0 -1154,B140 1154,B140 -1154,B1B0 1154,B1B0 -1154,B220 1154,B220 -1154,B290 1154,B290 -1154,B300 1154,B300 -1154,B370 1154,B370 -1154,B3E0 1154,B3E0 -1154,B450 1154,B450 -1154,B4C0 1154,B4C0 -1154,B530 1154,B530 -1154,B5A0 1154,B5A0 -1154,B610 1154,B610 -1154,B680 1154,B680 -1154,B6F0 1154,B6F0 -1154,B760 1154,B760 -1154,B7D0 1154,B7D0 -1154,B840 1154,B840 -1154,B8B0 1154,B8B0 -1154,B920 1154,B920 -1154,B990 1154,B990 -1154,BA00 1154,BA00 -1154,BA70 1154,BA70 -1154,BAE0 1154,BAE0 -1154,BB50 1154,BB50 -1154,BBC0 1154,BBC0 -1154,BC30 1154,BC30 -1154,BCA0 1154,BCA0 -1154,BD10 1154,BD10 -1154,BD80 1154,BD80 -1154,BDF0 1154,BDF0 -1154,BE60 1154,BE60 -1154,BED0 1154,BED0 -1154,BF40 1154,BF40 -1154,BFB0 1154,BFB0 -1154,C020 1154,C020 -1154,C090 1154,C090 -1154,C100 1154,C100 -1154,C170 1154,C170 -1154,C1E0 1154,C1E0 -1154,C250 1154,C250 -1154,C2C0 1154,C2C0 -1154,C330 1154,C330 -1154,C3A0 1154,C3A0 -1154,C410 1154,C410 -1154,C480 1154,C480 -1154,C4F0 1154,C4F0 -1154,C560 1154,C560 -1154,C5D0 1154,C5D0 -1154,C640 1154,C640 -1154,C6B0 1154,C6B0 -1154,C720 1154,C720 -1154,C790 1154,C790 -1154,C800 1154,C800 -1154,C870 1154,C870 -1154,C8E0 1154,C8E0 -1154,C950 1154,C950 -1154,C9C0 1154,C9C0 -1154,CA30 1154,CA30 -1154,CAA0 1154,CAA0 -1154,CB10 1154,CB10 -1154,CB80 1154,CB80 -1154,CBF0 1154,CBF0 -1154,CC60 1154,CC60 -1154,CCD0 1154,CCD0 -1154,CD40 1154,CD40 -1154,CDB0 1154,CDB0 -1154,CE20 1154,CE20 -1154,CE90 1154,CE90 -1154,CF00 1154,CF00 -1154,CF70 1154,CF70 -1154,CFE0 1154,CFE0 -1154,D050 1154,D050 -1154,D0C0 1154,D0C0 -1154,D130 1154,D130 -1154,D1A0 1154,D1A0 -1154,D210 1154,D210 -1154,D280 1154,D280 -1154,D2F0 1154,D2F0 -1154,D360 1154,D360 -1154,D3D0 1154,D3D0 -1154,D440 1154,D440 -1154,D4B0 1154,D4B0 -1154,D520 1154,D520 -1154,D590 1154,D590 -1154,D600 1154,D600 -1154,D670 1154,D670 -1154,D6E0 1154,D6E0 -1154,D750 1154,D750 -1155,AC00 1155,AC00 -1155,AC70 1155,AC70 -1155,ACE0 1155,ACE0 -1155,AD50 1155,AD50 -1155,ADC0 1155,ADC0 -1155,AE30 1155,AE30 -1155,AEA0 1155,AEA0 -1155,AF10 1155,AF10 -1155,AF80 1155,AF80 -1155,AFF0 1155,AFF0 -1155,B060 1155,B060 -1155,B0D0 1155,B0D0 -1155,B140 1155,B140 -1155,B1B0 1155,B1B0 -1155,B220 1155,B220 -1155,B290 1155,B290 -1155,B300 1155,B300 -1155,B370 1155,B370 -1155,B3E0 1155,B3E0 -1155,B450 1155,B450 -1155,B4C0 1155,B4C0 -1155,B530 1155,B530 -1155,B5A0 1155,B5A0 -1155,B610 1155,B610 -1155,B680 1155,B680 -1155,B6F0 1155,B6F0 -1155,B760 1155,B760 -1155,B7D0 1155,B7D0 -1155,B840 1155,B840 -1155,B8B0 1155,B8B0 -1155,B920 1155,B920 -1155,B990 1155,B990 -1155,BA00 1155,BA00 -1155,BA70 1155,BA70 -1155,BAE0 1155,BAE0 -1155,BB50 1155,BB50 -1155,BBC0 1155,BBC0 -1155,BC30 1155,BC30 -1155,BCA0 1155,BCA0 -1155,BD10 1155,BD10 -1155,BD80 1155,BD80 -1155,BDF0 1155,BDF0 -1155,BE60 1155,BE60 -1155,BED0 1155,BED0 -1155,BF40 1155,BF40 -1155,BFB0 1155,BFB0 -1155,C020 1155,C020 -1155,C090 1155,C090 -1155,C100 1155,C100 -1155,C170 1155,C170 -1155,C1E0 1155,C1E0 -1155,C250 1155,C250 -1155,C2C0 1155,C2C0 -1155,C330 1155,C330 -1155,C3A0 1155,C3A0 -1155,C410 1155,C410 -1155,C480 1155,C480 -1155,C4F0 1155,C4F0 -1155,C560 1155,C560 -1155,C5D0 1155,C5D0 -1155,C640 1155,C640 -1155,C6B0 1155,C6B0 -1155,C720 1155,C720 -1155,C790 1155,C790 -1155,C800 1155,C800 -1155,C870 1155,C870 -1155,C8E0 1155,C8E0 -1155,C950 1155,C950 -1155,C9C0 1155,C9C0 -1155,CA30 1155,CA30 -1155,CAA0 1155,CAA0 -1155,CB10 1155,CB10 -1155,CB80 1155,CB80 -1155,CBF0 1155,CBF0 -1155,CC60 1155,CC60 -1155,CCD0 1155,CCD0 -1155,CD40 1155,CD40 -1155,CDB0 1155,CDB0 -1155,CE20 1155,CE20 -1155,CE90 1155,CE90 -1155,CF00 1155,CF00 -1155,CF70 1155,CF70 -1155,CFE0 1155,CFE0 -1155,D050 1155,D050 -1155,D0C0 1155,D0C0 -1155,D130 1155,D130 -1155,D1A0 1155,D1A0 -1155,D210 1155,D210 -1155,D280 1155,D280 -1155,D2F0 1155,D2F0 -1155,D360 1155,D360 -1155,D3D0 1155,D3D0 -1155,D440 1155,D440 -1155,D4B0 1155,D4B0 -1155,D520 1155,D520 -1155,D590 1155,D590 -1155,D600 1155,D600 -1155,D670 1155,D670 -1155,D6E0 1155,D6E0 -1155,D750 1155,D750 -1156,AC00 1156,AC00 -1156,AC70 1156,AC70 -1156,ACE0 1156,ACE0 -1156,AD50 1156,AD50 -1156,ADC0 1156,ADC0 -1156,AE30 1156,AE30 -1156,AEA0 1156,AEA0 -1156,AF10 1156,AF10 -1156,AF80 1156,AF80 -1156,AFF0 1156,AFF0 -1156,B060 1156,B060 -1156,B0D0 1156,B0D0 -1156,B140 1156,B140 -1156,B1B0 1156,B1B0 -1156,B220 1156,B220 -1156,B290 1156,B290 -1156,B300 1156,B300 -1156,B370 1156,B370 -1156,B3E0 1156,B3E0 -1156,B450 1156,B450 -1156,B4C0 1156,B4C0 -1156,B530 1156,B530 -1156,B5A0 1156,B5A0 -1156,B610 1156,B610 -1156,B680 1156,B680 -1156,B6F0 1156,B6F0 -1156,B760 1156,B760 -1156,B7D0 1156,B7D0 -1156,B840 1156,B840 -1156,B8B0 1156,B8B0 -1156,B920 1156,B920 -1156,B990 1156,B990 -1156,BA00 1156,BA00 -1156,BA70 1156,BA70 -1156,BAE0 1156,BAE0 -1156,BB50 1156,BB50 -1156,BBC0 1156,BBC0 -1156,BC30 1156,BC30 -1156,BCA0 1156,BCA0 -1156,BD10 1156,BD10 -1156,BD80 1156,BD80 -1156,BDF0 1156,BDF0 -1156,BE60 1156,BE60 -1156,BED0 1156,BED0 -1156,BF40 1156,BF40 -1156,BFB0 1156,BFB0 -1156,C020 1156,C020 -1156,C090 1156,C090 -1156,C100 1156,C100 -1156,C170 1156,C170 -1156,C1E0 1156,C1E0 -1156,C250 1156,C250 -1156,C2C0 1156,C2C0 -1156,C330 1156,C330 -1156,C3A0 1156,C3A0 -1156,C410 1156,C410 -1156,C480 1156,C480 -1156,C4F0 1156,C4F0 -1156,C560 1156,C560 -1156,C5D0 1156,C5D0 -1156,C640 1156,C640 -1156,C6B0 1156,C6B0 -1156,C720 1156,C720 -1156,C790 1156,C790 -1156,C800 1156,C800 -1156,C870 1156,C870 -1156,C8E0 1156,C8E0 -1156,C950 1156,C950 -1156,C9C0 1156,C9C0 -1156,CA30 1156,CA30 -1156,CAA0 1156,CAA0 -1156,CB10 1156,CB10 -1156,CB80 1156,CB80 -1156,CBF0 1156,CBF0 -1156,CC60 1156,CC60 -1156,CCD0 1156,CCD0 -1156,CD40 1156,CD40 -1156,CDB0 1156,CDB0 -1156,CE20 1156,CE20 -1156,CE90 1156,CE90 -1156,CF00 1156,CF00 -1156,CF70 1156,CF70 -1156,CFE0 1156,CFE0 -1156,D050 1156,D050 -1156,D0C0 1156,D0C0 -1156,D130 1156,D130 -1156,D1A0 1156,D1A0 -1156,D210 1156,D210 -1156,D280 1156,D280 -1156,D2F0 1156,D2F0 -1156,D360 1156,D360 -1156,D3D0 1156,D3D0 -1156,D440 1156,D440 -1156,D4B0 1156,D4B0 -1156,D520 1156,D520 -1156,D590 1156,D590 -1156,D600 1156,D600 -1156,D670 1156,D670 -1156,D6E0 1156,D6E0 -1156,D750 1156,D750 -1157,AC00 1157,AC00 -1157,AC70 1157,AC70 -1157,ACE0 1157,ACE0 -1157,AD50 1157,AD50 -1157,ADC0 1157,ADC0 -1157,AE30 1157,AE30 -1157,AEA0 1157,AEA0 -1157,AF10 1157,AF10 -1157,AF80 1157,AF80 -1157,AFF0 1157,AFF0 -1157,B060 1157,B060 -1157,B0D0 1157,B0D0 -1157,B140 1157,B140 -1157,B1B0 1157,B1B0 -1157,B220 1157,B220 -1157,B290 1157,B290 -1157,B300 1157,B300 -1157,B370 1157,B370 -1157,B3E0 1157,B3E0 -1157,B450 1157,B450 -1157,B4C0 1157,B4C0 -1157,B530 1157,B530 -1157,B5A0 1157,B5A0 -1157,B610 1157,B610 -1157,B680 1157,B680 -1157,B6F0 1157,B6F0 -1157,B760 1157,B760 -1157,B7D0 1157,B7D0 -1157,B840 1157,B840 -1157,B8B0 1157,B8B0 -1157,B920 1157,B920 -1157,B990 1157,B990 -1157,BA00 1157,BA00 -1157,BA70 1157,BA70 -1157,BAE0 1157,BAE0 -1157,BB50 1157,BB50 -1157,BBC0 1157,BBC0 -1157,BC30 1157,BC30 -1157,BCA0 1157,BCA0 -1157,BD10 1157,BD10 -1157,BD80 1157,BD80 -1157,BDF0 1157,BDF0 -1157,BE60 1157,BE60 -1157,BED0 1157,BED0 -1157,BF40 1157,BF40 -1157,BFB0 1157,BFB0 -1157,C020 1157,C020 -1157,C090 1157,C090 -1157,C100 1157,C100 -1157,C170 1157,C170 -1157,C1E0 1157,C1E0 -1157,C250 1157,C250 -1157,C2C0 1157,C2C0 -1157,C330 1157,C330 -1157,C3A0 1157,C3A0 -1157,C410 1157,C410 -1157,C480 1157,C480 -1157,C4F0 1157,C4F0 -1157,C560 1157,C560 -1157,C5D0 1157,C5D0 -1157,C640 1157,C640 -1157,C6B0 1157,C6B0 -1157,C720 1157,C720 -1157,C790 1157,C790 -1157,C800 1157,C800 -1157,C870 1157,C870 -1157,C8E0 1157,C8E0 -1157,C950 1157,C950 -1157,C9C0 1157,C9C0 -1157,CA30 1157,CA30 -1157,CAA0 1157,CAA0 -1157,CB10 1157,CB10 -1157,CB80 1157,CB80 -1157,CBF0 1157,CBF0 -1157,CC60 1157,CC60 -1157,CCD0 1157,CCD0 -1157,CD40 1157,CD40 -1157,CDB0 1157,CDB0 -1157,CE20 1157,CE20 -1157,CE90 1157,CE90 -1157,CF00 1157,CF00 -1157,CF70 1157,CF70 -1157,CFE0 1157,CFE0 -1157,D050 1157,D050 -1157,D0C0 1157,D0C0 -1157,D130 1157,D130 -1157,D1A0 1157,D1A0 -1157,D210 1157,D210 -1157,D280 1157,D280 -1157,D2F0 1157,D2F0 -1157,D360 1157,D360 -1157,D3D0 1157,D3D0 -1157,D440 1157,D440 -1157,D4B0 1157,D4B0 -1157,D520 1157,D520 -1157,D590 1157,D590 -1157,D600 1157,D600 -1157,D670 1157,D670 -1157,D6E0 1157,D6E0 -1157,D750 1157,D750 -1158,AC00 1158,AC00 -1158,AC70 1158,AC70 -1158,ACE0 1158,ACE0 -1158,AD50 1158,AD50 -1158,ADC0 1158,ADC0 -1158,AE30 1158,AE30 -1158,AEA0 1158,AEA0 -1158,AF10 1158,AF10 -1158,AF80 1158,AF80 -1158,AFF0 1158,AFF0 -1158,B060 1158,B060 -1158,B0D0 1158,B0D0 -1158,B140 1158,B140 -1158,B1B0 1158,B1B0 -1158,B220 1158,B220 -1158,B290 1158,B290 -1158,B300 1158,B300 -1158,B370 1158,B370 -1158,B3E0 1158,B3E0 -1158,B450 1158,B450 -1158,B4C0 1158,B4C0 -1158,B530 1158,B530 -1158,B5A0 1158,B5A0 -1158,B610 1158,B610 -1158,B680 1158,B680 -1158,B6F0 1158,B6F0 -1158,B760 1158,B760 -1158,B7D0 1158,B7D0 -1158,B840 1158,B840 -1158,B8B0 1158,B8B0 -1158,B920 1158,B920 -1158,B990 1158,B990 -1158,BA00 1158,BA00 -1158,BA70 1158,BA70 -1158,BAE0 1158,BAE0 -1158,BB50 1158,BB50 -1158,BBC0 1158,BBC0 -1158,BC30 1158,BC30 -1158,BCA0 1158,BCA0 -1158,BD10 1158,BD10 -1158,BD80 1158,BD80 -1158,BDF0 1158,BDF0 -1158,BE60 1158,BE60 -1158,BED0 1158,BED0 -1158,BF40 1158,BF40 -1158,BFB0 1158,BFB0 -1158,C020 1158,C020 -1158,C090 1158,C090 -1158,C100 1158,C100 -1158,C170 1158,C170 -1158,C1E0 1158,C1E0 -1158,C250 1158,C250 -1158,C2C0 1158,C2C0 -1158,C330 1158,C330 -1158,C3A0 1158,C3A0 -1158,C410 1158,C410 -1158,C480 1158,C480 -1158,C4F0 1158,C4F0 -1158,C560 1158,C560 -1158,C5D0 1158,C5D0 -1158,C640 1158,C640 -1158,C6B0 1158,C6B0 -1158,C720 1158,C720 -1158,C790 1158,C790 -1158,C800 1158,C800 -1158,C870 1158,C870 -1158,C8E0 1158,C8E0 -1158,C950 1158,C950 -1158,C9C0 1158,C9C0 -1158,CA30 1158,CA30 -1158,CAA0 1158,CAA0 -1158,CB10 1158,CB10 -1158,CB80 1158,CB80 -1158,CBF0 1158,CBF0 -1158,CC60 1158,CC60 -1158,CCD0 1158,CCD0 -1158,CD40 1158,CD40 -1158,CDB0 1158,CDB0 -1158,CE20 1158,CE20 -1158,CE90 1158,CE90 -1158,CF00 1158,CF00 -1158,CF70 1158,CF70 -1158,CFE0 1158,CFE0 -1158,D050 1158,D050 -1158,D0C0 1158,D0C0 -1158,D130 1158,D130 -1158,D1A0 1158,D1A0 -1158,D210 1158,D210 -1158,D280 1158,D280 -1158,D2F0 1158,D2F0 -1158,D360 1158,D360 -1158,D3D0 1158,D3D0 -1158,D440 1158,D440 -1158,D4B0 1158,D4B0 -1158,D520 1158,D520 -1158,D590 1158,D590 -1158,D600 1158,D600 -1158,D670 1158,D670 -1158,D6E0 1158,D6E0 -1158,D750 1158,D750 -1159,AC00 1159,AC00 -1159,AC70 1159,AC70 -1159,ACE0 1159,ACE0 -1159,AD50 1159,AD50 -1159,ADC0 1159,ADC0 -1159,AE30 1159,AE30 -1159,AEA0 1159,AEA0 -1159,AF10 1159,AF10 -1159,AF80 1159,AF80 -1159,AFF0 1159,AFF0 -1159,B060 1159,B060 -1159,B0D0 1159,B0D0 -1159,B140 1159,B140 -1159,B1B0 1159,B1B0 -1159,B220 1159,B220 -1159,B290 1159,B290 -1159,B300 1159,B300 -1159,B370 1159,B370 -1159,B3E0 1159,B3E0 -1159,B450 1159,B450 -1159,B4C0 1159,B4C0 -1159,B530 1159,B530 -1159,B5A0 1159,B5A0 -1159,B610 1159,B610 -1159,B680 1159,B680 -1159,B6F0 1159,B6F0 -1159,B760 1159,B760 -1159,B7D0 1159,B7D0 -1159,B840 1159,B840 -1159,B8B0 1159,B8B0 -1159,B920 1159,B920 -1159,B990 1159,B990 -1159,BA00 1159,BA00 -1159,BA70 1159,BA70 -1159,BAE0 1159,BAE0 -1159,BB50 1159,BB50 -1159,BBC0 1159,BBC0 -1159,BC30 1159,BC30 -1159,BCA0 1159,BCA0 -1159,BD10 1159,BD10 -1159,BD80 1159,BD80 -1159,BDF0 1159,BDF0 -1159,BE60 1159,BE60 -1159,BED0 1159,BED0 -1159,BF40 1159,BF40 -1159,BFB0 1159,BFB0 -1159,C020 1159,C020 -1159,C090 1159,C090 -1159,C100 1159,C100 -1159,C170 1159,C170 -1159,C1E0 1159,C1E0 -1159,C250 1159,C250 -1159,C2C0 1159,C2C0 -1159,C330 1159,C330 -1159,C3A0 1159,C3A0 -1159,C410 1159,C410 -1159,C480 1159,C480 -1159,C4F0 1159,C4F0 -1159,C560 1159,C560 -1159,C5D0 1159,C5D0 -1159,C640 1159,C640 -1159,C6B0 1159,C6B0 -1159,C720 1159,C720 -1159,C790 1159,C790 -1159,C800 1159,C800 -1159,C870 1159,C870 -1159,C8E0 1159,C8E0 -1159,C950 1159,C950 -1159,C9C0 1159,C9C0 -1159,CA30 1159,CA30 -1159,CAA0 1159,CAA0 -1159,CB10 1159,CB10 -1159,CB80 1159,CB80 -1159,CBF0 1159,CBF0 -1159,CC60 1159,CC60 -1159,CCD0 1159,CCD0 -1159,CD40 1159,CD40 -1159,CDB0 1159,CDB0 -1159,CE20 1159,CE20 -1159,CE90 1159,CE90 -1159,CF00 1159,CF00 -1159,CF70 1159,CF70 -1159,CFE0 1159,CFE0 -1159,D050 1159,D050 -1159,D0C0 1159,D0C0 -1159,D130 1159,D130 -1159,D1A0 1159,D1A0 -1159,D210 1159,D210 -1159,D280 1159,D280 -1159,D2F0 1159,D2F0 -1159,D360 1159,D360 -1159,D3D0 1159,D3D0 -1159,D440 1159,D440 -1159,D4B0 1159,D4B0 -1159,D520 1159,D520 -1159,D590 1159,D590 -1159,D600 1159,D600 -1159,D670 1159,D670 -1159,D6E0 1159,D6E0 -1159,D750 1159,D750 -115A,AC00 115A,AC00 -115A,AC70 115A,AC70 -115A,ACE0 115A,ACE0 -115A,AD50 115A,AD50 -115A,ADC0 115A,ADC0 -115A,AE30 115A,AE30 -115A,AEA0 115A,AEA0 -115A,AF10 115A,AF10 -115A,AF80 115A,AF80 -115A,AFF0 115A,AFF0 -115A,B060 115A,B060 -115A,B0D0 115A,B0D0 -115A,B140 115A,B140 -115A,B1B0 115A,B1B0 -115A,B220 115A,B220 -115A,B290 115A,B290 -115A,B300 115A,B300 -115A,B370 115A,B370 -115A,B3E0 115A,B3E0 -115A,B450 115A,B450 -115A,B4C0 115A,B4C0 -115A,B530 115A,B530 -115A,B5A0 115A,B5A0 -115A,B610 115A,B610 -115A,B680 115A,B680 -115A,B6F0 115A,B6F0 -115A,B760 115A,B760 -115A,B7D0 115A,B7D0 -115A,B840 115A,B840 -115A,B8B0 115A,B8B0 -115A,B920 115A,B920 -115A,B990 115A,B990 -115A,BA00 115A,BA00 -115A,BA70 115A,BA70 -115A,BAE0 115A,BAE0 -115A,BB50 115A,BB50 -115A,BBC0 115A,BBC0 -115A,BC30 115A,BC30 -115A,BCA0 115A,BCA0 -115A,BD10 115A,BD10 -115A,BD80 115A,BD80 -115A,BDF0 115A,BDF0 -115A,BE60 115A,BE60 -115A,BED0 115A,BED0 -115A,BF40 115A,BF40 -115A,BFB0 115A,BFB0 -115A,C020 115A,C020 -115A,C090 115A,C090 -115A,C100 115A,C100 -115A,C170 115A,C170 -115A,C1E0 115A,C1E0 -115A,C250 115A,C250 -115A,C2C0 115A,C2C0 -115A,C330 115A,C330 -115A,C3A0 115A,C3A0 -115A,C410 115A,C410 -115A,C480 115A,C480 -115A,C4F0 115A,C4F0 -115A,C560 115A,C560 -115A,C5D0 115A,C5D0 -115A,C640 115A,C640 -115A,C6B0 115A,C6B0 -115A,C720 115A,C720 -115A,C790 115A,C790 -115A,C800 115A,C800 -115A,C870 115A,C870 -115A,C8E0 115A,C8E0 -115A,C950 115A,C950 -115A,C9C0 115A,C9C0 -115A,CA30 115A,CA30 -115A,CAA0 115A,CAA0 -115A,CB10 115A,CB10 -115A,CB80 115A,CB80 -115A,CBF0 115A,CBF0 -115A,CC60 115A,CC60 -115A,CCD0 115A,CCD0 -115A,CD40 115A,CD40 -115A,CDB0 115A,CDB0 -115A,CE20 115A,CE20 -115A,CE90 115A,CE90 -115A,CF00 115A,CF00 -115A,CF70 115A,CF70 -115A,CFE0 115A,CFE0 -115A,D050 115A,D050 -115A,D0C0 115A,D0C0 -115A,D130 115A,D130 -115A,D1A0 115A,D1A0 -115A,D210 115A,D210 -115A,D280 115A,D280 -115A,D2F0 115A,D2F0 -115A,D360 115A,D360 -115A,D3D0 115A,D3D0 -115A,D440 115A,D440 -115A,D4B0 115A,D4B0 -115A,D520 115A,D520 -115A,D590 115A,D590 -115A,D600 115A,D600 -115A,D670 115A,D670 -115A,D6E0 115A,D6E0 -115A,D750 115A,D750 -115B,AC00 115B,AC00 -115B,AC70 115B,AC70 -115B,ACE0 115B,ACE0 -115B,AD50 115B,AD50 -115B,ADC0 115B,ADC0 -115B,AE30 115B,AE30 -115B,AEA0 115B,AEA0 -115B,AF10 115B,AF10 -115B,AF80 115B,AF80 -115B,AFF0 115B,AFF0 -115B,B060 115B,B060 -115B,B0D0 115B,B0D0 -115B,B140 115B,B140 -115B,B1B0 115B,B1B0 -115B,B220 115B,B220 -115B,B290 115B,B290 -115B,B300 115B,B300 -115B,B370 115B,B370 -115B,B3E0 115B,B3E0 -115B,B450 115B,B450 -115B,B4C0 115B,B4C0 -115B,B530 115B,B530 -115B,B5A0 115B,B5A0 -115B,B610 115B,B610 -115B,B680 115B,B680 -115B,B6F0 115B,B6F0 -115B,B760 115B,B760 -115B,B7D0 115B,B7D0 -115B,B840 115B,B840 -115B,B8B0 115B,B8B0 -115B,B920 115B,B920 -115B,B990 115B,B990 -115B,BA00 115B,BA00 -115B,BA70 115B,BA70 -115B,BAE0 115B,BAE0 -115B,BB50 115B,BB50 -115B,BBC0 115B,BBC0 -115B,BC30 115B,BC30 -115B,BCA0 115B,BCA0 -115B,BD10 115B,BD10 -115B,BD80 115B,BD80 -115B,BDF0 115B,BDF0 -115B,BE60 115B,BE60 -115B,BED0 115B,BED0 -115B,BF40 115B,BF40 -115B,BFB0 115B,BFB0 -115B,C020 115B,C020 -115B,C090 115B,C090 -115B,C100 115B,C100 -115B,C170 115B,C170 -115B,C1E0 115B,C1E0 -115B,C250 115B,C250 -115B,C2C0 115B,C2C0 -115B,C330 115B,C330 -115B,C3A0 115B,C3A0 -115B,C410 115B,C410 -115B,C480 115B,C480 -115B,C4F0 115B,C4F0 -115B,C560 115B,C560 -115B,C5D0 115B,C5D0 -115B,C640 115B,C640 -115B,C6B0 115B,C6B0 -115B,C720 115B,C720 -115B,C790 115B,C790 -115B,C800 115B,C800 -115B,C870 115B,C870 -115B,C8E0 115B,C8E0 -115B,C950 115B,C950 -115B,C9C0 115B,C9C0 -115B,CA30 115B,CA30 -115B,CAA0 115B,CAA0 -115B,CB10 115B,CB10 -115B,CB80 115B,CB80 -115B,CBF0 115B,CBF0 -115B,CC60 115B,CC60 -115B,CCD0 115B,CCD0 -115B,CD40 115B,CD40 -115B,CDB0 115B,CDB0 -115B,CE20 115B,CE20 -115B,CE90 115B,CE90 -115B,CF00 115B,CF00 -115B,CF70 115B,CF70 -115B,CFE0 115B,CFE0 -115B,D050 115B,D050 -115B,D0C0 115B,D0C0 -115B,D130 115B,D130 -115B,D1A0 115B,D1A0 -115B,D210 115B,D210 -115B,D280 115B,D280 -115B,D2F0 115B,D2F0 -115B,D360 115B,D360 -115B,D3D0 115B,D3D0 -115B,D440 115B,D440 -115B,D4B0 115B,D4B0 -115B,D520 115B,D520 -115B,D590 115B,D590 -115B,D600 115B,D600 -115B,D670 115B,D670 -115B,D6E0 115B,D6E0 -115B,D750 115B,D750 -115C,AC00 115C,AC00 -115C,AC70 115C,AC70 -115C,ACE0 115C,ACE0 -115C,AD50 115C,AD50 -115C,ADC0 115C,ADC0 -115C,AE30 115C,AE30 -115C,AEA0 115C,AEA0 -115C,AF10 115C,AF10 -115C,AF80 115C,AF80 -115C,AFF0 115C,AFF0 -115C,B060 115C,B060 -115C,B0D0 115C,B0D0 -115C,B140 115C,B140 -115C,B1B0 115C,B1B0 -115C,B220 115C,B220 -115C,B290 115C,B290 -115C,B300 115C,B300 -115C,B370 115C,B370 -115C,B3E0 115C,B3E0 -115C,B450 115C,B450 -115C,B4C0 115C,B4C0 -115C,B530 115C,B530 -115C,B5A0 115C,B5A0 -115C,B610 115C,B610 -115C,B680 115C,B680 -115C,B6F0 115C,B6F0 -115C,B760 115C,B760 -115C,B7D0 115C,B7D0 -115C,B840 115C,B840 -115C,B8B0 115C,B8B0 -115C,B920 115C,B920 -115C,B990 115C,B990 -115C,BA00 115C,BA00 -115C,BA70 115C,BA70 -115C,BAE0 115C,BAE0 -115C,BB50 115C,BB50 -115C,BBC0 115C,BBC0 -115C,BC30 115C,BC30 -115C,BCA0 115C,BCA0 -115C,BD10 115C,BD10 -115C,BD80 115C,BD80 -115C,BDF0 115C,BDF0 -115C,BE60 115C,BE60 -115C,BED0 115C,BED0 -115C,BF40 115C,BF40 -115C,BFB0 115C,BFB0 -115C,C020 115C,C020 -115C,C090 115C,C090 -115C,C100 115C,C100 -115C,C170 115C,C170 -115C,C1E0 115C,C1E0 -115C,C250 115C,C250 -115C,C2C0 115C,C2C0 -115C,C330 115C,C330 -115C,C3A0 115C,C3A0 -115C,C410 115C,C410 -115C,C480 115C,C480 -115C,C4F0 115C,C4F0 -115C,C560 115C,C560 -115C,C5D0 115C,C5D0 -115C,C640 115C,C640 -115C,C6B0 115C,C6B0 -115C,C720 115C,C720 -115C,C790 115C,C790 -115C,C800 115C,C800 -115C,C870 115C,C870 -115C,C8E0 115C,C8E0 -115C,C950 115C,C950 -115C,C9C0 115C,C9C0 -115C,CA30 115C,CA30 -115C,CAA0 115C,CAA0 -115C,CB10 115C,CB10 -115C,CB80 115C,CB80 -115C,CBF0 115C,CBF0 -115C,CC60 115C,CC60 -115C,CCD0 115C,CCD0 -115C,CD40 115C,CD40 -115C,CDB0 115C,CDB0 -115C,CE20 115C,CE20 -115C,CE90 115C,CE90 -115C,CF00 115C,CF00 -115C,CF70 115C,CF70 -115C,CFE0 115C,CFE0 -115C,D050 115C,D050 -115C,D0C0 115C,D0C0 -115C,D130 115C,D130 -115C,D1A0 115C,D1A0 -115C,D210 115C,D210 -115C,D280 115C,D280 -115C,D2F0 115C,D2F0 -115C,D360 115C,D360 -115C,D3D0 115C,D3D0 -115C,D440 115C,D440 -115C,D4B0 115C,D4B0 -115C,D520 115C,D520 -115C,D590 115C,D590 -115C,D600 115C,D600 -115C,D670 115C,D670 -115C,D6E0 115C,D6E0 -115C,D750 115C,D750 -115D,AC00 115D,AC00 -115D,AC70 115D,AC70 -115D,ACE0 115D,ACE0 -115D,AD50 115D,AD50 -115D,ADC0 115D,ADC0 -115D,AE30 115D,AE30 -115D,AEA0 115D,AEA0 -115D,AF10 115D,AF10 -115D,AF80 115D,AF80 -115D,AFF0 115D,AFF0 -115D,B060 115D,B060 -115D,B0D0 115D,B0D0 -115D,B140 115D,B140 -115D,B1B0 115D,B1B0 -115D,B220 115D,B220 -115D,B290 115D,B290 -115D,B300 115D,B300 -115D,B370 115D,B370 -115D,B3E0 115D,B3E0 -115D,B450 115D,B450 -115D,B4C0 115D,B4C0 -115D,B530 115D,B530 -115D,B5A0 115D,B5A0 -115D,B610 115D,B610 -115D,B680 115D,B680 -115D,B6F0 115D,B6F0 -115D,B760 115D,B760 -115D,B7D0 115D,B7D0 -115D,B840 115D,B840 -115D,B8B0 115D,B8B0 -115D,B920 115D,B920 -115D,B990 115D,B990 -115D,BA00 115D,BA00 -115D,BA70 115D,BA70 -115D,BAE0 115D,BAE0 -115D,BB50 115D,BB50 -115D,BBC0 115D,BBC0 -115D,BC30 115D,BC30 -115D,BCA0 115D,BCA0 -115D,BD10 115D,BD10 -115D,BD80 115D,BD80 -115D,BDF0 115D,BDF0 -115D,BE60 115D,BE60 -115D,BED0 115D,BED0 -115D,BF40 115D,BF40 -115D,BFB0 115D,BFB0 -115D,C020 115D,C020 -115D,C090 115D,C090 -115D,C100 115D,C100 -115D,C170 115D,C170 -115D,C1E0 115D,C1E0 -115D,C250 115D,C250 -115D,C2C0 115D,C2C0 -115D,C330 115D,C330 -115D,C3A0 115D,C3A0 -115D,C410 115D,C410 -115D,C480 115D,C480 -115D,C4F0 115D,C4F0 -115D,C560 115D,C560 -115D,C5D0 115D,C5D0 -115D,C640 115D,C640 -115D,C6B0 115D,C6B0 -115D,C720 115D,C720 -115D,C790 115D,C790 -115D,C800 115D,C800 -115D,C870 115D,C870 -115D,C8E0 115D,C8E0 -115D,C950 115D,C950 -115D,C9C0 115D,C9C0 -115D,CA30 115D,CA30 -115D,CAA0 115D,CAA0 -115D,CB10 115D,CB10 -115D,CB80 115D,CB80 -115D,CBF0 115D,CBF0 -115D,CC60 115D,CC60 -115D,CCD0 115D,CCD0 -115D,CD40 115D,CD40 -115D,CDB0 115D,CDB0 -115D,CE20 115D,CE20 -115D,CE90 115D,CE90 -115D,CF00 115D,CF00 -115D,CF70 115D,CF70 -115D,CFE0 115D,CFE0 -115D,D050 115D,D050 -115D,D0C0 115D,D0C0 -115D,D130 115D,D130 -115D,D1A0 115D,D1A0 -115D,D210 115D,D210 -115D,D280 115D,D280 -115D,D2F0 115D,D2F0 -115D,D360 115D,D360 -115D,D3D0 115D,D3D0 -115D,D440 115D,D440 -115D,D4B0 115D,D4B0 -115D,D520 115D,D520 -115D,D590 115D,D590 -115D,D600 115D,D600 -115D,D670 115D,D670 -115D,D6E0 115D,D6E0 -115D,D750 115D,D750 -115E,AC00 115E,AC00 -115E,AC70 115E,AC70 -115E,ACE0 115E,ACE0 -115E,AD50 115E,AD50 -115E,ADC0 115E,ADC0 -115E,AE30 115E,AE30 -115E,AEA0 115E,AEA0 -115E,AF10 115E,AF10 -115E,AF80 115E,AF80 -115E,AFF0 115E,AFF0 -115E,B060 115E,B060 -115E,B0D0 115E,B0D0 -115E,B140 115E,B140 -115E,B1B0 115E,B1B0 -115E,B220 115E,B220 -115E,B290 115E,B290 -115E,B300 115E,B300 -115E,B370 115E,B370 -115E,B3E0 115E,B3E0 -115E,B450 115E,B450 -115E,B4C0 115E,B4C0 -115E,B530 115E,B530 -115E,B5A0 115E,B5A0 -115E,B610 115E,B610 -115E,B680 115E,B680 -115E,B6F0 115E,B6F0 -115E,B760 115E,B760 -115E,B7D0 115E,B7D0 -115E,B840 115E,B840 -115E,B8B0 115E,B8B0 -115E,B920 115E,B920 -115E,B990 115E,B990 -115E,BA00 115E,BA00 -115E,BA70 115E,BA70 -115E,BAE0 115E,BAE0 -115E,BB50 115E,BB50 -115E,BBC0 115E,BBC0 -115E,BC30 115E,BC30 -115E,BCA0 115E,BCA0 -115E,BD10 115E,BD10 -115E,BD80 115E,BD80 -115E,BDF0 115E,BDF0 -115E,BE60 115E,BE60 -115E,BED0 115E,BED0 -115E,BF40 115E,BF40 -115E,BFB0 115E,BFB0 -115E,C020 115E,C020 -115E,C090 115E,C090 -115E,C100 115E,C100 -115E,C170 115E,C170 -115E,C1E0 115E,C1E0 -115E,C250 115E,C250 -115E,C2C0 115E,C2C0 -115E,C330 115E,C330 -115E,C3A0 115E,C3A0 -115E,C410 115E,C410 -115E,C480 115E,C480 -115E,C4F0 115E,C4F0 -115E,C560 115E,C560 -115E,C5D0 115E,C5D0 -115E,C640 115E,C640 -115E,C6B0 115E,C6B0 -115E,C720 115E,C720 -115E,C790 115E,C790 -115E,C800 115E,C800 -115E,C870 115E,C870 -115E,C8E0 115E,C8E0 -115E,C950 115E,C950 -115E,C9C0 115E,C9C0 -115E,CA30 115E,CA30 -115E,CAA0 115E,CAA0 -115E,CB10 115E,CB10 -115E,CB80 115E,CB80 -115E,CBF0 115E,CBF0 -115E,CC60 115E,CC60 -115E,CCD0 115E,CCD0 -115E,CD40 115E,CD40 -115E,CDB0 115E,CDB0 -115E,CE20 115E,CE20 -115E,CE90 115E,CE90 -115E,CF00 115E,CF00 -115E,CF70 115E,CF70 -115E,CFE0 115E,CFE0 -115E,D050 115E,D050 -115E,D0C0 115E,D0C0 -115E,D130 115E,D130 -115E,D1A0 115E,D1A0 -115E,D210 115E,D210 -115E,D280 115E,D280 -115E,D2F0 115E,D2F0 -115E,D360 115E,D360 -115E,D3D0 115E,D3D0 -115E,D440 115E,D440 -115E,D4B0 115E,D4B0 -115E,D520 115E,D520 -115E,D590 115E,D590 -115E,D600 115E,D600 -115E,D670 115E,D670 -115E,D6E0 115E,D6E0 -115E,D750 115E,D750 -115F,AC00 115F,AC00 -115F,AC70 115F,AC70 -115F,ACE0 115F,ACE0 -115F,AD50 115F,AD50 -115F,ADC0 115F,ADC0 -115F,AE30 115F,AE30 -115F,AEA0 115F,AEA0 -115F,AF10 115F,AF10 -115F,AF80 115F,AF80 -115F,AFF0 115F,AFF0 -115F,B060 115F,B060 -115F,B0D0 115F,B0D0 -115F,B140 115F,B140 -115F,B1B0 115F,B1B0 -115F,B220 115F,B220 -115F,B290 115F,B290 -115F,B300 115F,B300 -115F,B370 115F,B370 -115F,B3E0 115F,B3E0 -115F,B450 115F,B450 -115F,B4C0 115F,B4C0 -115F,B530 115F,B530 -115F,B5A0 115F,B5A0 -115F,B610 115F,B610 -115F,B680 115F,B680 -115F,B6F0 115F,B6F0 -115F,B760 115F,B760 -115F,B7D0 115F,B7D0 -115F,B840 115F,B840 -115F,B8B0 115F,B8B0 -115F,B920 115F,B920 -115F,B990 115F,B990 -115F,BA00 115F,BA00 -115F,BA70 115F,BA70 -115F,BAE0 115F,BAE0 -115F,BB50 115F,BB50 -115F,BBC0 115F,BBC0 -115F,BC30 115F,BC30 -115F,BCA0 115F,BCA0 -115F,BD10 115F,BD10 -115F,BD80 115F,BD80 -115F,BDF0 115F,BDF0 -115F,BE60 115F,BE60 -115F,BED0 115F,BED0 -115F,BF40 115F,BF40 -115F,BFB0 115F,BFB0 -115F,C020 115F,C020 -115F,C090 115F,C090 -115F,C100 115F,C100 -115F,C170 115F,C170 -115F,C1E0 115F,C1E0 -115F,C250 115F,C250 -115F,C2C0 115F,C2C0 -115F,C330 115F,C330 -115F,C3A0 115F,C3A0 -115F,C410 115F,C410 -115F,C480 115F,C480 -115F,C4F0 115F,C4F0 -115F,C560 115F,C560 -115F,C5D0 115F,C5D0 -115F,C640 115F,C640 -115F,C6B0 115F,C6B0 -115F,C720 115F,C720 -115F,C790 115F,C790 -115F,C800 115F,C800 -115F,C870 115F,C870 -115F,C8E0 115F,C8E0 -115F,C950 115F,C950 -115F,C9C0 115F,C9C0 -115F,CA30 115F,CA30 -115F,CAA0 115F,CAA0 -115F,CB10 115F,CB10 -115F,CB80 115F,CB80 -115F,CBF0 115F,CBF0 -115F,CC60 115F,CC60 -115F,CCD0 115F,CCD0 -115F,CD40 115F,CD40 -115F,CDB0 115F,CDB0 -115F,CE20 115F,CE20 -115F,CE90 115F,CE90 -115F,CF00 115F,CF00 -115F,CF70 115F,CF70 -115F,CFE0 115F,CFE0 -115F,D050 115F,D050 -115F,D0C0 115F,D0C0 -115F,D130 115F,D130 -115F,D1A0 115F,D1A0 -115F,D210 115F,D210 -115F,D280 115F,D280 -115F,D2F0 115F,D2F0 -115F,D360 115F,D360 -115F,D3D0 115F,D3D0 -115F,D440 115F,D440 -115F,D4B0 115F,D4B0 -115F,D520 115F,D520 -115F,D590 115F,D590 -115F,D600 115F,D600 -115F,D670 115F,D670 -115F,D6E0 115F,D6E0 -115F,D750 115F,D750 -1113,AC01 1113,AC01 -1113,AC6D 1113,AC6D -1113,ACDA 1113,ACDA -1113,AD47 1113,AD47 -1113,ADB4 1113,ADB4 -1113,AE21 1113,AE21 -1113,AE8E 1113,AE8E -1113,AEFB 1113,AEFB -1113,AF68 1113,AF68 -1113,AFD5 1113,AFD5 -1113,B041 1113,B041 -1113,B0AE 1113,B0AE -1113,B11B 1113,B11B -1113,B188 1113,B188 -1113,B1F5 1113,B1F5 -1113,B262 1113,B262 -1113,B2CF 1113,B2CF -1113,B33C 1113,B33C -1113,B3A9 1113,B3A9 -1113,B415 1113,B415 -1113,B482 1113,B482 -1113,B4EF 1113,B4EF -1113,B55C 1113,B55C -1113,B5C9 1113,B5C9 -1113,B636 1113,B636 -1113,B6A3 1113,B6A3 -1113,B710 1113,B710 -1113,B77D 1113,B77D -1113,B7E9 1113,B7E9 -1113,B856 1113,B856 -1113,B8C3 1113,B8C3 -1113,B930 1113,B930 -1113,B99D 1113,B99D -1113,BA0A 1113,BA0A -1113,BA77 1113,BA77 -1113,BAE4 1113,BAE4 -1113,BB51 1113,BB51 -1113,BBBD 1113,BBBD -1113,BC2A 1113,BC2A -1113,BC97 1113,BC97 -1113,BD04 1113,BD04 -1113,BD71 1113,BD71 -1113,BDDE 1113,BDDE -1113,BE4B 1113,BE4B -1113,BEB8 1113,BEB8 -1113,BF25 1113,BF25 -1113,BF91 1113,BF91 -1113,BFFE 1113,BFFE -1113,C06B 1113,C06B -1113,C0D8 1113,C0D8 -1113,C145 1113,C145 -1113,C1B2 1113,C1B2 -1113,C21F 1113,C21F -1113,C28C 1113,C28C -1113,C2F9 1113,C2F9 -1113,C365 1113,C365 -1113,C3D2 1113,C3D2 -1113,C43F 1113,C43F -1113,C4AC 1113,C4AC -1113,C519 1113,C519 -1113,C586 1113,C586 -1113,C5F3 1113,C5F3 -1113,C660 1113,C660 -1113,C6CD 1113,C6CD -1113,C739 1113,C739 -1113,C7A6 1113,C7A6 -1113,C813 1113,C813 -1113,C880 1113,C880 -1113,C8ED 1113,C8ED -1113,C95A 1113,C95A -1113,C9C7 1113,C9C7 -1113,CA34 1113,CA34 -1113,CAA1 1113,CAA1 -1113,CB0D 1113,CB0D -1113,CB7A 1113,CB7A -1113,CBE7 1113,CBE7 -1113,CC54 1113,CC54 -1113,CCC1 1113,CCC1 -1113,CD2E 1113,CD2E -1113,CD9B 1113,CD9B -1113,CE08 1113,CE08 -1113,CE75 1113,CE75 -1113,CEE1 1113,CEE1 -1113,CF4E 1113,CF4E -1113,CFBB 1113,CFBB -1113,D028 1113,D028 -1113,D095 1113,D095 -1113,D102 1113,D102 -1113,D16F 1113,D16F -1113,D1DC 1113,D1DC -1113,D249 1113,D249 -1113,D2B5 1113,D2B5 -1113,D322 1113,D322 -1113,D38F 1113,D38F -1113,D3FC 1113,D3FC -1113,D469 1113,D469 -1113,D4D6 1113,D4D6 -1113,D543 1113,D543 -1113,D5B0 1113,D5B0 -1113,D61D 1113,D61D -1113,D689 1113,D689 -1113,D6F6 1113,D6F6 -1113,D763 1113,D763 -1114,AC01 1114,AC01 -1114,AC6D 1114,AC6D -1114,ACDA 1114,ACDA -1114,AD47 1114,AD47 -1114,ADB4 1114,ADB4 -1114,AE21 1114,AE21 -1114,AE8E 1114,AE8E -1114,AEFB 1114,AEFB -1114,AF68 1114,AF68 -1114,AFD5 1114,AFD5 -1114,B041 1114,B041 -1114,B0AE 1114,B0AE -1114,B11B 1114,B11B -1114,B188 1114,B188 -1114,B1F5 1114,B1F5 -1114,B262 1114,B262 -1114,B2CF 1114,B2CF -1114,B33C 1114,B33C -1114,B3A9 1114,B3A9 -1114,B415 1114,B415 -1114,B482 1114,B482 -1114,B4EF 1114,B4EF -1114,B55C 1114,B55C -1114,B5C9 1114,B5C9 -1114,B636 1114,B636 -1114,B6A3 1114,B6A3 -1114,B710 1114,B710 -1114,B77D 1114,B77D -1114,B7E9 1114,B7E9 -1114,B856 1114,B856 -1114,B8C3 1114,B8C3 -1114,B930 1114,B930 -1114,B99D 1114,B99D -1114,BA0A 1114,BA0A -1114,BA77 1114,BA77 -1114,BAE4 1114,BAE4 -1114,BB51 1114,BB51 -1114,BBBD 1114,BBBD -1114,BC2A 1114,BC2A -1114,BC97 1114,BC97 -1114,BD04 1114,BD04 -1114,BD71 1114,BD71 -1114,BDDE 1114,BDDE -1114,BE4B 1114,BE4B -1114,BEB8 1114,BEB8 -1114,BF25 1114,BF25 -1114,BF91 1114,BF91 -1114,BFFE 1114,BFFE -1114,C06B 1114,C06B -1114,C0D8 1114,C0D8 -1114,C145 1114,C145 -1114,C1B2 1114,C1B2 -1114,C21F 1114,C21F -1114,C28C 1114,C28C -1114,C2F9 1114,C2F9 -1114,C365 1114,C365 -1114,C3D2 1114,C3D2 -1114,C43F 1114,C43F -1114,C4AC 1114,C4AC -1114,C519 1114,C519 -1114,C586 1114,C586 -1114,C5F3 1114,C5F3 -1114,C660 1114,C660 -1114,C6CD 1114,C6CD -1114,C739 1114,C739 -1114,C7A6 1114,C7A6 -1114,C813 1114,C813 -1114,C880 1114,C880 -1114,C8ED 1114,C8ED -1114,C95A 1114,C95A -1114,C9C7 1114,C9C7 -1114,CA34 1114,CA34 -1114,CAA1 1114,CAA1 -1114,CB0D 1114,CB0D -1114,CB7A 1114,CB7A -1114,CBE7 1114,CBE7 -1114,CC54 1114,CC54 -1114,CCC1 1114,CCC1 -1114,CD2E 1114,CD2E -1114,CD9B 1114,CD9B -1114,CE08 1114,CE08 -1114,CE75 1114,CE75 -1114,CEE1 1114,CEE1 -1114,CF4E 1114,CF4E -1114,CFBB 1114,CFBB -1114,D028 1114,D028 -1114,D095 1114,D095 -1114,D102 1114,D102 -1114,D16F 1114,D16F -1114,D1DC 1114,D1DC -1114,D249 1114,D249 -1114,D2B5 1114,D2B5 -1114,D322 1114,D322 -1114,D38F 1114,D38F -1114,D3FC 1114,D3FC -1114,D469 1114,D469 -1114,D4D6 1114,D4D6 -1114,D543 1114,D543 -1114,D5B0 1114,D5B0 -1114,D61D 1114,D61D -1114,D689 1114,D689 -1114,D6F6 1114,D6F6 -1114,D763 1114,D763 -1115,AC01 1115,AC01 -1115,AC6D 1115,AC6D -1115,ACDA 1115,ACDA -1115,AD47 1115,AD47 -1115,ADB4 1115,ADB4 -1115,AE21 1115,AE21 -1115,AE8E 1115,AE8E -1115,AEFB 1115,AEFB -1115,AF68 1115,AF68 -1115,AFD5 1115,AFD5 -1115,B041 1115,B041 -1115,B0AE 1115,B0AE -1115,B11B 1115,B11B -1115,B188 1115,B188 -1115,B1F5 1115,B1F5 -1115,B262 1115,B262 -1115,B2CF 1115,B2CF -1115,B33C 1115,B33C -1115,B3A9 1115,B3A9 -1115,B415 1115,B415 -1115,B482 1115,B482 -1115,B4EF 1115,B4EF -1115,B55C 1115,B55C -1115,B5C9 1115,B5C9 -1115,B636 1115,B636 -1115,B6A3 1115,B6A3 -1115,B710 1115,B710 -1115,B77D 1115,B77D -1115,B7E9 1115,B7E9 -1115,B856 1115,B856 -1115,B8C3 1115,B8C3 -1115,B930 1115,B930 -1115,B99D 1115,B99D -1115,BA0A 1115,BA0A -1115,BA77 1115,BA77 -1115,BAE4 1115,BAE4 -1115,BB51 1115,BB51 -1115,BBBD 1115,BBBD -1115,BC2A 1115,BC2A -1115,BC97 1115,BC97 -1115,BD04 1115,BD04 -1115,BD71 1115,BD71 -1115,BDDE 1115,BDDE -1115,BE4B 1115,BE4B -1115,BEB8 1115,BEB8 -1115,BF25 1115,BF25 -1115,BF91 1115,BF91 -1115,BFFE 1115,BFFE -1115,C06B 1115,C06B -1115,C0D8 1115,C0D8 -1115,C145 1115,C145 -1115,C1B2 1115,C1B2 -1115,C21F 1115,C21F -1115,C28C 1115,C28C -1115,C2F9 1115,C2F9 -1115,C365 1115,C365 -1115,C3D2 1115,C3D2 -1115,C43F 1115,C43F -1115,C4AC 1115,C4AC -1115,C519 1115,C519 -1115,C586 1115,C586 -1115,C5F3 1115,C5F3 -1115,C660 1115,C660 -1115,C6CD 1115,C6CD -1115,C739 1115,C739 -1115,C7A6 1115,C7A6 -1115,C813 1115,C813 -1115,C880 1115,C880 -1115,C8ED 1115,C8ED -1115,C95A 1115,C95A -1115,C9C7 1115,C9C7 -1115,CA34 1115,CA34 -1115,CAA1 1115,CAA1 -1115,CB0D 1115,CB0D -1115,CB7A 1115,CB7A -1115,CBE7 1115,CBE7 -1115,CC54 1115,CC54 -1115,CCC1 1115,CCC1 -1115,CD2E 1115,CD2E -1115,CD9B 1115,CD9B -1115,CE08 1115,CE08 -1115,CE75 1115,CE75 -1115,CEE1 1115,CEE1 -1115,CF4E 1115,CF4E -1115,CFBB 1115,CFBB -1115,D028 1115,D028 -1115,D095 1115,D095 -1115,D102 1115,D102 -1115,D16F 1115,D16F -1115,D1DC 1115,D1DC -1115,D249 1115,D249 -1115,D2B5 1115,D2B5 -1115,D322 1115,D322 -1115,D38F 1115,D38F -1115,D3FC 1115,D3FC -1115,D469 1115,D469 -1115,D4D6 1115,D4D6 -1115,D543 1115,D543 -1115,D5B0 1115,D5B0 -1115,D61D 1115,D61D -1115,D689 1115,D689 -1115,D6F6 1115,D6F6 -1115,D763 1115,D763 -1116,AC01 1116,AC01 -1116,AC6D 1116,AC6D -1116,ACDA 1116,ACDA -1116,AD47 1116,AD47 -1116,ADB4 1116,ADB4 -1116,AE21 1116,AE21 -1116,AE8E 1116,AE8E -1116,AEFB 1116,AEFB -1116,AF68 1116,AF68 -1116,AFD5 1116,AFD5 -1116,B041 1116,B041 -1116,B0AE 1116,B0AE -1116,B11B 1116,B11B -1116,B188 1116,B188 -1116,B1F5 1116,B1F5 -1116,B262 1116,B262 -1116,B2CF 1116,B2CF -1116,B33C 1116,B33C -1116,B3A9 1116,B3A9 -1116,B415 1116,B415 -1116,B482 1116,B482 -1116,B4EF 1116,B4EF -1116,B55C 1116,B55C -1116,B5C9 1116,B5C9 -1116,B636 1116,B636 -1116,B6A3 1116,B6A3 -1116,B710 1116,B710 -1116,B77D 1116,B77D -1116,B7E9 1116,B7E9 -1116,B856 1116,B856 -1116,B8C3 1116,B8C3 -1116,B930 1116,B930 -1116,B99D 1116,B99D -1116,BA0A 1116,BA0A -1116,BA77 1116,BA77 -1116,BAE4 1116,BAE4 -1116,BB51 1116,BB51 -1116,BBBD 1116,BBBD -1116,BC2A 1116,BC2A -1116,BC97 1116,BC97 -1116,BD04 1116,BD04 -1116,BD71 1116,BD71 -1116,BDDE 1116,BDDE -1116,BE4B 1116,BE4B -1116,BEB8 1116,BEB8 -1116,BF25 1116,BF25 -1116,BF91 1116,BF91 -1116,BFFE 1116,BFFE -1116,C06B 1116,C06B -1116,C0D8 1116,C0D8 -1116,C145 1116,C145 -1116,C1B2 1116,C1B2 -1116,C21F 1116,C21F -1116,C28C 1116,C28C -1116,C2F9 1116,C2F9 -1116,C365 1116,C365 -1116,C3D2 1116,C3D2 -1116,C43F 1116,C43F -1116,C4AC 1116,C4AC -1116,C519 1116,C519 -1116,C586 1116,C586 -1116,C5F3 1116,C5F3 -1116,C660 1116,C660 -1116,C6CD 1116,C6CD -1116,C739 1116,C739 -1116,C7A6 1116,C7A6 -1116,C813 1116,C813 -1116,C880 1116,C880 -1116,C8ED 1116,C8ED -1116,C95A 1116,C95A -1116,C9C7 1116,C9C7 -1116,CA34 1116,CA34 -1116,CAA1 1116,CAA1 -1116,CB0D 1116,CB0D -1116,CB7A 1116,CB7A -1116,CBE7 1116,CBE7 -1116,CC54 1116,CC54 -1116,CCC1 1116,CCC1 -1116,CD2E 1116,CD2E -1116,CD9B 1116,CD9B -1116,CE08 1116,CE08 -1116,CE75 1116,CE75 -1116,CEE1 1116,CEE1 -1116,CF4E 1116,CF4E -1116,CFBB 1116,CFBB -1116,D028 1116,D028 -1116,D095 1116,D095 -1116,D102 1116,D102 -1116,D16F 1116,D16F -1116,D1DC 1116,D1DC -1116,D249 1116,D249 -1116,D2B5 1116,D2B5 -1116,D322 1116,D322 -1116,D38F 1116,D38F -1116,D3FC 1116,D3FC -1116,D469 1116,D469 -1116,D4D6 1116,D4D6 -1116,D543 1116,D543 -1116,D5B0 1116,D5B0 -1116,D61D 1116,D61D -1116,D689 1116,D689 -1116,D6F6 1116,D6F6 -1116,D763 1116,D763 -1117,AC01 1117,AC01 -1117,AC6D 1117,AC6D -1117,ACDA 1117,ACDA -1117,AD47 1117,AD47 -1117,ADB4 1117,ADB4 -1117,AE21 1117,AE21 -1117,AE8E 1117,AE8E -1117,AEFB 1117,AEFB -1117,AF68 1117,AF68 -1117,AFD5 1117,AFD5 -1117,B041 1117,B041 -1117,B0AE 1117,B0AE -1117,B11B 1117,B11B -1117,B188 1117,B188 -1117,B1F5 1117,B1F5 -1117,B262 1117,B262 -1117,B2CF 1117,B2CF -1117,B33C 1117,B33C -1117,B3A9 1117,B3A9 -1117,B415 1117,B415 -1117,B482 1117,B482 -1117,B4EF 1117,B4EF -1117,B55C 1117,B55C -1117,B5C9 1117,B5C9 -1117,B636 1117,B636 -1117,B6A3 1117,B6A3 -1117,B710 1117,B710 -1117,B77D 1117,B77D -1117,B7E9 1117,B7E9 -1117,B856 1117,B856 -1117,B8C3 1117,B8C3 -1117,B930 1117,B930 -1117,B99D 1117,B99D -1117,BA0A 1117,BA0A -1117,BA77 1117,BA77 -1117,BAE4 1117,BAE4 -1117,BB51 1117,BB51 -1117,BBBD 1117,BBBD -1117,BC2A 1117,BC2A -1117,BC97 1117,BC97 -1117,BD04 1117,BD04 -1117,BD71 1117,BD71 -1117,BDDE 1117,BDDE -1117,BE4B 1117,BE4B -1117,BEB8 1117,BEB8 -1117,BF25 1117,BF25 -1117,BF91 1117,BF91 -1117,BFFE 1117,BFFE -1117,C06B 1117,C06B -1117,C0D8 1117,C0D8 -1117,C145 1117,C145 -1117,C1B2 1117,C1B2 -1117,C21F 1117,C21F -1117,C28C 1117,C28C -1117,C2F9 1117,C2F9 -1117,C365 1117,C365 -1117,C3D2 1117,C3D2 -1117,C43F 1117,C43F -1117,C4AC 1117,C4AC -1117,C519 1117,C519 -1117,C586 1117,C586 -1117,C5F3 1117,C5F3 -1117,C660 1117,C660 -1117,C6CD 1117,C6CD -1117,C739 1117,C739 -1117,C7A6 1117,C7A6 -1117,C813 1117,C813 -1117,C880 1117,C880 -1117,C8ED 1117,C8ED -1117,C95A 1117,C95A -1117,C9C7 1117,C9C7 -1117,CA34 1117,CA34 -1117,CAA1 1117,CAA1 -1117,CB0D 1117,CB0D -1117,CB7A 1117,CB7A -1117,CBE7 1117,CBE7 -1117,CC54 1117,CC54 -1117,CCC1 1117,CCC1 -1117,CD2E 1117,CD2E -1117,CD9B 1117,CD9B -1117,CE08 1117,CE08 -1117,CE75 1117,CE75 -1117,CEE1 1117,CEE1 -1117,CF4E 1117,CF4E -1117,CFBB 1117,CFBB -1117,D028 1117,D028 -1117,D095 1117,D095 -1117,D102 1117,D102 -1117,D16F 1117,D16F -1117,D1DC 1117,D1DC -1117,D249 1117,D249 -1117,D2B5 1117,D2B5 -1117,D322 1117,D322 -1117,D38F 1117,D38F -1117,D3FC 1117,D3FC -1117,D469 1117,D469 -1117,D4D6 1117,D4D6 -1117,D543 1117,D543 -1117,D5B0 1117,D5B0 -1117,D61D 1117,D61D -1117,D689 1117,D689 -1117,D6F6 1117,D6F6 -1117,D763 1117,D763 -1118,AC01 1118,AC01 -1118,AC6D 1118,AC6D -1118,ACDA 1118,ACDA -1118,AD47 1118,AD47 -1118,ADB4 1118,ADB4 -1118,AE21 1118,AE21 -1118,AE8E 1118,AE8E -1118,AEFB 1118,AEFB -1118,AF68 1118,AF68 -1118,AFD5 1118,AFD5 -1118,B041 1118,B041 -1118,B0AE 1118,B0AE -1118,B11B 1118,B11B -1118,B188 1118,B188 -1118,B1F5 1118,B1F5 -1118,B262 1118,B262 -1118,B2CF 1118,B2CF -1118,B33C 1118,B33C -1118,B3A9 1118,B3A9 -1118,B415 1118,B415 -1118,B482 1118,B482 -1118,B4EF 1118,B4EF -1118,B55C 1118,B55C -1118,B5C9 1118,B5C9 -1118,B636 1118,B636 -1118,B6A3 1118,B6A3 -1118,B710 1118,B710 -1118,B77D 1118,B77D -1118,B7E9 1118,B7E9 -1118,B856 1118,B856 -1118,B8C3 1118,B8C3 -1118,B930 1118,B930 -1118,B99D 1118,B99D -1118,BA0A 1118,BA0A -1118,BA77 1118,BA77 -1118,BAE4 1118,BAE4 -1118,BB51 1118,BB51 -1118,BBBD 1118,BBBD -1118,BC2A 1118,BC2A -1118,BC97 1118,BC97 -1118,BD04 1118,BD04 -1118,BD71 1118,BD71 -1118,BDDE 1118,BDDE -1118,BE4B 1118,BE4B -1118,BEB8 1118,BEB8 -1118,BF25 1118,BF25 -1118,BF91 1118,BF91 -1118,BFFE 1118,BFFE -1118,C06B 1118,C06B -1118,C0D8 1118,C0D8 -1118,C145 1118,C145 -1118,C1B2 1118,C1B2 -1118,C21F 1118,C21F -1118,C28C 1118,C28C -1118,C2F9 1118,C2F9 -1118,C365 1118,C365 -1118,C3D2 1118,C3D2 -1118,C43F 1118,C43F -1118,C4AC 1118,C4AC -1118,C519 1118,C519 -1118,C586 1118,C586 -1118,C5F3 1118,C5F3 -1118,C660 1118,C660 -1118,C6CD 1118,C6CD -1118,C739 1118,C739 -1118,C7A6 1118,C7A6 -1118,C813 1118,C813 -1118,C880 1118,C880 -1118,C8ED 1118,C8ED -1118,C95A 1118,C95A -1118,C9C7 1118,C9C7 -1118,CA34 1118,CA34 -1118,CAA1 1118,CAA1 -1118,CB0D 1118,CB0D -1118,CB7A 1118,CB7A -1118,CBE7 1118,CBE7 -1118,CC54 1118,CC54 -1118,CCC1 1118,CCC1 -1118,CD2E 1118,CD2E -1118,CD9B 1118,CD9B -1118,CE08 1118,CE08 -1118,CE75 1118,CE75 -1118,CEE1 1118,CEE1 -1118,CF4E 1118,CF4E -1118,CFBB 1118,CFBB -1118,D028 1118,D028 -1118,D095 1118,D095 -1118,D102 1118,D102 -1118,D16F 1118,D16F -1118,D1DC 1118,D1DC -1118,D249 1118,D249 -1118,D2B5 1118,D2B5 -1118,D322 1118,D322 -1118,D38F 1118,D38F -1118,D3FC 1118,D3FC -1118,D469 1118,D469 -1118,D4D6 1118,D4D6 -1118,D543 1118,D543 -1118,D5B0 1118,D5B0 -1118,D61D 1118,D61D -1118,D689 1118,D689 -1118,D6F6 1118,D6F6 -1118,D763 1118,D763 -1119,AC01 1119,AC01 -1119,AC6D 1119,AC6D -1119,ACDA 1119,ACDA -1119,AD47 1119,AD47 -1119,ADB4 1119,ADB4 -1119,AE21 1119,AE21 -1119,AE8E 1119,AE8E -1119,AEFB 1119,AEFB -1119,AF68 1119,AF68 -1119,AFD5 1119,AFD5 -1119,B041 1119,B041 -1119,B0AE 1119,B0AE -1119,B11B 1119,B11B -1119,B188 1119,B188 -1119,B1F5 1119,B1F5 -1119,B262 1119,B262 -1119,B2CF 1119,B2CF -1119,B33C 1119,B33C -1119,B3A9 1119,B3A9 -1119,B415 1119,B415 -1119,B482 1119,B482 -1119,B4EF 1119,B4EF -1119,B55C 1119,B55C -1119,B5C9 1119,B5C9 -1119,B636 1119,B636 -1119,B6A3 1119,B6A3 -1119,B710 1119,B710 -1119,B77D 1119,B77D -1119,B7E9 1119,B7E9 -1119,B856 1119,B856 -1119,B8C3 1119,B8C3 -1119,B930 1119,B930 -1119,B99D 1119,B99D -1119,BA0A 1119,BA0A -1119,BA77 1119,BA77 -1119,BAE4 1119,BAE4 -1119,BB51 1119,BB51 -1119,BBBD 1119,BBBD -1119,BC2A 1119,BC2A -1119,BC97 1119,BC97 -1119,BD04 1119,BD04 -1119,BD71 1119,BD71 -1119,BDDE 1119,BDDE -1119,BE4B 1119,BE4B -1119,BEB8 1119,BEB8 -1119,BF25 1119,BF25 -1119,BF91 1119,BF91 -1119,BFFE 1119,BFFE -1119,C06B 1119,C06B -1119,C0D8 1119,C0D8 -1119,C145 1119,C145 -1119,C1B2 1119,C1B2 -1119,C21F 1119,C21F -1119,C28C 1119,C28C -1119,C2F9 1119,C2F9 -1119,C365 1119,C365 -1119,C3D2 1119,C3D2 -1119,C43F 1119,C43F -1119,C4AC 1119,C4AC -1119,C519 1119,C519 -1119,C586 1119,C586 -1119,C5F3 1119,C5F3 -1119,C660 1119,C660 -1119,C6CD 1119,C6CD -1119,C739 1119,C739 -1119,C7A6 1119,C7A6 -1119,C813 1119,C813 -1119,C880 1119,C880 -1119,C8ED 1119,C8ED -1119,C95A 1119,C95A -1119,C9C7 1119,C9C7 -1119,CA34 1119,CA34 -1119,CAA1 1119,CAA1 -1119,CB0D 1119,CB0D -1119,CB7A 1119,CB7A -1119,CBE7 1119,CBE7 -1119,CC54 1119,CC54 -1119,CCC1 1119,CCC1 -1119,CD2E 1119,CD2E -1119,CD9B 1119,CD9B -1119,CE08 1119,CE08 -1119,CE75 1119,CE75 -1119,CEE1 1119,CEE1 -1119,CF4E 1119,CF4E -1119,CFBB 1119,CFBB -1119,D028 1119,D028 -1119,D095 1119,D095 -1119,D102 1119,D102 -1119,D16F 1119,D16F -1119,D1DC 1119,D1DC -1119,D249 1119,D249 -1119,D2B5 1119,D2B5 -1119,D322 1119,D322 -1119,D38F 1119,D38F -1119,D3FC 1119,D3FC -1119,D469 1119,D469 -1119,D4D6 1119,D4D6 -1119,D543 1119,D543 -1119,D5B0 1119,D5B0 -1119,D61D 1119,D61D -1119,D689 1119,D689 -1119,D6F6 1119,D6F6 -1119,D763 1119,D763 -111A,AC01 111A,AC01 -111A,AC6D 111A,AC6D -111A,ACDA 111A,ACDA -111A,AD47 111A,AD47 -111A,ADB4 111A,ADB4 -111A,AE21 111A,AE21 -111A,AE8E 111A,AE8E -111A,AEFB 111A,AEFB -111A,AF68 111A,AF68 -111A,AFD5 111A,AFD5 -111A,B041 111A,B041 -111A,B0AE 111A,B0AE -111A,B11B 111A,B11B -111A,B188 111A,B188 -111A,B1F5 111A,B1F5 -111A,B262 111A,B262 -111A,B2CF 111A,B2CF -111A,B33C 111A,B33C -111A,B3A9 111A,B3A9 -111A,B415 111A,B415 -111A,B482 111A,B482 -111A,B4EF 111A,B4EF -111A,B55C 111A,B55C -111A,B5C9 111A,B5C9 -111A,B636 111A,B636 -111A,B6A3 111A,B6A3 -111A,B710 111A,B710 -111A,B77D 111A,B77D -111A,B7E9 111A,B7E9 -111A,B856 111A,B856 -111A,B8C3 111A,B8C3 -111A,B930 111A,B930 -111A,B99D 111A,B99D -111A,BA0A 111A,BA0A -111A,BA77 111A,BA77 -111A,BAE4 111A,BAE4 -111A,BB51 111A,BB51 -111A,BBBD 111A,BBBD -111A,BC2A 111A,BC2A -111A,BC97 111A,BC97 -111A,BD04 111A,BD04 -111A,BD71 111A,BD71 -111A,BDDE 111A,BDDE -111A,BE4B 111A,BE4B -111A,BEB8 111A,BEB8 -111A,BF25 111A,BF25 -111A,BF91 111A,BF91 -111A,BFFE 111A,BFFE -111A,C06B 111A,C06B -111A,C0D8 111A,C0D8 -111A,C145 111A,C145 -111A,C1B2 111A,C1B2 -111A,C21F 111A,C21F -111A,C28C 111A,C28C -111A,C2F9 111A,C2F9 -111A,C365 111A,C365 -111A,C3D2 111A,C3D2 -111A,C43F 111A,C43F -111A,C4AC 111A,C4AC -111A,C519 111A,C519 -111A,C586 111A,C586 -111A,C5F3 111A,C5F3 -111A,C660 111A,C660 -111A,C6CD 111A,C6CD -111A,C739 111A,C739 -111A,C7A6 111A,C7A6 -111A,C813 111A,C813 -111A,C880 111A,C880 -111A,C8ED 111A,C8ED -111A,C95A 111A,C95A -111A,C9C7 111A,C9C7 -111A,CA34 111A,CA34 -111A,CAA1 111A,CAA1 -111A,CB0D 111A,CB0D -111A,CB7A 111A,CB7A -111A,CBE7 111A,CBE7 -111A,CC54 111A,CC54 -111A,CCC1 111A,CCC1 -111A,CD2E 111A,CD2E -111A,CD9B 111A,CD9B -111A,CE08 111A,CE08 -111A,CE75 111A,CE75 -111A,CEE1 111A,CEE1 -111A,CF4E 111A,CF4E -111A,CFBB 111A,CFBB -111A,D028 111A,D028 -111A,D095 111A,D095 -111A,D102 111A,D102 -111A,D16F 111A,D16F -111A,D1DC 111A,D1DC -111A,D249 111A,D249 -111A,D2B5 111A,D2B5 -111A,D322 111A,D322 -111A,D38F 111A,D38F -111A,D3FC 111A,D3FC -111A,D469 111A,D469 -111A,D4D6 111A,D4D6 -111A,D543 111A,D543 -111A,D5B0 111A,D5B0 -111A,D61D 111A,D61D -111A,D689 111A,D689 -111A,D6F6 111A,D6F6 -111A,D763 111A,D763 -111B,AC01 111B,AC01 -111B,AC6D 111B,AC6D -111B,ACDA 111B,ACDA -111B,AD47 111B,AD47 -111B,ADB4 111B,ADB4 -111B,AE21 111B,AE21 -111B,AE8E 111B,AE8E -111B,AEFB 111B,AEFB -111B,AF68 111B,AF68 -111B,AFD5 111B,AFD5 -111B,B041 111B,B041 -111B,B0AE 111B,B0AE -111B,B11B 111B,B11B -111B,B188 111B,B188 -111B,B1F5 111B,B1F5 -111B,B262 111B,B262 -111B,B2CF 111B,B2CF -111B,B33C 111B,B33C -111B,B3A9 111B,B3A9 -111B,B415 111B,B415 -111B,B482 111B,B482 -111B,B4EF 111B,B4EF -111B,B55C 111B,B55C -111B,B5C9 111B,B5C9 -111B,B636 111B,B636 -111B,B6A3 111B,B6A3 -111B,B710 111B,B710 -111B,B77D 111B,B77D -111B,B7E9 111B,B7E9 -111B,B856 111B,B856 -111B,B8C3 111B,B8C3 -111B,B930 111B,B930 -111B,B99D 111B,B99D -111B,BA0A 111B,BA0A -111B,BA77 111B,BA77 -111B,BAE4 111B,BAE4 -111B,BB51 111B,BB51 -111B,BBBD 111B,BBBD -111B,BC2A 111B,BC2A -111B,BC97 111B,BC97 -111B,BD04 111B,BD04 -111B,BD71 111B,BD71 -111B,BDDE 111B,BDDE -111B,BE4B 111B,BE4B -111B,BEB8 111B,BEB8 -111B,BF25 111B,BF25 -111B,BF91 111B,BF91 -111B,BFFE 111B,BFFE -111B,C06B 111B,C06B -111B,C0D8 111B,C0D8 -111B,C145 111B,C145 -111B,C1B2 111B,C1B2 -111B,C21F 111B,C21F -111B,C28C 111B,C28C -111B,C2F9 111B,C2F9 -111B,C365 111B,C365 -111B,C3D2 111B,C3D2 -111B,C43F 111B,C43F -111B,C4AC 111B,C4AC -111B,C519 111B,C519 -111B,C586 111B,C586 -111B,C5F3 111B,C5F3 -111B,C660 111B,C660 -111B,C6CD 111B,C6CD -111B,C739 111B,C739 -111B,C7A6 111B,C7A6 -111B,C813 111B,C813 -111B,C880 111B,C880 -111B,C8ED 111B,C8ED -111B,C95A 111B,C95A -111B,C9C7 111B,C9C7 -111B,CA34 111B,CA34 -111B,CAA1 111B,CAA1 -111B,CB0D 111B,CB0D -111B,CB7A 111B,CB7A -111B,CBE7 111B,CBE7 -111B,CC54 111B,CC54 -111B,CCC1 111B,CCC1 -111B,CD2E 111B,CD2E -111B,CD9B 111B,CD9B -111B,CE08 111B,CE08 -111B,CE75 111B,CE75 -111B,CEE1 111B,CEE1 -111B,CF4E 111B,CF4E -111B,CFBB 111B,CFBB -111B,D028 111B,D028 -111B,D095 111B,D095 -111B,D102 111B,D102 -111B,D16F 111B,D16F -111B,D1DC 111B,D1DC -111B,D249 111B,D249 -111B,D2B5 111B,D2B5 -111B,D322 111B,D322 -111B,D38F 111B,D38F -111B,D3FC 111B,D3FC -111B,D469 111B,D469 -111B,D4D6 111B,D4D6 -111B,D543 111B,D543 -111B,D5B0 111B,D5B0 -111B,D61D 111B,D61D -111B,D689 111B,D689 -111B,D6F6 111B,D6F6 -111B,D763 111B,D763 -111C,AC01 111C,AC01 -111C,AC6D 111C,AC6D -111C,ACDA 111C,ACDA -111C,AD47 111C,AD47 -111C,ADB4 111C,ADB4 -111C,AE21 111C,AE21 -111C,AE8E 111C,AE8E -111C,AEFB 111C,AEFB -111C,AF68 111C,AF68 -111C,AFD5 111C,AFD5 -111C,B041 111C,B041 -111C,B0AE 111C,B0AE -111C,B11B 111C,B11B -111C,B188 111C,B188 -111C,B1F5 111C,B1F5 -111C,B262 111C,B262 -111C,B2CF 111C,B2CF -111C,B33C 111C,B33C -111C,B3A9 111C,B3A9 -111C,B415 111C,B415 -111C,B482 111C,B482 -111C,B4EF 111C,B4EF -111C,B55C 111C,B55C -111C,B5C9 111C,B5C9 -111C,B636 111C,B636 -111C,B6A3 111C,B6A3 -111C,B710 111C,B710 -111C,B77D 111C,B77D -111C,B7E9 111C,B7E9 -111C,B856 111C,B856 -111C,B8C3 111C,B8C3 -111C,B930 111C,B930 -111C,B99D 111C,B99D -111C,BA0A 111C,BA0A -111C,BA77 111C,BA77 -111C,BAE4 111C,BAE4 -111C,BB51 111C,BB51 -111C,BBBD 111C,BBBD -111C,BC2A 111C,BC2A -111C,BC97 111C,BC97 -111C,BD04 111C,BD04 -111C,BD71 111C,BD71 -111C,BDDE 111C,BDDE -111C,BE4B 111C,BE4B -111C,BEB8 111C,BEB8 -111C,BF25 111C,BF25 -111C,BF91 111C,BF91 -111C,BFFE 111C,BFFE -111C,C06B 111C,C06B -111C,C0D8 111C,C0D8 -111C,C145 111C,C145 -111C,C1B2 111C,C1B2 -111C,C21F 111C,C21F -111C,C28C 111C,C28C -111C,C2F9 111C,C2F9 -111C,C365 111C,C365 -111C,C3D2 111C,C3D2 -111C,C43F 111C,C43F -111C,C4AC 111C,C4AC -111C,C519 111C,C519 -111C,C586 111C,C586 -111C,C5F3 111C,C5F3 -111C,C660 111C,C660 -111C,C6CD 111C,C6CD -111C,C739 111C,C739 -111C,C7A6 111C,C7A6 -111C,C813 111C,C813 -111C,C880 111C,C880 -111C,C8ED 111C,C8ED -111C,C95A 111C,C95A -111C,C9C7 111C,C9C7 -111C,CA34 111C,CA34 -111C,CAA1 111C,CAA1 -111C,CB0D 111C,CB0D -111C,CB7A 111C,CB7A -111C,CBE7 111C,CBE7 -111C,CC54 111C,CC54 -111C,CCC1 111C,CCC1 -111C,CD2E 111C,CD2E -111C,CD9B 111C,CD9B -111C,CE08 111C,CE08 -111C,CE75 111C,CE75 -111C,CEE1 111C,CEE1 -111C,CF4E 111C,CF4E -111C,CFBB 111C,CFBB -111C,D028 111C,D028 -111C,D095 111C,D095 -111C,D102 111C,D102 -111C,D16F 111C,D16F -111C,D1DC 111C,D1DC -111C,D249 111C,D249 -111C,D2B5 111C,D2B5 -111C,D322 111C,D322 -111C,D38F 111C,D38F -111C,D3FC 111C,D3FC -111C,D469 111C,D469 -111C,D4D6 111C,D4D6 -111C,D543 111C,D543 -111C,D5B0 111C,D5B0 -111C,D61D 111C,D61D -111C,D689 111C,D689 -111C,D6F6 111C,D6F6 -111C,D763 111C,D763 -111D,AC01 111D,AC01 -111D,AC6D 111D,AC6D -111D,ACDA 111D,ACDA -111D,AD47 111D,AD47 -111D,ADB4 111D,ADB4 -111D,AE21 111D,AE21 -111D,AE8E 111D,AE8E -111D,AEFB 111D,AEFB -111D,AF68 111D,AF68 -111D,AFD5 111D,AFD5 -111D,B041 111D,B041 -111D,B0AE 111D,B0AE -111D,B11B 111D,B11B -111D,B188 111D,B188 -111D,B1F5 111D,B1F5 -111D,B262 111D,B262 -111D,B2CF 111D,B2CF -111D,B33C 111D,B33C -111D,B3A9 111D,B3A9 -111D,B415 111D,B415 -111D,B482 111D,B482 -111D,B4EF 111D,B4EF -111D,B55C 111D,B55C -111D,B5C9 111D,B5C9 -111D,B636 111D,B636 -111D,B6A3 111D,B6A3 -111D,B710 111D,B710 -111D,B77D 111D,B77D -111D,B7E9 111D,B7E9 -111D,B856 111D,B856 -111D,B8C3 111D,B8C3 -111D,B930 111D,B930 -111D,B99D 111D,B99D -111D,BA0A 111D,BA0A -111D,BA77 111D,BA77 -111D,BAE4 111D,BAE4 -111D,BB51 111D,BB51 -111D,BBBD 111D,BBBD -111D,BC2A 111D,BC2A -111D,BC97 111D,BC97 -111D,BD04 111D,BD04 -111D,BD71 111D,BD71 -111D,BDDE 111D,BDDE -111D,BE4B 111D,BE4B -111D,BEB8 111D,BEB8 -111D,BF25 111D,BF25 -111D,BF91 111D,BF91 -111D,BFFE 111D,BFFE -111D,C06B 111D,C06B -111D,C0D8 111D,C0D8 -111D,C145 111D,C145 -111D,C1B2 111D,C1B2 -111D,C21F 111D,C21F -111D,C28C 111D,C28C -111D,C2F9 111D,C2F9 -111D,C365 111D,C365 -111D,C3D2 111D,C3D2 -111D,C43F 111D,C43F -111D,C4AC 111D,C4AC -111D,C519 111D,C519 -111D,C586 111D,C586 -111D,C5F3 111D,C5F3 -111D,C660 111D,C660 -111D,C6CD 111D,C6CD -111D,C739 111D,C739 -111D,C7A6 111D,C7A6 -111D,C813 111D,C813 -111D,C880 111D,C880 -111D,C8ED 111D,C8ED -111D,C95A 111D,C95A -111D,C9C7 111D,C9C7 -111D,CA34 111D,CA34 -111D,CAA1 111D,CAA1 -111D,CB0D 111D,CB0D -111D,CB7A 111D,CB7A -111D,CBE7 111D,CBE7 -111D,CC54 111D,CC54 -111D,CCC1 111D,CCC1 -111D,CD2E 111D,CD2E -111D,CD9B 111D,CD9B -111D,CE08 111D,CE08 -111D,CE75 111D,CE75 -111D,CEE1 111D,CEE1 -111D,CF4E 111D,CF4E -111D,CFBB 111D,CFBB -111D,D028 111D,D028 -111D,D095 111D,D095 -111D,D102 111D,D102 -111D,D16F 111D,D16F -111D,D1DC 111D,D1DC -111D,D249 111D,D249 -111D,D2B5 111D,D2B5 -111D,D322 111D,D322 -111D,D38F 111D,D38F -111D,D3FC 111D,D3FC -111D,D469 111D,D469 -111D,D4D6 111D,D4D6 -111D,D543 111D,D543 -111D,D5B0 111D,D5B0 -111D,D61D 111D,D61D -111D,D689 111D,D689 -111D,D6F6 111D,D6F6 -111D,D763 111D,D763 -111E,AC01 111E,AC01 -111E,AC6D 111E,AC6D -111E,ACDA 111E,ACDA -111E,AD47 111E,AD47 -111E,ADB4 111E,ADB4 -111E,AE21 111E,AE21 -111E,AE8E 111E,AE8E -111E,AEFB 111E,AEFB -111E,AF68 111E,AF68 -111E,AFD5 111E,AFD5 -111E,B041 111E,B041 -111E,B0AE 111E,B0AE -111E,B11B 111E,B11B -111E,B188 111E,B188 -111E,B1F5 111E,B1F5 -111E,B262 111E,B262 -111E,B2CF 111E,B2CF -111E,B33C 111E,B33C -111E,B3A9 111E,B3A9 -111E,B415 111E,B415 -111E,B482 111E,B482 -111E,B4EF 111E,B4EF -111E,B55C 111E,B55C -111E,B5C9 111E,B5C9 -111E,B636 111E,B636 -111E,B6A3 111E,B6A3 -111E,B710 111E,B710 -111E,B77D 111E,B77D -111E,B7E9 111E,B7E9 -111E,B856 111E,B856 -111E,B8C3 111E,B8C3 -111E,B930 111E,B930 -111E,B99D 111E,B99D -111E,BA0A 111E,BA0A -111E,BA77 111E,BA77 -111E,BAE4 111E,BAE4 -111E,BB51 111E,BB51 -111E,BBBD 111E,BBBD -111E,BC2A 111E,BC2A -111E,BC97 111E,BC97 -111E,BD04 111E,BD04 -111E,BD71 111E,BD71 -111E,BDDE 111E,BDDE -111E,BE4B 111E,BE4B -111E,BEB8 111E,BEB8 -111E,BF25 111E,BF25 -111E,BF91 111E,BF91 -111E,BFFE 111E,BFFE -111E,C06B 111E,C06B -111E,C0D8 111E,C0D8 -111E,C145 111E,C145 -111E,C1B2 111E,C1B2 -111E,C21F 111E,C21F -111E,C28C 111E,C28C -111E,C2F9 111E,C2F9 -111E,C365 111E,C365 -111E,C3D2 111E,C3D2 -111E,C43F 111E,C43F -111E,C4AC 111E,C4AC -111E,C519 111E,C519 -111E,C586 111E,C586 -111E,C5F3 111E,C5F3 -111E,C660 111E,C660 -111E,C6CD 111E,C6CD -111E,C739 111E,C739 -111E,C7A6 111E,C7A6 -111E,C813 111E,C813 -111E,C880 111E,C880 -111E,C8ED 111E,C8ED -111E,C95A 111E,C95A -111E,C9C7 111E,C9C7 -111E,CA34 111E,CA34 -111E,CAA1 111E,CAA1 -111E,CB0D 111E,CB0D -111E,CB7A 111E,CB7A -111E,CBE7 111E,CBE7 -111E,CC54 111E,CC54 -111E,CCC1 111E,CCC1 -111E,CD2E 111E,CD2E -111E,CD9B 111E,CD9B -111E,CE08 111E,CE08 -111E,CE75 111E,CE75 -111E,CEE1 111E,CEE1 -111E,CF4E 111E,CF4E -111E,CFBB 111E,CFBB -111E,D028 111E,D028 -111E,D095 111E,D095 -111E,D102 111E,D102 -111E,D16F 111E,D16F -111E,D1DC 111E,D1DC -111E,D249 111E,D249 -111E,D2B5 111E,D2B5 -111E,D322 111E,D322 -111E,D38F 111E,D38F -111E,D3FC 111E,D3FC -111E,D469 111E,D469 -111E,D4D6 111E,D4D6 -111E,D543 111E,D543 -111E,D5B0 111E,D5B0 -111E,D61D 111E,D61D -111E,D689 111E,D689 -111E,D6F6 111E,D6F6 -111E,D763 111E,D763 -111F,AC01 111F,AC01 -111F,AC6D 111F,AC6D -111F,ACDA 111F,ACDA -111F,AD47 111F,AD47 -111F,ADB4 111F,ADB4 -111F,AE21 111F,AE21 -111F,AE8E 111F,AE8E -111F,AEFB 111F,AEFB -111F,AF68 111F,AF68 -111F,AFD5 111F,AFD5 -111F,B041 111F,B041 -111F,B0AE 111F,B0AE -111F,B11B 111F,B11B -111F,B188 111F,B188 -111F,B1F5 111F,B1F5 -111F,B262 111F,B262 -111F,B2CF 111F,B2CF -111F,B33C 111F,B33C -111F,B3A9 111F,B3A9 -111F,B415 111F,B415 -111F,B482 111F,B482 -111F,B4EF 111F,B4EF -111F,B55C 111F,B55C -111F,B5C9 111F,B5C9 -111F,B636 111F,B636 -111F,B6A3 111F,B6A3 -111F,B710 111F,B710 -111F,B77D 111F,B77D -111F,B7E9 111F,B7E9 -111F,B856 111F,B856 -111F,B8C3 111F,B8C3 -111F,B930 111F,B930 -111F,B99D 111F,B99D -111F,BA0A 111F,BA0A -111F,BA77 111F,BA77 -111F,BAE4 111F,BAE4 -111F,BB51 111F,BB51 -111F,BBBD 111F,BBBD -111F,BC2A 111F,BC2A -111F,BC97 111F,BC97 -111F,BD04 111F,BD04 -111F,BD71 111F,BD71 -111F,BDDE 111F,BDDE -111F,BE4B 111F,BE4B -111F,BEB8 111F,BEB8 -111F,BF25 111F,BF25 -111F,BF91 111F,BF91 -111F,BFFE 111F,BFFE -111F,C06B 111F,C06B -111F,C0D8 111F,C0D8 -111F,C145 111F,C145 -111F,C1B2 111F,C1B2 -111F,C21F 111F,C21F -111F,C28C 111F,C28C -111F,C2F9 111F,C2F9 -111F,C365 111F,C365 -111F,C3D2 111F,C3D2 -111F,C43F 111F,C43F -111F,C4AC 111F,C4AC -111F,C519 111F,C519 -111F,C586 111F,C586 -111F,C5F3 111F,C5F3 -111F,C660 111F,C660 -111F,C6CD 111F,C6CD -111F,C739 111F,C739 -111F,C7A6 111F,C7A6 -111F,C813 111F,C813 -111F,C880 111F,C880 -111F,C8ED 111F,C8ED -111F,C95A 111F,C95A -111F,C9C7 111F,C9C7 -111F,CA34 111F,CA34 -111F,CAA1 111F,CAA1 -111F,CB0D 111F,CB0D -111F,CB7A 111F,CB7A -111F,CBE7 111F,CBE7 -111F,CC54 111F,CC54 -111F,CCC1 111F,CCC1 -111F,CD2E 111F,CD2E -111F,CD9B 111F,CD9B -111F,CE08 111F,CE08 -111F,CE75 111F,CE75 -111F,CEE1 111F,CEE1 -111F,CF4E 111F,CF4E -111F,CFBB 111F,CFBB -111F,D028 111F,D028 -111F,D095 111F,D095 -111F,D102 111F,D102 -111F,D16F 111F,D16F -111F,D1DC 111F,D1DC -111F,D249 111F,D249 -111F,D2B5 111F,D2B5 -111F,D322 111F,D322 -111F,D38F 111F,D38F -111F,D3FC 111F,D3FC -111F,D469 111F,D469 -111F,D4D6 111F,D4D6 -111F,D543 111F,D543 -111F,D5B0 111F,D5B0 -111F,D61D 111F,D61D -111F,D689 111F,D689 -111F,D6F6 111F,D6F6 -111F,D763 111F,D763 -1120,AC01 1120,AC01 -1120,AC6D 1120,AC6D -1120,ACDA 1120,ACDA -1120,AD47 1120,AD47 -1120,ADB4 1120,ADB4 -1120,AE21 1120,AE21 -1120,AE8E 1120,AE8E -1120,AEFB 1120,AEFB -1120,AF68 1120,AF68 -1120,AFD5 1120,AFD5 -1120,B041 1120,B041 -1120,B0AE 1120,B0AE -1120,B11B 1120,B11B -1120,B188 1120,B188 -1120,B1F5 1120,B1F5 -1120,B262 1120,B262 -1120,B2CF 1120,B2CF -1120,B33C 1120,B33C -1120,B3A9 1120,B3A9 -1120,B415 1120,B415 -1120,B482 1120,B482 -1120,B4EF 1120,B4EF -1120,B55C 1120,B55C -1120,B5C9 1120,B5C9 -1120,B636 1120,B636 -1120,B6A3 1120,B6A3 -1120,B710 1120,B710 -1120,B77D 1120,B77D -1120,B7E9 1120,B7E9 -1120,B856 1120,B856 -1120,B8C3 1120,B8C3 -1120,B930 1120,B930 -1120,B99D 1120,B99D -1120,BA0A 1120,BA0A -1120,BA77 1120,BA77 -1120,BAE4 1120,BAE4 -1120,BB51 1120,BB51 -1120,BBBD 1120,BBBD -1120,BC2A 1120,BC2A -1120,BC97 1120,BC97 -1120,BD04 1120,BD04 -1120,BD71 1120,BD71 -1120,BDDE 1120,BDDE -1120,BE4B 1120,BE4B -1120,BEB8 1120,BEB8 -1120,BF25 1120,BF25 -1120,BF91 1120,BF91 -1120,BFFE 1120,BFFE -1120,C06B 1120,C06B -1120,C0D8 1120,C0D8 -1120,C145 1120,C145 -1120,C1B2 1120,C1B2 -1120,C21F 1120,C21F -1120,C28C 1120,C28C -1120,C2F9 1120,C2F9 -1120,C365 1120,C365 -1120,C3D2 1120,C3D2 -1120,C43F 1120,C43F -1120,C4AC 1120,C4AC -1120,C519 1120,C519 -1120,C586 1120,C586 -1120,C5F3 1120,C5F3 -1120,C660 1120,C660 -1120,C6CD 1120,C6CD -1120,C739 1120,C739 -1120,C7A6 1120,C7A6 -1120,C813 1120,C813 -1120,C880 1120,C880 -1120,C8ED 1120,C8ED -1120,C95A 1120,C95A -1120,C9C7 1120,C9C7 -1120,CA34 1120,CA34 -1120,CAA1 1120,CAA1 -1120,CB0D 1120,CB0D -1120,CB7A 1120,CB7A -1120,CBE7 1120,CBE7 -1120,CC54 1120,CC54 -1120,CCC1 1120,CCC1 -1120,CD2E 1120,CD2E -1120,CD9B 1120,CD9B -1120,CE08 1120,CE08 -1120,CE75 1120,CE75 -1120,CEE1 1120,CEE1 -1120,CF4E 1120,CF4E -1120,CFBB 1120,CFBB -1120,D028 1120,D028 -1120,D095 1120,D095 -1120,D102 1120,D102 -1120,D16F 1120,D16F -1120,D1DC 1120,D1DC -1120,D249 1120,D249 -1120,D2B5 1120,D2B5 -1120,D322 1120,D322 -1120,D38F 1120,D38F -1120,D3FC 1120,D3FC -1120,D469 1120,D469 -1120,D4D6 1120,D4D6 -1120,D543 1120,D543 -1120,D5B0 1120,D5B0 -1120,D61D 1120,D61D -1120,D689 1120,D689 -1120,D6F6 1120,D6F6 -1120,D763 1120,D763 -1121,AC01 1121,AC01 -1121,AC6D 1121,AC6D -1121,ACDA 1121,ACDA -1121,AD47 1121,AD47 -1121,ADB4 1121,ADB4 -1121,AE21 1121,AE21 -1121,AE8E 1121,AE8E -1121,AEFB 1121,AEFB -1121,AF68 1121,AF68 -1121,AFD5 1121,AFD5 -1121,B041 1121,B041 -1121,B0AE 1121,B0AE -1121,B11B 1121,B11B -1121,B188 1121,B188 -1121,B1F5 1121,B1F5 -1121,B262 1121,B262 -1121,B2CF 1121,B2CF -1121,B33C 1121,B33C -1121,B3A9 1121,B3A9 -1121,B415 1121,B415 -1121,B482 1121,B482 -1121,B4EF 1121,B4EF -1121,B55C 1121,B55C -1121,B5C9 1121,B5C9 -1121,B636 1121,B636 -1121,B6A3 1121,B6A3 -1121,B710 1121,B710 -1121,B77D 1121,B77D -1121,B7E9 1121,B7E9 -1121,B856 1121,B856 -1121,B8C3 1121,B8C3 -1121,B930 1121,B930 -1121,B99D 1121,B99D -1121,BA0A 1121,BA0A -1121,BA77 1121,BA77 -1121,BAE4 1121,BAE4 -1121,BB51 1121,BB51 -1121,BBBD 1121,BBBD -1121,BC2A 1121,BC2A -1121,BC97 1121,BC97 -1121,BD04 1121,BD04 -1121,BD71 1121,BD71 -1121,BDDE 1121,BDDE -1121,BE4B 1121,BE4B -1121,BEB8 1121,BEB8 -1121,BF25 1121,BF25 -1121,BF91 1121,BF91 -1121,BFFE 1121,BFFE -1121,C06B 1121,C06B -1121,C0D8 1121,C0D8 -1121,C145 1121,C145 -1121,C1B2 1121,C1B2 -1121,C21F 1121,C21F -1121,C28C 1121,C28C -1121,C2F9 1121,C2F9 -1121,C365 1121,C365 -1121,C3D2 1121,C3D2 -1121,C43F 1121,C43F -1121,C4AC 1121,C4AC -1121,C519 1121,C519 -1121,C586 1121,C586 -1121,C5F3 1121,C5F3 -1121,C660 1121,C660 -1121,C6CD 1121,C6CD -1121,C739 1121,C739 -1121,C7A6 1121,C7A6 -1121,C813 1121,C813 -1121,C880 1121,C880 -1121,C8ED 1121,C8ED -1121,C95A 1121,C95A -1121,C9C7 1121,C9C7 -1121,CA34 1121,CA34 -1121,CAA1 1121,CAA1 -1121,CB0D 1121,CB0D -1121,CB7A 1121,CB7A -1121,CBE7 1121,CBE7 -1121,CC54 1121,CC54 -1121,CCC1 1121,CCC1 -1121,CD2E 1121,CD2E -1121,CD9B 1121,CD9B -1121,CE08 1121,CE08 -1121,CE75 1121,CE75 -1121,CEE1 1121,CEE1 -1121,CF4E 1121,CF4E -1121,CFBB 1121,CFBB -1121,D028 1121,D028 -1121,D095 1121,D095 -1121,D102 1121,D102 -1121,D16F 1121,D16F -1121,D1DC 1121,D1DC -1121,D249 1121,D249 -1121,D2B5 1121,D2B5 -1121,D322 1121,D322 -1121,D38F 1121,D38F -1121,D3FC 1121,D3FC -1121,D469 1121,D469 -1121,D4D6 1121,D4D6 -1121,D543 1121,D543 -1121,D5B0 1121,D5B0 -1121,D61D 1121,D61D -1121,D689 1121,D689 -1121,D6F6 1121,D6F6 -1121,D763 1121,D763 -1122,AC01 1122,AC01 -1122,AC6D 1122,AC6D -1122,ACDA 1122,ACDA -1122,AD47 1122,AD47 -1122,ADB4 1122,ADB4 -1122,AE21 1122,AE21 -1122,AE8E 1122,AE8E -1122,AEFB 1122,AEFB -1122,AF68 1122,AF68 -1122,AFD5 1122,AFD5 -1122,B041 1122,B041 -1122,B0AE 1122,B0AE -1122,B11B 1122,B11B -1122,B188 1122,B188 -1122,B1F5 1122,B1F5 -1122,B262 1122,B262 -1122,B2CF 1122,B2CF -1122,B33C 1122,B33C -1122,B3A9 1122,B3A9 -1122,B415 1122,B415 -1122,B482 1122,B482 -1122,B4EF 1122,B4EF -1122,B55C 1122,B55C -1122,B5C9 1122,B5C9 -1122,B636 1122,B636 -1122,B6A3 1122,B6A3 -1122,B710 1122,B710 -1122,B77D 1122,B77D -1122,B7E9 1122,B7E9 -1122,B856 1122,B856 -1122,B8C3 1122,B8C3 -1122,B930 1122,B930 -1122,B99D 1122,B99D -1122,BA0A 1122,BA0A -1122,BA77 1122,BA77 -1122,BAE4 1122,BAE4 -1122,BB51 1122,BB51 -1122,BBBD 1122,BBBD -1122,BC2A 1122,BC2A -1122,BC97 1122,BC97 -1122,BD04 1122,BD04 -1122,BD71 1122,BD71 -1122,BDDE 1122,BDDE -1122,BE4B 1122,BE4B -1122,BEB8 1122,BEB8 -1122,BF25 1122,BF25 -1122,BF91 1122,BF91 -1122,BFFE 1122,BFFE -1122,C06B 1122,C06B -1122,C0D8 1122,C0D8 -1122,C145 1122,C145 -1122,C1B2 1122,C1B2 -1122,C21F 1122,C21F -1122,C28C 1122,C28C -1122,C2F9 1122,C2F9 -1122,C365 1122,C365 -1122,C3D2 1122,C3D2 -1122,C43F 1122,C43F -1122,C4AC 1122,C4AC -1122,C519 1122,C519 -1122,C586 1122,C586 -1122,C5F3 1122,C5F3 -1122,C660 1122,C660 -1122,C6CD 1122,C6CD -1122,C739 1122,C739 -1122,C7A6 1122,C7A6 -1122,C813 1122,C813 -1122,C880 1122,C880 -1122,C8ED 1122,C8ED -1122,C95A 1122,C95A -1122,C9C7 1122,C9C7 -1122,CA34 1122,CA34 -1122,CAA1 1122,CAA1 -1122,CB0D 1122,CB0D -1122,CB7A 1122,CB7A -1122,CBE7 1122,CBE7 -1122,CC54 1122,CC54 -1122,CCC1 1122,CCC1 -1122,CD2E 1122,CD2E -1122,CD9B 1122,CD9B -1122,CE08 1122,CE08 -1122,CE75 1122,CE75 -1122,CEE1 1122,CEE1 -1122,CF4E 1122,CF4E -1122,CFBB 1122,CFBB -1122,D028 1122,D028 -1122,D095 1122,D095 -1122,D102 1122,D102 -1122,D16F 1122,D16F -1122,D1DC 1122,D1DC -1122,D249 1122,D249 -1122,D2B5 1122,D2B5 -1122,D322 1122,D322 -1122,D38F 1122,D38F -1122,D3FC 1122,D3FC -1122,D469 1122,D469 -1122,D4D6 1122,D4D6 -1122,D543 1122,D543 -1122,D5B0 1122,D5B0 -1122,D61D 1122,D61D -1122,D689 1122,D689 -1122,D6F6 1122,D6F6 -1122,D763 1122,D763 -1123,AC01 1123,AC01 -1123,AC6D 1123,AC6D -1123,ACDA 1123,ACDA -1123,AD47 1123,AD47 -1123,ADB4 1123,ADB4 -1123,AE21 1123,AE21 -1123,AE8E 1123,AE8E -1123,AEFB 1123,AEFB -1123,AF68 1123,AF68 -1123,AFD5 1123,AFD5 -1123,B041 1123,B041 -1123,B0AE 1123,B0AE -1123,B11B 1123,B11B -1123,B188 1123,B188 -1123,B1F5 1123,B1F5 -1123,B262 1123,B262 -1123,B2CF 1123,B2CF -1123,B33C 1123,B33C -1123,B3A9 1123,B3A9 -1123,B415 1123,B415 -1123,B482 1123,B482 -1123,B4EF 1123,B4EF -1123,B55C 1123,B55C -1123,B5C9 1123,B5C9 -1123,B636 1123,B636 -1123,B6A3 1123,B6A3 -1123,B710 1123,B710 -1123,B77D 1123,B77D -1123,B7E9 1123,B7E9 -1123,B856 1123,B856 -1123,B8C3 1123,B8C3 -1123,B930 1123,B930 -1123,B99D 1123,B99D -1123,BA0A 1123,BA0A -1123,BA77 1123,BA77 -1123,BAE4 1123,BAE4 -1123,BB51 1123,BB51 -1123,BBBD 1123,BBBD -1123,BC2A 1123,BC2A -1123,BC97 1123,BC97 -1123,BD04 1123,BD04 -1123,BD71 1123,BD71 -1123,BDDE 1123,BDDE -1123,BE4B 1123,BE4B -1123,BEB8 1123,BEB8 -1123,BF25 1123,BF25 -1123,BF91 1123,BF91 -1123,BFFE 1123,BFFE -1123,C06B 1123,C06B -1123,C0D8 1123,C0D8 -1123,C145 1123,C145 -1123,C1B2 1123,C1B2 -1123,C21F 1123,C21F -1123,C28C 1123,C28C -1123,C2F9 1123,C2F9 -1123,C365 1123,C365 -1123,C3D2 1123,C3D2 -1123,C43F 1123,C43F -1123,C4AC 1123,C4AC -1123,C519 1123,C519 -1123,C586 1123,C586 -1123,C5F3 1123,C5F3 -1123,C660 1123,C660 -1123,C6CD 1123,C6CD -1123,C739 1123,C739 -1123,C7A6 1123,C7A6 -1123,C813 1123,C813 -1123,C880 1123,C880 -1123,C8ED 1123,C8ED -1123,C95A 1123,C95A -1123,C9C7 1123,C9C7 -1123,CA34 1123,CA34 -1123,CAA1 1123,CAA1 -1123,CB0D 1123,CB0D -1123,CB7A 1123,CB7A -1123,CBE7 1123,CBE7 -1123,CC54 1123,CC54 -1123,CCC1 1123,CCC1 -1123,CD2E 1123,CD2E -1123,CD9B 1123,CD9B -1123,CE08 1123,CE08 -1123,CE75 1123,CE75 -1123,CEE1 1123,CEE1 -1123,CF4E 1123,CF4E -1123,CFBB 1123,CFBB -1123,D028 1123,D028 -1123,D095 1123,D095 -1123,D102 1123,D102 -1123,D16F 1123,D16F -1123,D1DC 1123,D1DC -1123,D249 1123,D249 -1123,D2B5 1123,D2B5 -1123,D322 1123,D322 -1123,D38F 1123,D38F -1123,D3FC 1123,D3FC -1123,D469 1123,D469 -1123,D4D6 1123,D4D6 -1123,D543 1123,D543 -1123,D5B0 1123,D5B0 -1123,D61D 1123,D61D -1123,D689 1123,D689 -1123,D6F6 1123,D6F6 -1123,D763 1123,D763 -1124,AC01 1124,AC01 -1124,AC6D 1124,AC6D -1124,ACDA 1124,ACDA -1124,AD47 1124,AD47 -1124,ADB4 1124,ADB4 -1124,AE21 1124,AE21 -1124,AE8E 1124,AE8E -1124,AEFB 1124,AEFB -1124,AF68 1124,AF68 -1124,AFD5 1124,AFD5 -1124,B041 1124,B041 -1124,B0AE 1124,B0AE -1124,B11B 1124,B11B -1124,B188 1124,B188 -1124,B1F5 1124,B1F5 -1124,B262 1124,B262 -1124,B2CF 1124,B2CF -1124,B33C 1124,B33C -1124,B3A9 1124,B3A9 -1124,B415 1124,B415 -1124,B482 1124,B482 -1124,B4EF 1124,B4EF -1124,B55C 1124,B55C -1124,B5C9 1124,B5C9 -1124,B636 1124,B636 -1124,B6A3 1124,B6A3 -1124,B710 1124,B710 -1124,B77D 1124,B77D -1124,B7E9 1124,B7E9 -1124,B856 1124,B856 -1124,B8C3 1124,B8C3 -1124,B930 1124,B930 -1124,B99D 1124,B99D -1124,BA0A 1124,BA0A -1124,BA77 1124,BA77 -1124,BAE4 1124,BAE4 -1124,BB51 1124,BB51 -1124,BBBD 1124,BBBD -1124,BC2A 1124,BC2A -1124,BC97 1124,BC97 -1124,BD04 1124,BD04 -1124,BD71 1124,BD71 -1124,BDDE 1124,BDDE -1124,BE4B 1124,BE4B -1124,BEB8 1124,BEB8 -1124,BF25 1124,BF25 -1124,BF91 1124,BF91 -1124,BFFE 1124,BFFE -1124,C06B 1124,C06B -1124,C0D8 1124,C0D8 -1124,C145 1124,C145 -1124,C1B2 1124,C1B2 -1124,C21F 1124,C21F -1124,C28C 1124,C28C -1124,C2F9 1124,C2F9 -1124,C365 1124,C365 -1124,C3D2 1124,C3D2 -1124,C43F 1124,C43F -1124,C4AC 1124,C4AC -1124,C519 1124,C519 -1124,C586 1124,C586 -1124,C5F3 1124,C5F3 -1124,C660 1124,C660 -1124,C6CD 1124,C6CD -1124,C739 1124,C739 -1124,C7A6 1124,C7A6 -1124,C813 1124,C813 -1124,C880 1124,C880 -1124,C8ED 1124,C8ED -1124,C95A 1124,C95A -1124,C9C7 1124,C9C7 -1124,CA34 1124,CA34 -1124,CAA1 1124,CAA1 -1124,CB0D 1124,CB0D -1124,CB7A 1124,CB7A -1124,CBE7 1124,CBE7 -1124,CC54 1124,CC54 -1124,CCC1 1124,CCC1 -1124,CD2E 1124,CD2E -1124,CD9B 1124,CD9B -1124,CE08 1124,CE08 -1124,CE75 1124,CE75 -1124,CEE1 1124,CEE1 -1124,CF4E 1124,CF4E -1124,CFBB 1124,CFBB -1124,D028 1124,D028 -1124,D095 1124,D095 -1124,D102 1124,D102 -1124,D16F 1124,D16F -1124,D1DC 1124,D1DC -1124,D249 1124,D249 -1124,D2B5 1124,D2B5 -1124,D322 1124,D322 -1124,D38F 1124,D38F -1124,D3FC 1124,D3FC -1124,D469 1124,D469 -1124,D4D6 1124,D4D6 -1124,D543 1124,D543 -1124,D5B0 1124,D5B0 -1124,D61D 1124,D61D -1124,D689 1124,D689 -1124,D6F6 1124,D6F6 -1124,D763 1124,D763 -1125,AC01 1125,AC01 -1125,AC6D 1125,AC6D -1125,ACDA 1125,ACDA -1125,AD47 1125,AD47 -1125,ADB4 1125,ADB4 -1125,AE21 1125,AE21 -1125,AE8E 1125,AE8E -1125,AEFB 1125,AEFB -1125,AF68 1125,AF68 -1125,AFD5 1125,AFD5 -1125,B041 1125,B041 -1125,B0AE 1125,B0AE -1125,B11B 1125,B11B -1125,B188 1125,B188 -1125,B1F5 1125,B1F5 -1125,B262 1125,B262 -1125,B2CF 1125,B2CF -1125,B33C 1125,B33C -1125,B3A9 1125,B3A9 -1125,B415 1125,B415 -1125,B482 1125,B482 -1125,B4EF 1125,B4EF -1125,B55C 1125,B55C -1125,B5C9 1125,B5C9 -1125,B636 1125,B636 -1125,B6A3 1125,B6A3 -1125,B710 1125,B710 -1125,B77D 1125,B77D -1125,B7E9 1125,B7E9 -1125,B856 1125,B856 -1125,B8C3 1125,B8C3 -1125,B930 1125,B930 -1125,B99D 1125,B99D -1125,BA0A 1125,BA0A -1125,BA77 1125,BA77 -1125,BAE4 1125,BAE4 -1125,BB51 1125,BB51 -1125,BBBD 1125,BBBD -1125,BC2A 1125,BC2A -1125,BC97 1125,BC97 -1125,BD04 1125,BD04 -1125,BD71 1125,BD71 -1125,BDDE 1125,BDDE -1125,BE4B 1125,BE4B -1125,BEB8 1125,BEB8 -1125,BF25 1125,BF25 -1125,BF91 1125,BF91 -1125,BFFE 1125,BFFE -1125,C06B 1125,C06B -1125,C0D8 1125,C0D8 -1125,C145 1125,C145 -1125,C1B2 1125,C1B2 -1125,C21F 1125,C21F -1125,C28C 1125,C28C -1125,C2F9 1125,C2F9 -1125,C365 1125,C365 -1125,C3D2 1125,C3D2 -1125,C43F 1125,C43F -1125,C4AC 1125,C4AC -1125,C519 1125,C519 -1125,C586 1125,C586 -1125,C5F3 1125,C5F3 -1125,C660 1125,C660 -1125,C6CD 1125,C6CD -1125,C739 1125,C739 -1125,C7A6 1125,C7A6 -1125,C813 1125,C813 -1125,C880 1125,C880 -1125,C8ED 1125,C8ED -1125,C95A 1125,C95A -1125,C9C7 1125,C9C7 -1125,CA34 1125,CA34 -1125,CAA1 1125,CAA1 -1125,CB0D 1125,CB0D -1125,CB7A 1125,CB7A -1125,CBE7 1125,CBE7 -1125,CC54 1125,CC54 -1125,CCC1 1125,CCC1 -1125,CD2E 1125,CD2E -1125,CD9B 1125,CD9B -1125,CE08 1125,CE08 -1125,CE75 1125,CE75 -1125,CEE1 1125,CEE1 -1125,CF4E 1125,CF4E -1125,CFBB 1125,CFBB -1125,D028 1125,D028 -1125,D095 1125,D095 -1125,D102 1125,D102 -1125,D16F 1125,D16F -1125,D1DC 1125,D1DC -1125,D249 1125,D249 -1125,D2B5 1125,D2B5 -1125,D322 1125,D322 -1125,D38F 1125,D38F -1125,D3FC 1125,D3FC -1125,D469 1125,D469 -1125,D4D6 1125,D4D6 -1125,D543 1125,D543 -1125,D5B0 1125,D5B0 -1125,D61D 1125,D61D -1125,D689 1125,D689 -1125,D6F6 1125,D6F6 -1125,D763 1125,D763 -1126,AC01 1126,AC01 -1126,AC6D 1126,AC6D -1126,ACDA 1126,ACDA -1126,AD47 1126,AD47 -1126,ADB4 1126,ADB4 -1126,AE21 1126,AE21 -1126,AE8E 1126,AE8E -1126,AEFB 1126,AEFB -1126,AF68 1126,AF68 -1126,AFD5 1126,AFD5 -1126,B041 1126,B041 -1126,B0AE 1126,B0AE -1126,B11B 1126,B11B -1126,B188 1126,B188 -1126,B1F5 1126,B1F5 -1126,B262 1126,B262 -1126,B2CF 1126,B2CF -1126,B33C 1126,B33C -1126,B3A9 1126,B3A9 -1126,B415 1126,B415 -1126,B482 1126,B482 -1126,B4EF 1126,B4EF -1126,B55C 1126,B55C -1126,B5C9 1126,B5C9 -1126,B636 1126,B636 -1126,B6A3 1126,B6A3 -1126,B710 1126,B710 -1126,B77D 1126,B77D -1126,B7E9 1126,B7E9 -1126,B856 1126,B856 -1126,B8C3 1126,B8C3 -1126,B930 1126,B930 -1126,B99D 1126,B99D -1126,BA0A 1126,BA0A -1126,BA77 1126,BA77 -1126,BAE4 1126,BAE4 -1126,BB51 1126,BB51 -1126,BBBD 1126,BBBD -1126,BC2A 1126,BC2A -1126,BC97 1126,BC97 -1126,BD04 1126,BD04 -1126,BD71 1126,BD71 -1126,BDDE 1126,BDDE -1126,BE4B 1126,BE4B -1126,BEB8 1126,BEB8 -1126,BF25 1126,BF25 -1126,BF91 1126,BF91 -1126,BFFE 1126,BFFE -1126,C06B 1126,C06B -1126,C0D8 1126,C0D8 -1126,C145 1126,C145 -1126,C1B2 1126,C1B2 -1126,C21F 1126,C21F -1126,C28C 1126,C28C -1126,C2F9 1126,C2F9 -1126,C365 1126,C365 -1126,C3D2 1126,C3D2 -1126,C43F 1126,C43F -1126,C4AC 1126,C4AC -1126,C519 1126,C519 -1126,C586 1126,C586 -1126,C5F3 1126,C5F3 -1126,C660 1126,C660 -1126,C6CD 1126,C6CD -1126,C739 1126,C739 -1126,C7A6 1126,C7A6 -1126,C813 1126,C813 -1126,C880 1126,C880 -1126,C8ED 1126,C8ED -1126,C95A 1126,C95A -1126,C9C7 1126,C9C7 -1126,CA34 1126,CA34 -1126,CAA1 1126,CAA1 -1126,CB0D 1126,CB0D -1126,CB7A 1126,CB7A -1126,CBE7 1126,CBE7 -1126,CC54 1126,CC54 -1126,CCC1 1126,CCC1 -1126,CD2E 1126,CD2E -1126,CD9B 1126,CD9B -1126,CE08 1126,CE08 -1126,CE75 1126,CE75 -1126,CEE1 1126,CEE1 -1126,CF4E 1126,CF4E -1126,CFBB 1126,CFBB -1126,D028 1126,D028 -1126,D095 1126,D095 -1126,D102 1126,D102 -1126,D16F 1126,D16F -1126,D1DC 1126,D1DC -1126,D249 1126,D249 -1126,D2B5 1126,D2B5 -1126,D322 1126,D322 -1126,D38F 1126,D38F -1126,D3FC 1126,D3FC -1126,D469 1126,D469 -1126,D4D6 1126,D4D6 -1126,D543 1126,D543 -1126,D5B0 1126,D5B0 -1126,D61D 1126,D61D -1126,D689 1126,D689 -1126,D6F6 1126,D6F6 -1126,D763 1126,D763 -1127,AC01 1127,AC01 -1127,AC6D 1127,AC6D -1127,ACDA 1127,ACDA -1127,AD47 1127,AD47 -1127,ADB4 1127,ADB4 -1127,AE21 1127,AE21 -1127,AE8E 1127,AE8E -1127,AEFB 1127,AEFB -1127,AF68 1127,AF68 -1127,AFD5 1127,AFD5 -1127,B041 1127,B041 -1127,B0AE 1127,B0AE -1127,B11B 1127,B11B -1127,B188 1127,B188 -1127,B1F5 1127,B1F5 -1127,B262 1127,B262 -1127,B2CF 1127,B2CF -1127,B33C 1127,B33C -1127,B3A9 1127,B3A9 -1127,B415 1127,B415 -1127,B482 1127,B482 -1127,B4EF 1127,B4EF -1127,B55C 1127,B55C -1127,B5C9 1127,B5C9 -1127,B636 1127,B636 -1127,B6A3 1127,B6A3 -1127,B710 1127,B710 -1127,B77D 1127,B77D -1127,B7E9 1127,B7E9 -1127,B856 1127,B856 -1127,B8C3 1127,B8C3 -1127,B930 1127,B930 -1127,B99D 1127,B99D -1127,BA0A 1127,BA0A -1127,BA77 1127,BA77 -1127,BAE4 1127,BAE4 -1127,BB51 1127,BB51 -1127,BBBD 1127,BBBD -1127,BC2A 1127,BC2A -1127,BC97 1127,BC97 -1127,BD04 1127,BD04 -1127,BD71 1127,BD71 -1127,BDDE 1127,BDDE -1127,BE4B 1127,BE4B -1127,BEB8 1127,BEB8 -1127,BF25 1127,BF25 -1127,BF91 1127,BF91 -1127,BFFE 1127,BFFE -1127,C06B 1127,C06B -1127,C0D8 1127,C0D8 -1127,C145 1127,C145 -1127,C1B2 1127,C1B2 -1127,C21F 1127,C21F -1127,C28C 1127,C28C -1127,C2F9 1127,C2F9 -1127,C365 1127,C365 -1127,C3D2 1127,C3D2 -1127,C43F 1127,C43F -1127,C4AC 1127,C4AC -1127,C519 1127,C519 -1127,C586 1127,C586 -1127,C5F3 1127,C5F3 -1127,C660 1127,C660 -1127,C6CD 1127,C6CD -1127,C739 1127,C739 -1127,C7A6 1127,C7A6 -1127,C813 1127,C813 -1127,C880 1127,C880 -1127,C8ED 1127,C8ED -1127,C95A 1127,C95A -1127,C9C7 1127,C9C7 -1127,CA34 1127,CA34 -1127,CAA1 1127,CAA1 -1127,CB0D 1127,CB0D -1127,CB7A 1127,CB7A -1127,CBE7 1127,CBE7 -1127,CC54 1127,CC54 -1127,CCC1 1127,CCC1 -1127,CD2E 1127,CD2E -1127,CD9B 1127,CD9B -1127,CE08 1127,CE08 -1127,CE75 1127,CE75 -1127,CEE1 1127,CEE1 -1127,CF4E 1127,CF4E -1127,CFBB 1127,CFBB -1127,D028 1127,D028 -1127,D095 1127,D095 -1127,D102 1127,D102 -1127,D16F 1127,D16F -1127,D1DC 1127,D1DC -1127,D249 1127,D249 -1127,D2B5 1127,D2B5 -1127,D322 1127,D322 -1127,D38F 1127,D38F -1127,D3FC 1127,D3FC -1127,D469 1127,D469 -1127,D4D6 1127,D4D6 -1127,D543 1127,D543 -1127,D5B0 1127,D5B0 -1127,D61D 1127,D61D -1127,D689 1127,D689 -1127,D6F6 1127,D6F6 -1127,D763 1127,D763 -1128,AC01 1128,AC01 -1128,AC6D 1128,AC6D -1128,ACDA 1128,ACDA -1128,AD47 1128,AD47 -1128,ADB4 1128,ADB4 -1128,AE21 1128,AE21 -1128,AE8E 1128,AE8E -1128,AEFB 1128,AEFB -1128,AF68 1128,AF68 -1128,AFD5 1128,AFD5 -1128,B041 1128,B041 -1128,B0AE 1128,B0AE -1128,B11B 1128,B11B -1128,B188 1128,B188 -1128,B1F5 1128,B1F5 -1128,B262 1128,B262 -1128,B2CF 1128,B2CF -1128,B33C 1128,B33C -1128,B3A9 1128,B3A9 -1128,B415 1128,B415 -1128,B482 1128,B482 -1128,B4EF 1128,B4EF -1128,B55C 1128,B55C -1128,B5C9 1128,B5C9 -1128,B636 1128,B636 -1128,B6A3 1128,B6A3 -1128,B710 1128,B710 -1128,B77D 1128,B77D -1128,B7E9 1128,B7E9 -1128,B856 1128,B856 -1128,B8C3 1128,B8C3 -1128,B930 1128,B930 -1128,B99D 1128,B99D -1128,BA0A 1128,BA0A -1128,BA77 1128,BA77 -1128,BAE4 1128,BAE4 -1128,BB51 1128,BB51 -1128,BBBD 1128,BBBD -1128,BC2A 1128,BC2A -1128,BC97 1128,BC97 -1128,BD04 1128,BD04 -1128,BD71 1128,BD71 -1128,BDDE 1128,BDDE -1128,BE4B 1128,BE4B -1128,BEB8 1128,BEB8 -1128,BF25 1128,BF25 -1128,BF91 1128,BF91 -1128,BFFE 1128,BFFE -1128,C06B 1128,C06B -1128,C0D8 1128,C0D8 -1128,C145 1128,C145 -1128,C1B2 1128,C1B2 -1128,C21F 1128,C21F -1128,C28C 1128,C28C -1128,C2F9 1128,C2F9 -1128,C365 1128,C365 -1128,C3D2 1128,C3D2 -1128,C43F 1128,C43F -1128,C4AC 1128,C4AC -1128,C519 1128,C519 -1128,C586 1128,C586 -1128,C5F3 1128,C5F3 -1128,C660 1128,C660 -1128,C6CD 1128,C6CD -1128,C739 1128,C739 -1128,C7A6 1128,C7A6 -1128,C813 1128,C813 -1128,C880 1128,C880 -1128,C8ED 1128,C8ED -1128,C95A 1128,C95A -1128,C9C7 1128,C9C7 -1128,CA34 1128,CA34 -1128,CAA1 1128,CAA1 -1128,CB0D 1128,CB0D -1128,CB7A 1128,CB7A -1128,CBE7 1128,CBE7 -1128,CC54 1128,CC54 -1128,CCC1 1128,CCC1 -1128,CD2E 1128,CD2E -1128,CD9B 1128,CD9B -1128,CE08 1128,CE08 -1128,CE75 1128,CE75 -1128,CEE1 1128,CEE1 -1128,CF4E 1128,CF4E -1128,CFBB 1128,CFBB -1128,D028 1128,D028 -1128,D095 1128,D095 -1128,D102 1128,D102 -1128,D16F 1128,D16F -1128,D1DC 1128,D1DC -1128,D249 1128,D249 -1128,D2B5 1128,D2B5 -1128,D322 1128,D322 -1128,D38F 1128,D38F -1128,D3FC 1128,D3FC -1128,D469 1128,D469 -1128,D4D6 1128,D4D6 -1128,D543 1128,D543 -1128,D5B0 1128,D5B0 -1128,D61D 1128,D61D -1128,D689 1128,D689 -1128,D6F6 1128,D6F6 -1128,D763 1128,D763 -1129,AC01 1129,AC01 -1129,AC6D 1129,AC6D -1129,ACDA 1129,ACDA -1129,AD47 1129,AD47 -1129,ADB4 1129,ADB4 -1129,AE21 1129,AE21 -1129,AE8E 1129,AE8E -1129,AEFB 1129,AEFB -1129,AF68 1129,AF68 -1129,AFD5 1129,AFD5 -1129,B041 1129,B041 -1129,B0AE 1129,B0AE -1129,B11B 1129,B11B -1129,B188 1129,B188 -1129,B1F5 1129,B1F5 -1129,B262 1129,B262 -1129,B2CF 1129,B2CF -1129,B33C 1129,B33C -1129,B3A9 1129,B3A9 -1129,B415 1129,B415 -1129,B482 1129,B482 -1129,B4EF 1129,B4EF -1129,B55C 1129,B55C -1129,B5C9 1129,B5C9 -1129,B636 1129,B636 -1129,B6A3 1129,B6A3 -1129,B710 1129,B710 -1129,B77D 1129,B77D -1129,B7E9 1129,B7E9 -1129,B856 1129,B856 -1129,B8C3 1129,B8C3 -1129,B930 1129,B930 -1129,B99D 1129,B99D -1129,BA0A 1129,BA0A -1129,BA77 1129,BA77 -1129,BAE4 1129,BAE4 -1129,BB51 1129,BB51 -1129,BBBD 1129,BBBD -1129,BC2A 1129,BC2A -1129,BC97 1129,BC97 -1129,BD04 1129,BD04 -1129,BD71 1129,BD71 -1129,BDDE 1129,BDDE -1129,BE4B 1129,BE4B -1129,BEB8 1129,BEB8 -1129,BF25 1129,BF25 -1129,BF91 1129,BF91 -1129,BFFE 1129,BFFE -1129,C06B 1129,C06B -1129,C0D8 1129,C0D8 -1129,C145 1129,C145 -1129,C1B2 1129,C1B2 -1129,C21F 1129,C21F -1129,C28C 1129,C28C -1129,C2F9 1129,C2F9 -1129,C365 1129,C365 -1129,C3D2 1129,C3D2 -1129,C43F 1129,C43F -1129,C4AC 1129,C4AC -1129,C519 1129,C519 -1129,C586 1129,C586 -1129,C5F3 1129,C5F3 -1129,C660 1129,C660 -1129,C6CD 1129,C6CD -1129,C739 1129,C739 -1129,C7A6 1129,C7A6 -1129,C813 1129,C813 -1129,C880 1129,C880 -1129,C8ED 1129,C8ED -1129,C95A 1129,C95A -1129,C9C7 1129,C9C7 -1129,CA34 1129,CA34 -1129,CAA1 1129,CAA1 -1129,CB0D 1129,CB0D -1129,CB7A 1129,CB7A -1129,CBE7 1129,CBE7 -1129,CC54 1129,CC54 -1129,CCC1 1129,CCC1 -1129,CD2E 1129,CD2E -1129,CD9B 1129,CD9B -1129,CE08 1129,CE08 -1129,CE75 1129,CE75 -1129,CEE1 1129,CEE1 -1129,CF4E 1129,CF4E -1129,CFBB 1129,CFBB -1129,D028 1129,D028 -1129,D095 1129,D095 -1129,D102 1129,D102 -1129,D16F 1129,D16F -1129,D1DC 1129,D1DC -1129,D249 1129,D249 -1129,D2B5 1129,D2B5 -1129,D322 1129,D322 -1129,D38F 1129,D38F -1129,D3FC 1129,D3FC -1129,D469 1129,D469 -1129,D4D6 1129,D4D6 -1129,D543 1129,D543 -1129,D5B0 1129,D5B0 -1129,D61D 1129,D61D -1129,D689 1129,D689 -1129,D6F6 1129,D6F6 -1129,D763 1129,D763 -112A,AC01 112A,AC01 -112A,AC6D 112A,AC6D -112A,ACDA 112A,ACDA -112A,AD47 112A,AD47 -112A,ADB4 112A,ADB4 -112A,AE21 112A,AE21 -112A,AE8E 112A,AE8E -112A,AEFB 112A,AEFB -112A,AF68 112A,AF68 -112A,AFD5 112A,AFD5 -112A,B041 112A,B041 -112A,B0AE 112A,B0AE -112A,B11B 112A,B11B -112A,B188 112A,B188 -112A,B1F5 112A,B1F5 -112A,B262 112A,B262 -112A,B2CF 112A,B2CF -112A,B33C 112A,B33C -112A,B3A9 112A,B3A9 -112A,B415 112A,B415 -112A,B482 112A,B482 -112A,B4EF 112A,B4EF -112A,B55C 112A,B55C -112A,B5C9 112A,B5C9 -112A,B636 112A,B636 -112A,B6A3 112A,B6A3 -112A,B710 112A,B710 -112A,B77D 112A,B77D -112A,B7E9 112A,B7E9 -112A,B856 112A,B856 -112A,B8C3 112A,B8C3 -112A,B930 112A,B930 -112A,B99D 112A,B99D -112A,BA0A 112A,BA0A -112A,BA77 112A,BA77 -112A,BAE4 112A,BAE4 -112A,BB51 112A,BB51 -112A,BBBD 112A,BBBD -112A,BC2A 112A,BC2A -112A,BC97 112A,BC97 -112A,BD04 112A,BD04 -112A,BD71 112A,BD71 -112A,BDDE 112A,BDDE -112A,BE4B 112A,BE4B -112A,BEB8 112A,BEB8 -112A,BF25 112A,BF25 -112A,BF91 112A,BF91 -112A,BFFE 112A,BFFE -112A,C06B 112A,C06B -112A,C0D8 112A,C0D8 -112A,C145 112A,C145 -112A,C1B2 112A,C1B2 -112A,C21F 112A,C21F -112A,C28C 112A,C28C -112A,C2F9 112A,C2F9 -112A,C365 112A,C365 -112A,C3D2 112A,C3D2 -112A,C43F 112A,C43F -112A,C4AC 112A,C4AC -112A,C519 112A,C519 -112A,C586 112A,C586 -112A,C5F3 112A,C5F3 -112A,C660 112A,C660 -112A,C6CD 112A,C6CD -112A,C739 112A,C739 -112A,C7A6 112A,C7A6 -112A,C813 112A,C813 -112A,C880 112A,C880 -112A,C8ED 112A,C8ED -112A,C95A 112A,C95A -112A,C9C7 112A,C9C7 -112A,CA34 112A,CA34 -112A,CAA1 112A,CAA1 -112A,CB0D 112A,CB0D -112A,CB7A 112A,CB7A -112A,CBE7 112A,CBE7 -112A,CC54 112A,CC54 -112A,CCC1 112A,CCC1 -112A,CD2E 112A,CD2E -112A,CD9B 112A,CD9B -112A,CE08 112A,CE08 -112A,CE75 112A,CE75 -112A,CEE1 112A,CEE1 -112A,CF4E 112A,CF4E -112A,CFBB 112A,CFBB -112A,D028 112A,D028 -112A,D095 112A,D095 -112A,D102 112A,D102 -112A,D16F 112A,D16F -112A,D1DC 112A,D1DC -112A,D249 112A,D249 -112A,D2B5 112A,D2B5 -112A,D322 112A,D322 -112A,D38F 112A,D38F -112A,D3FC 112A,D3FC -112A,D469 112A,D469 -112A,D4D6 112A,D4D6 -112A,D543 112A,D543 -112A,D5B0 112A,D5B0 -112A,D61D 112A,D61D -112A,D689 112A,D689 -112A,D6F6 112A,D6F6 -112A,D763 112A,D763 -112B,AC01 112B,AC01 -112B,AC6D 112B,AC6D -112B,ACDA 112B,ACDA -112B,AD47 112B,AD47 -112B,ADB4 112B,ADB4 -112B,AE21 112B,AE21 -112B,AE8E 112B,AE8E -112B,AEFB 112B,AEFB -112B,AF68 112B,AF68 -112B,AFD5 112B,AFD5 -112B,B041 112B,B041 -112B,B0AE 112B,B0AE -112B,B11B 112B,B11B -112B,B188 112B,B188 -112B,B1F5 112B,B1F5 -112B,B262 112B,B262 -112B,B2CF 112B,B2CF -112B,B33C 112B,B33C -112B,B3A9 112B,B3A9 -112B,B415 112B,B415 -112B,B482 112B,B482 -112B,B4EF 112B,B4EF -112B,B55C 112B,B55C -112B,B5C9 112B,B5C9 -112B,B636 112B,B636 -112B,B6A3 112B,B6A3 -112B,B710 112B,B710 -112B,B77D 112B,B77D -112B,B7E9 112B,B7E9 -112B,B856 112B,B856 -112B,B8C3 112B,B8C3 -112B,B930 112B,B930 -112B,B99D 112B,B99D -112B,BA0A 112B,BA0A -112B,BA77 112B,BA77 -112B,BAE4 112B,BAE4 -112B,BB51 112B,BB51 -112B,BBBD 112B,BBBD -112B,BC2A 112B,BC2A -112B,BC97 112B,BC97 -112B,BD04 112B,BD04 -112B,BD71 112B,BD71 -112B,BDDE 112B,BDDE -112B,BE4B 112B,BE4B -112B,BEB8 112B,BEB8 -112B,BF25 112B,BF25 -112B,BF91 112B,BF91 -112B,BFFE 112B,BFFE -112B,C06B 112B,C06B -112B,C0D8 112B,C0D8 -112B,C145 112B,C145 -112B,C1B2 112B,C1B2 -112B,C21F 112B,C21F -112B,C28C 112B,C28C -112B,C2F9 112B,C2F9 -112B,C365 112B,C365 -112B,C3D2 112B,C3D2 -112B,C43F 112B,C43F -112B,C4AC 112B,C4AC -112B,C519 112B,C519 -112B,C586 112B,C586 -112B,C5F3 112B,C5F3 -112B,C660 112B,C660 -112B,C6CD 112B,C6CD -112B,C739 112B,C739 -112B,C7A6 112B,C7A6 -112B,C813 112B,C813 -112B,C880 112B,C880 -112B,C8ED 112B,C8ED -112B,C95A 112B,C95A -112B,C9C7 112B,C9C7 -112B,CA34 112B,CA34 -112B,CAA1 112B,CAA1 -112B,CB0D 112B,CB0D -112B,CB7A 112B,CB7A -112B,CBE7 112B,CBE7 -112B,CC54 112B,CC54 -112B,CCC1 112B,CCC1 -112B,CD2E 112B,CD2E -112B,CD9B 112B,CD9B -112B,CE08 112B,CE08 -112B,CE75 112B,CE75 -112B,CEE1 112B,CEE1 -112B,CF4E 112B,CF4E -112B,CFBB 112B,CFBB -112B,D028 112B,D028 -112B,D095 112B,D095 -112B,D102 112B,D102 -112B,D16F 112B,D16F -112B,D1DC 112B,D1DC -112B,D249 112B,D249 -112B,D2B5 112B,D2B5 -112B,D322 112B,D322 -112B,D38F 112B,D38F -112B,D3FC 112B,D3FC -112B,D469 112B,D469 -112B,D4D6 112B,D4D6 -112B,D543 112B,D543 -112B,D5B0 112B,D5B0 -112B,D61D 112B,D61D -112B,D689 112B,D689 -112B,D6F6 112B,D6F6 -112B,D763 112B,D763 -112C,AC01 112C,AC01 -112C,AC6D 112C,AC6D -112C,ACDA 112C,ACDA -112C,AD47 112C,AD47 -112C,ADB4 112C,ADB4 -112C,AE21 112C,AE21 -112C,AE8E 112C,AE8E -112C,AEFB 112C,AEFB -112C,AF68 112C,AF68 -112C,AFD5 112C,AFD5 -112C,B041 112C,B041 -112C,B0AE 112C,B0AE -112C,B11B 112C,B11B -112C,B188 112C,B188 -112C,B1F5 112C,B1F5 -112C,B262 112C,B262 -112C,B2CF 112C,B2CF -112C,B33C 112C,B33C -112C,B3A9 112C,B3A9 -112C,B415 112C,B415 -112C,B482 112C,B482 -112C,B4EF 112C,B4EF -112C,B55C 112C,B55C -112C,B5C9 112C,B5C9 -112C,B636 112C,B636 -112C,B6A3 112C,B6A3 -112C,B710 112C,B710 -112C,B77D 112C,B77D -112C,B7E9 112C,B7E9 -112C,B856 112C,B856 -112C,B8C3 112C,B8C3 -112C,B930 112C,B930 -112C,B99D 112C,B99D -112C,BA0A 112C,BA0A -112C,BA77 112C,BA77 -112C,BAE4 112C,BAE4 -112C,BB51 112C,BB51 -112C,BBBD 112C,BBBD -112C,BC2A 112C,BC2A -112C,BC97 112C,BC97 -112C,BD04 112C,BD04 -112C,BD71 112C,BD71 -112C,BDDE 112C,BDDE -112C,BE4B 112C,BE4B -112C,BEB8 112C,BEB8 -112C,BF25 112C,BF25 -112C,BF91 112C,BF91 -112C,BFFE 112C,BFFE -112C,C06B 112C,C06B -112C,C0D8 112C,C0D8 -112C,C145 112C,C145 -112C,C1B2 112C,C1B2 -112C,C21F 112C,C21F -112C,C28C 112C,C28C -112C,C2F9 112C,C2F9 -112C,C365 112C,C365 -112C,C3D2 112C,C3D2 -112C,C43F 112C,C43F -112C,C4AC 112C,C4AC -112C,C519 112C,C519 -112C,C586 112C,C586 -112C,C5F3 112C,C5F3 -112C,C660 112C,C660 -112C,C6CD 112C,C6CD -112C,C739 112C,C739 -112C,C7A6 112C,C7A6 -112C,C813 112C,C813 -112C,C880 112C,C880 -112C,C8ED 112C,C8ED -112C,C95A 112C,C95A -112C,C9C7 112C,C9C7 -112C,CA34 112C,CA34 -112C,CAA1 112C,CAA1 -112C,CB0D 112C,CB0D -112C,CB7A 112C,CB7A -112C,CBE7 112C,CBE7 -112C,CC54 112C,CC54 -112C,CCC1 112C,CCC1 -112C,CD2E 112C,CD2E -112C,CD9B 112C,CD9B -112C,CE08 112C,CE08 -112C,CE75 112C,CE75 -112C,CEE1 112C,CEE1 -112C,CF4E 112C,CF4E -112C,CFBB 112C,CFBB -112C,D028 112C,D028 -112C,D095 112C,D095 -112C,D102 112C,D102 -112C,D16F 112C,D16F -112C,D1DC 112C,D1DC -112C,D249 112C,D249 -112C,D2B5 112C,D2B5 -112C,D322 112C,D322 -112C,D38F 112C,D38F -112C,D3FC 112C,D3FC -112C,D469 112C,D469 -112C,D4D6 112C,D4D6 -112C,D543 112C,D543 -112C,D5B0 112C,D5B0 -112C,D61D 112C,D61D -112C,D689 112C,D689 -112C,D6F6 112C,D6F6 -112C,D763 112C,D763 -112D,AC01 112D,AC01 -112D,AC6D 112D,AC6D -112D,ACDA 112D,ACDA -112D,AD47 112D,AD47 -112D,ADB4 112D,ADB4 -112D,AE21 112D,AE21 -112D,AE8E 112D,AE8E -112D,AEFB 112D,AEFB -112D,AF68 112D,AF68 -112D,AFD5 112D,AFD5 -112D,B041 112D,B041 -112D,B0AE 112D,B0AE -112D,B11B 112D,B11B -112D,B188 112D,B188 -112D,B1F5 112D,B1F5 -112D,B262 112D,B262 -112D,B2CF 112D,B2CF -112D,B33C 112D,B33C -112D,B3A9 112D,B3A9 -112D,B415 112D,B415 -112D,B482 112D,B482 -112D,B4EF 112D,B4EF -112D,B55C 112D,B55C -112D,B5C9 112D,B5C9 -112D,B636 112D,B636 -112D,B6A3 112D,B6A3 -112D,B710 112D,B710 -112D,B77D 112D,B77D -112D,B7E9 112D,B7E9 -112D,B856 112D,B856 -112D,B8C3 112D,B8C3 -112D,B930 112D,B930 -112D,B99D 112D,B99D -112D,BA0A 112D,BA0A -112D,BA77 112D,BA77 -112D,BAE4 112D,BAE4 -112D,BB51 112D,BB51 -112D,BBBD 112D,BBBD -112D,BC2A 112D,BC2A -112D,BC97 112D,BC97 -112D,BD04 112D,BD04 -112D,BD71 112D,BD71 -112D,BDDE 112D,BDDE -112D,BE4B 112D,BE4B -112D,BEB8 112D,BEB8 -112D,BF25 112D,BF25 -112D,BF91 112D,BF91 -112D,BFFE 112D,BFFE -112D,C06B 112D,C06B -112D,C0D8 112D,C0D8 -112D,C145 112D,C145 -112D,C1B2 112D,C1B2 -112D,C21F 112D,C21F -112D,C28C 112D,C28C -112D,C2F9 112D,C2F9 -112D,C365 112D,C365 -112D,C3D2 112D,C3D2 -112D,C43F 112D,C43F -112D,C4AC 112D,C4AC -112D,C519 112D,C519 -112D,C586 112D,C586 -112D,C5F3 112D,C5F3 -112D,C660 112D,C660 -112D,C6CD 112D,C6CD -112D,C739 112D,C739 -112D,C7A6 112D,C7A6 -112D,C813 112D,C813 -112D,C880 112D,C880 -112D,C8ED 112D,C8ED -112D,C95A 112D,C95A -112D,C9C7 112D,C9C7 -112D,CA34 112D,CA34 -112D,CAA1 112D,CAA1 -112D,CB0D 112D,CB0D -112D,CB7A 112D,CB7A -112D,CBE7 112D,CBE7 -112D,CC54 112D,CC54 -112D,CCC1 112D,CCC1 -112D,CD2E 112D,CD2E -112D,CD9B 112D,CD9B -112D,CE08 112D,CE08 -112D,CE75 112D,CE75 -112D,CEE1 112D,CEE1 -112D,CF4E 112D,CF4E -112D,CFBB 112D,CFBB -112D,D028 112D,D028 -112D,D095 112D,D095 -112D,D102 112D,D102 -112D,D16F 112D,D16F -112D,D1DC 112D,D1DC -112D,D249 112D,D249 -112D,D2B5 112D,D2B5 -112D,D322 112D,D322 -112D,D38F 112D,D38F -112D,D3FC 112D,D3FC -112D,D469 112D,D469 -112D,D4D6 112D,D4D6 -112D,D543 112D,D543 -112D,D5B0 112D,D5B0 -112D,D61D 112D,D61D -112D,D689 112D,D689 -112D,D6F6 112D,D6F6 -112D,D763 112D,D763 -112E,AC01 112E,AC01 -112E,AC6D 112E,AC6D -112E,ACDA 112E,ACDA -112E,AD47 112E,AD47 -112E,ADB4 112E,ADB4 -112E,AE21 112E,AE21 -112E,AE8E 112E,AE8E -112E,AEFB 112E,AEFB -112E,AF68 112E,AF68 -112E,AFD5 112E,AFD5 -112E,B041 112E,B041 -112E,B0AE 112E,B0AE -112E,B11B 112E,B11B -112E,B188 112E,B188 -112E,B1F5 112E,B1F5 -112E,B262 112E,B262 -112E,B2CF 112E,B2CF -112E,B33C 112E,B33C -112E,B3A9 112E,B3A9 -112E,B415 112E,B415 -112E,B482 112E,B482 -112E,B4EF 112E,B4EF -112E,B55C 112E,B55C -112E,B5C9 112E,B5C9 -112E,B636 112E,B636 -112E,B6A3 112E,B6A3 -112E,B710 112E,B710 -112E,B77D 112E,B77D -112E,B7E9 112E,B7E9 -112E,B856 112E,B856 -112E,B8C3 112E,B8C3 -112E,B930 112E,B930 -112E,B99D 112E,B99D -112E,BA0A 112E,BA0A -112E,BA77 112E,BA77 -112E,BAE4 112E,BAE4 -112E,BB51 112E,BB51 -112E,BBBD 112E,BBBD -112E,BC2A 112E,BC2A -112E,BC97 112E,BC97 -112E,BD04 112E,BD04 -112E,BD71 112E,BD71 -112E,BDDE 112E,BDDE -112E,BE4B 112E,BE4B -112E,BEB8 112E,BEB8 -112E,BF25 112E,BF25 -112E,BF91 112E,BF91 -112E,BFFE 112E,BFFE -112E,C06B 112E,C06B -112E,C0D8 112E,C0D8 -112E,C145 112E,C145 -112E,C1B2 112E,C1B2 -112E,C21F 112E,C21F -112E,C28C 112E,C28C -112E,C2F9 112E,C2F9 -112E,C365 112E,C365 -112E,C3D2 112E,C3D2 -112E,C43F 112E,C43F -112E,C4AC 112E,C4AC -112E,C519 112E,C519 -112E,C586 112E,C586 -112E,C5F3 112E,C5F3 -112E,C660 112E,C660 -112E,C6CD 112E,C6CD -112E,C739 112E,C739 -112E,C7A6 112E,C7A6 -112E,C813 112E,C813 -112E,C880 112E,C880 -112E,C8ED 112E,C8ED -112E,C95A 112E,C95A -112E,C9C7 112E,C9C7 -112E,CA34 112E,CA34 -112E,CAA1 112E,CAA1 -112E,CB0D 112E,CB0D -112E,CB7A 112E,CB7A -112E,CBE7 112E,CBE7 -112E,CC54 112E,CC54 -112E,CCC1 112E,CCC1 -112E,CD2E 112E,CD2E -112E,CD9B 112E,CD9B -112E,CE08 112E,CE08 -112E,CE75 112E,CE75 -112E,CEE1 112E,CEE1 -112E,CF4E 112E,CF4E -112E,CFBB 112E,CFBB -112E,D028 112E,D028 -112E,D095 112E,D095 -112E,D102 112E,D102 -112E,D16F 112E,D16F -112E,D1DC 112E,D1DC -112E,D249 112E,D249 -112E,D2B5 112E,D2B5 -112E,D322 112E,D322 -112E,D38F 112E,D38F -112E,D3FC 112E,D3FC -112E,D469 112E,D469 -112E,D4D6 112E,D4D6 -112E,D543 112E,D543 -112E,D5B0 112E,D5B0 -112E,D61D 112E,D61D -112E,D689 112E,D689 -112E,D6F6 112E,D6F6 -112E,D763 112E,D763 -112F,AC01 112F,AC01 -112F,AC6D 112F,AC6D -112F,ACDA 112F,ACDA -112F,AD47 112F,AD47 -112F,ADB4 112F,ADB4 -112F,AE21 112F,AE21 -112F,AE8E 112F,AE8E -112F,AEFB 112F,AEFB -112F,AF68 112F,AF68 -112F,AFD5 112F,AFD5 -112F,B041 112F,B041 -112F,B0AE 112F,B0AE -112F,B11B 112F,B11B -112F,B188 112F,B188 -112F,B1F5 112F,B1F5 -112F,B262 112F,B262 -112F,B2CF 112F,B2CF -112F,B33C 112F,B33C -112F,B3A9 112F,B3A9 -112F,B415 112F,B415 -112F,B482 112F,B482 -112F,B4EF 112F,B4EF -112F,B55C 112F,B55C -112F,B5C9 112F,B5C9 -112F,B636 112F,B636 -112F,B6A3 112F,B6A3 -112F,B710 112F,B710 -112F,B77D 112F,B77D -112F,B7E9 112F,B7E9 -112F,B856 112F,B856 -112F,B8C3 112F,B8C3 -112F,B930 112F,B930 -112F,B99D 112F,B99D -112F,BA0A 112F,BA0A -112F,BA77 112F,BA77 -112F,BAE4 112F,BAE4 -112F,BB51 112F,BB51 -112F,BBBD 112F,BBBD -112F,BC2A 112F,BC2A -112F,BC97 112F,BC97 -112F,BD04 112F,BD04 -112F,BD71 112F,BD71 -112F,BDDE 112F,BDDE -112F,BE4B 112F,BE4B -112F,BEB8 112F,BEB8 -112F,BF25 112F,BF25 -112F,BF91 112F,BF91 -112F,BFFE 112F,BFFE -112F,C06B 112F,C06B -112F,C0D8 112F,C0D8 -112F,C145 112F,C145 -112F,C1B2 112F,C1B2 -112F,C21F 112F,C21F -112F,C28C 112F,C28C -112F,C2F9 112F,C2F9 -112F,C365 112F,C365 -112F,C3D2 112F,C3D2 -112F,C43F 112F,C43F -112F,C4AC 112F,C4AC -112F,C519 112F,C519 -112F,C586 112F,C586 -112F,C5F3 112F,C5F3 -112F,C660 112F,C660 -112F,C6CD 112F,C6CD -112F,C739 112F,C739 -112F,C7A6 112F,C7A6 -112F,C813 112F,C813 -112F,C880 112F,C880 -112F,C8ED 112F,C8ED -112F,C95A 112F,C95A -112F,C9C7 112F,C9C7 -112F,CA34 112F,CA34 -112F,CAA1 112F,CAA1 -112F,CB0D 112F,CB0D -112F,CB7A 112F,CB7A -112F,CBE7 112F,CBE7 -112F,CC54 112F,CC54 -112F,CCC1 112F,CCC1 -112F,CD2E 112F,CD2E -112F,CD9B 112F,CD9B -112F,CE08 112F,CE08 -112F,CE75 112F,CE75 -112F,CEE1 112F,CEE1 -112F,CF4E 112F,CF4E -112F,CFBB 112F,CFBB -112F,D028 112F,D028 -112F,D095 112F,D095 -112F,D102 112F,D102 -112F,D16F 112F,D16F -112F,D1DC 112F,D1DC -112F,D249 112F,D249 -112F,D2B5 112F,D2B5 -112F,D322 112F,D322 -112F,D38F 112F,D38F -112F,D3FC 112F,D3FC -112F,D469 112F,D469 -112F,D4D6 112F,D4D6 -112F,D543 112F,D543 -112F,D5B0 112F,D5B0 -112F,D61D 112F,D61D -112F,D689 112F,D689 -112F,D6F6 112F,D6F6 -112F,D763 112F,D763 -1130,AC01 1130,AC01 -1130,AC6D 1130,AC6D -1130,ACDA 1130,ACDA -1130,AD47 1130,AD47 -1130,ADB4 1130,ADB4 -1130,AE21 1130,AE21 -1130,AE8E 1130,AE8E -1130,AEFB 1130,AEFB -1130,AF68 1130,AF68 -1130,AFD5 1130,AFD5 -1130,B041 1130,B041 -1130,B0AE 1130,B0AE -1130,B11B 1130,B11B -1130,B188 1130,B188 -1130,B1F5 1130,B1F5 -1130,B262 1130,B262 -1130,B2CF 1130,B2CF -1130,B33C 1130,B33C -1130,B3A9 1130,B3A9 -1130,B415 1130,B415 -1130,B482 1130,B482 -1130,B4EF 1130,B4EF -1130,B55C 1130,B55C -1130,B5C9 1130,B5C9 -1130,B636 1130,B636 -1130,B6A3 1130,B6A3 -1130,B710 1130,B710 -1130,B77D 1130,B77D -1130,B7E9 1130,B7E9 -1130,B856 1130,B856 -1130,B8C3 1130,B8C3 -1130,B930 1130,B930 -1130,B99D 1130,B99D -1130,BA0A 1130,BA0A -1130,BA77 1130,BA77 -1130,BAE4 1130,BAE4 -1130,BB51 1130,BB51 -1130,BBBD 1130,BBBD -1130,BC2A 1130,BC2A -1130,BC97 1130,BC97 -1130,BD04 1130,BD04 -1130,BD71 1130,BD71 -1130,BDDE 1130,BDDE -1130,BE4B 1130,BE4B -1130,BEB8 1130,BEB8 -1130,BF25 1130,BF25 -1130,BF91 1130,BF91 -1130,BFFE 1130,BFFE -1130,C06B 1130,C06B -1130,C0D8 1130,C0D8 -1130,C145 1130,C145 -1130,C1B2 1130,C1B2 -1130,C21F 1130,C21F -1130,C28C 1130,C28C -1130,C2F9 1130,C2F9 -1130,C365 1130,C365 -1130,C3D2 1130,C3D2 -1130,C43F 1130,C43F -1130,C4AC 1130,C4AC -1130,C519 1130,C519 -1130,C586 1130,C586 -1130,C5F3 1130,C5F3 -1130,C660 1130,C660 -1130,C6CD 1130,C6CD -1130,C739 1130,C739 -1130,C7A6 1130,C7A6 -1130,C813 1130,C813 -1130,C880 1130,C880 -1130,C8ED 1130,C8ED -1130,C95A 1130,C95A -1130,C9C7 1130,C9C7 -1130,CA34 1130,CA34 -1130,CAA1 1130,CAA1 -1130,CB0D 1130,CB0D -1130,CB7A 1130,CB7A -1130,CBE7 1130,CBE7 -1130,CC54 1130,CC54 -1130,CCC1 1130,CCC1 -1130,CD2E 1130,CD2E -1130,CD9B 1130,CD9B -1130,CE08 1130,CE08 -1130,CE75 1130,CE75 -1130,CEE1 1130,CEE1 -1130,CF4E 1130,CF4E -1130,CFBB 1130,CFBB -1130,D028 1130,D028 -1130,D095 1130,D095 -1130,D102 1130,D102 -1130,D16F 1130,D16F -1130,D1DC 1130,D1DC -1130,D249 1130,D249 -1130,D2B5 1130,D2B5 -1130,D322 1130,D322 -1130,D38F 1130,D38F -1130,D3FC 1130,D3FC -1130,D469 1130,D469 -1130,D4D6 1130,D4D6 -1130,D543 1130,D543 -1130,D5B0 1130,D5B0 -1130,D61D 1130,D61D -1130,D689 1130,D689 -1130,D6F6 1130,D6F6 -1130,D763 1130,D763 -1131,AC01 1131,AC01 -1131,AC6D 1131,AC6D -1131,ACDA 1131,ACDA -1131,AD47 1131,AD47 -1131,ADB4 1131,ADB4 -1131,AE21 1131,AE21 -1131,AE8E 1131,AE8E -1131,AEFB 1131,AEFB -1131,AF68 1131,AF68 -1131,AFD5 1131,AFD5 -1131,B041 1131,B041 -1131,B0AE 1131,B0AE -1131,B11B 1131,B11B -1131,B188 1131,B188 -1131,B1F5 1131,B1F5 -1131,B262 1131,B262 -1131,B2CF 1131,B2CF -1131,B33C 1131,B33C -1131,B3A9 1131,B3A9 -1131,B415 1131,B415 -1131,B482 1131,B482 -1131,B4EF 1131,B4EF -1131,B55C 1131,B55C -1131,B5C9 1131,B5C9 -1131,B636 1131,B636 -1131,B6A3 1131,B6A3 -1131,B710 1131,B710 -1131,B77D 1131,B77D -1131,B7E9 1131,B7E9 -1131,B856 1131,B856 -1131,B8C3 1131,B8C3 -1131,B930 1131,B930 -1131,B99D 1131,B99D -1131,BA0A 1131,BA0A -1131,BA77 1131,BA77 -1131,BAE4 1131,BAE4 -1131,BB51 1131,BB51 -1131,BBBD 1131,BBBD -1131,BC2A 1131,BC2A -1131,BC97 1131,BC97 -1131,BD04 1131,BD04 -1131,BD71 1131,BD71 -1131,BDDE 1131,BDDE -1131,BE4B 1131,BE4B -1131,BEB8 1131,BEB8 -1131,BF25 1131,BF25 -1131,BF91 1131,BF91 -1131,BFFE 1131,BFFE -1131,C06B 1131,C06B -1131,C0D8 1131,C0D8 -1131,C145 1131,C145 -1131,C1B2 1131,C1B2 -1131,C21F 1131,C21F -1131,C28C 1131,C28C -1131,C2F9 1131,C2F9 -1131,C365 1131,C365 -1131,C3D2 1131,C3D2 -1131,C43F 1131,C43F -1131,C4AC 1131,C4AC -1131,C519 1131,C519 -1131,C586 1131,C586 -1131,C5F3 1131,C5F3 -1131,C660 1131,C660 -1131,C6CD 1131,C6CD -1131,C739 1131,C739 -1131,C7A6 1131,C7A6 -1131,C813 1131,C813 -1131,C880 1131,C880 -1131,C8ED 1131,C8ED -1131,C95A 1131,C95A -1131,C9C7 1131,C9C7 -1131,CA34 1131,CA34 -1131,CAA1 1131,CAA1 -1131,CB0D 1131,CB0D -1131,CB7A 1131,CB7A -1131,CBE7 1131,CBE7 -1131,CC54 1131,CC54 -1131,CCC1 1131,CCC1 -1131,CD2E 1131,CD2E -1131,CD9B 1131,CD9B -1131,CE08 1131,CE08 -1131,CE75 1131,CE75 -1131,CEE1 1131,CEE1 -1131,CF4E 1131,CF4E -1131,CFBB 1131,CFBB -1131,D028 1131,D028 -1131,D095 1131,D095 -1131,D102 1131,D102 -1131,D16F 1131,D16F -1131,D1DC 1131,D1DC -1131,D249 1131,D249 -1131,D2B5 1131,D2B5 -1131,D322 1131,D322 -1131,D38F 1131,D38F -1131,D3FC 1131,D3FC -1131,D469 1131,D469 -1131,D4D6 1131,D4D6 -1131,D543 1131,D543 -1131,D5B0 1131,D5B0 -1131,D61D 1131,D61D -1131,D689 1131,D689 -1131,D6F6 1131,D6F6 -1131,D763 1131,D763 -1132,AC01 1132,AC01 -1132,AC6D 1132,AC6D -1132,ACDA 1132,ACDA -1132,AD47 1132,AD47 -1132,ADB4 1132,ADB4 -1132,AE21 1132,AE21 -1132,AE8E 1132,AE8E -1132,AEFB 1132,AEFB -1132,AF68 1132,AF68 -1132,AFD5 1132,AFD5 -1132,B041 1132,B041 -1132,B0AE 1132,B0AE -1132,B11B 1132,B11B -1132,B188 1132,B188 -1132,B1F5 1132,B1F5 -1132,B262 1132,B262 -1132,B2CF 1132,B2CF -1132,B33C 1132,B33C -1132,B3A9 1132,B3A9 -1132,B415 1132,B415 -1132,B482 1132,B482 -1132,B4EF 1132,B4EF -1132,B55C 1132,B55C -1132,B5C9 1132,B5C9 -1132,B636 1132,B636 -1132,B6A3 1132,B6A3 -1132,B710 1132,B710 -1132,B77D 1132,B77D -1132,B7E9 1132,B7E9 -1132,B856 1132,B856 -1132,B8C3 1132,B8C3 -1132,B930 1132,B930 -1132,B99D 1132,B99D -1132,BA0A 1132,BA0A -1132,BA77 1132,BA77 -1132,BAE4 1132,BAE4 -1132,BB51 1132,BB51 -1132,BBBD 1132,BBBD -1132,BC2A 1132,BC2A -1132,BC97 1132,BC97 -1132,BD04 1132,BD04 -1132,BD71 1132,BD71 -1132,BDDE 1132,BDDE -1132,BE4B 1132,BE4B -1132,BEB8 1132,BEB8 -1132,BF25 1132,BF25 -1132,BF91 1132,BF91 -1132,BFFE 1132,BFFE -1132,C06B 1132,C06B -1132,C0D8 1132,C0D8 -1132,C145 1132,C145 -1132,C1B2 1132,C1B2 -1132,C21F 1132,C21F -1132,C28C 1132,C28C -1132,C2F9 1132,C2F9 -1132,C365 1132,C365 -1132,C3D2 1132,C3D2 -1132,C43F 1132,C43F -1132,C4AC 1132,C4AC -1132,C519 1132,C519 -1132,C586 1132,C586 -1132,C5F3 1132,C5F3 -1132,C660 1132,C660 -1132,C6CD 1132,C6CD -1132,C739 1132,C739 -1132,C7A6 1132,C7A6 -1132,C813 1132,C813 -1132,C880 1132,C880 -1132,C8ED 1132,C8ED -1132,C95A 1132,C95A -1132,C9C7 1132,C9C7 -1132,CA34 1132,CA34 -1132,CAA1 1132,CAA1 -1132,CB0D 1132,CB0D -1132,CB7A 1132,CB7A -1132,CBE7 1132,CBE7 -1132,CC54 1132,CC54 -1132,CCC1 1132,CCC1 -1132,CD2E 1132,CD2E -1132,CD9B 1132,CD9B -1132,CE08 1132,CE08 -1132,CE75 1132,CE75 -1132,CEE1 1132,CEE1 -1132,CF4E 1132,CF4E -1132,CFBB 1132,CFBB -1132,D028 1132,D028 -1132,D095 1132,D095 -1132,D102 1132,D102 -1132,D16F 1132,D16F -1132,D1DC 1132,D1DC -1132,D249 1132,D249 -1132,D2B5 1132,D2B5 -1132,D322 1132,D322 -1132,D38F 1132,D38F -1132,D3FC 1132,D3FC -1132,D469 1132,D469 -1132,D4D6 1132,D4D6 -1132,D543 1132,D543 -1132,D5B0 1132,D5B0 -1132,D61D 1132,D61D -1132,D689 1132,D689 -1132,D6F6 1132,D6F6 -1132,D763 1132,D763 -1133,AC01 1133,AC01 -1133,AC6D 1133,AC6D -1133,ACDA 1133,ACDA -1133,AD47 1133,AD47 -1133,ADB4 1133,ADB4 -1133,AE21 1133,AE21 -1133,AE8E 1133,AE8E -1133,AEFB 1133,AEFB -1133,AF68 1133,AF68 -1133,AFD5 1133,AFD5 -1133,B041 1133,B041 -1133,B0AE 1133,B0AE -1133,B11B 1133,B11B -1133,B188 1133,B188 -1133,B1F5 1133,B1F5 -1133,B262 1133,B262 -1133,B2CF 1133,B2CF -1133,B33C 1133,B33C -1133,B3A9 1133,B3A9 -1133,B415 1133,B415 -1133,B482 1133,B482 -1133,B4EF 1133,B4EF -1133,B55C 1133,B55C -1133,B5C9 1133,B5C9 -1133,B636 1133,B636 -1133,B6A3 1133,B6A3 -1133,B710 1133,B710 -1133,B77D 1133,B77D -1133,B7E9 1133,B7E9 -1133,B856 1133,B856 -1133,B8C3 1133,B8C3 -1133,B930 1133,B930 -1133,B99D 1133,B99D -1133,BA0A 1133,BA0A -1133,BA77 1133,BA77 -1133,BAE4 1133,BAE4 -1133,BB51 1133,BB51 -1133,BBBD 1133,BBBD -1133,BC2A 1133,BC2A -1133,BC97 1133,BC97 -1133,BD04 1133,BD04 -1133,BD71 1133,BD71 -1133,BDDE 1133,BDDE -1133,BE4B 1133,BE4B -1133,BEB8 1133,BEB8 -1133,BF25 1133,BF25 -1133,BF91 1133,BF91 -1133,BFFE 1133,BFFE -1133,C06B 1133,C06B -1133,C0D8 1133,C0D8 -1133,C145 1133,C145 -1133,C1B2 1133,C1B2 -1133,C21F 1133,C21F -1133,C28C 1133,C28C -1133,C2F9 1133,C2F9 -1133,C365 1133,C365 -1133,C3D2 1133,C3D2 -1133,C43F 1133,C43F -1133,C4AC 1133,C4AC -1133,C519 1133,C519 -1133,C586 1133,C586 -1133,C5F3 1133,C5F3 -1133,C660 1133,C660 -1133,C6CD 1133,C6CD -1133,C739 1133,C739 -1133,C7A6 1133,C7A6 -1133,C813 1133,C813 -1133,C880 1133,C880 -1133,C8ED 1133,C8ED -1133,C95A 1133,C95A -1133,C9C7 1133,C9C7 -1133,CA34 1133,CA34 -1133,CAA1 1133,CAA1 -1133,CB0D 1133,CB0D -1133,CB7A 1133,CB7A -1133,CBE7 1133,CBE7 -1133,CC54 1133,CC54 -1133,CCC1 1133,CCC1 -1133,CD2E 1133,CD2E -1133,CD9B 1133,CD9B -1133,CE08 1133,CE08 -1133,CE75 1133,CE75 -1133,CEE1 1133,CEE1 -1133,CF4E 1133,CF4E -1133,CFBB 1133,CFBB -1133,D028 1133,D028 -1133,D095 1133,D095 -1133,D102 1133,D102 -1133,D16F 1133,D16F -1133,D1DC 1133,D1DC -1133,D249 1133,D249 -1133,D2B5 1133,D2B5 -1133,D322 1133,D322 -1133,D38F 1133,D38F -1133,D3FC 1133,D3FC -1133,D469 1133,D469 -1133,D4D6 1133,D4D6 -1133,D543 1133,D543 -1133,D5B0 1133,D5B0 -1133,D61D 1133,D61D -1133,D689 1133,D689 -1133,D6F6 1133,D6F6 -1133,D763 1133,D763 -1134,AC01 1134,AC01 -1134,AC6D 1134,AC6D -1134,ACDA 1134,ACDA -1134,AD47 1134,AD47 -1134,ADB4 1134,ADB4 -1134,AE21 1134,AE21 -1134,AE8E 1134,AE8E -1134,AEFB 1134,AEFB -1134,AF68 1134,AF68 -1134,AFD5 1134,AFD5 -1134,B041 1134,B041 -1134,B0AE 1134,B0AE -1134,B11B 1134,B11B -1134,B188 1134,B188 -1134,B1F5 1134,B1F5 -1134,B262 1134,B262 -1134,B2CF 1134,B2CF -1134,B33C 1134,B33C -1134,B3A9 1134,B3A9 -1134,B415 1134,B415 -1134,B482 1134,B482 -1134,B4EF 1134,B4EF -1134,B55C 1134,B55C -1134,B5C9 1134,B5C9 -1134,B636 1134,B636 -1134,B6A3 1134,B6A3 -1134,B710 1134,B710 -1134,B77D 1134,B77D -1134,B7E9 1134,B7E9 -1134,B856 1134,B856 -1134,B8C3 1134,B8C3 -1134,B930 1134,B930 -1134,B99D 1134,B99D -1134,BA0A 1134,BA0A -1134,BA77 1134,BA77 -1134,BAE4 1134,BAE4 -1134,BB51 1134,BB51 -1134,BBBD 1134,BBBD -1134,BC2A 1134,BC2A -1134,BC97 1134,BC97 -1134,BD04 1134,BD04 -1134,BD71 1134,BD71 -1134,BDDE 1134,BDDE -1134,BE4B 1134,BE4B -1134,BEB8 1134,BEB8 -1134,BF25 1134,BF25 -1134,BF91 1134,BF91 -1134,BFFE 1134,BFFE -1134,C06B 1134,C06B -1134,C0D8 1134,C0D8 -1134,C145 1134,C145 -1134,C1B2 1134,C1B2 -1134,C21F 1134,C21F -1134,C28C 1134,C28C -1134,C2F9 1134,C2F9 -1134,C365 1134,C365 -1134,C3D2 1134,C3D2 -1134,C43F 1134,C43F -1134,C4AC 1134,C4AC -1134,C519 1134,C519 -1134,C586 1134,C586 -1134,C5F3 1134,C5F3 -1134,C660 1134,C660 -1134,C6CD 1134,C6CD -1134,C739 1134,C739 -1134,C7A6 1134,C7A6 -1134,C813 1134,C813 -1134,C880 1134,C880 -1134,C8ED 1134,C8ED -1134,C95A 1134,C95A -1134,C9C7 1134,C9C7 -1134,CA34 1134,CA34 -1134,CAA1 1134,CAA1 -1134,CB0D 1134,CB0D -1134,CB7A 1134,CB7A -1134,CBE7 1134,CBE7 -1134,CC54 1134,CC54 -1134,CCC1 1134,CCC1 -1134,CD2E 1134,CD2E -1134,CD9B 1134,CD9B -1134,CE08 1134,CE08 -1134,CE75 1134,CE75 -1134,CEE1 1134,CEE1 -1134,CF4E 1134,CF4E -1134,CFBB 1134,CFBB -1134,D028 1134,D028 -1134,D095 1134,D095 -1134,D102 1134,D102 -1134,D16F 1134,D16F -1134,D1DC 1134,D1DC -1134,D249 1134,D249 -1134,D2B5 1134,D2B5 -1134,D322 1134,D322 -1134,D38F 1134,D38F -1134,D3FC 1134,D3FC -1134,D469 1134,D469 -1134,D4D6 1134,D4D6 -1134,D543 1134,D543 -1134,D5B0 1134,D5B0 -1134,D61D 1134,D61D -1134,D689 1134,D689 -1134,D6F6 1134,D6F6 -1134,D763 1134,D763 -1135,AC01 1135,AC01 -1135,AC6D 1135,AC6D -1135,ACDA 1135,ACDA -1135,AD47 1135,AD47 -1135,ADB4 1135,ADB4 -1135,AE21 1135,AE21 -1135,AE8E 1135,AE8E -1135,AEFB 1135,AEFB -1135,AF68 1135,AF68 -1135,AFD5 1135,AFD5 -1135,B041 1135,B041 -1135,B0AE 1135,B0AE -1135,B11B 1135,B11B -1135,B188 1135,B188 -1135,B1F5 1135,B1F5 -1135,B262 1135,B262 -1135,B2CF 1135,B2CF -1135,B33C 1135,B33C -1135,B3A9 1135,B3A9 -1135,B415 1135,B415 -1135,B482 1135,B482 -1135,B4EF 1135,B4EF -1135,B55C 1135,B55C -1135,B5C9 1135,B5C9 -1135,B636 1135,B636 -1135,B6A3 1135,B6A3 -1135,B710 1135,B710 -1135,B77D 1135,B77D -1135,B7E9 1135,B7E9 -1135,B856 1135,B856 -1135,B8C3 1135,B8C3 -1135,B930 1135,B930 -1135,B99D 1135,B99D -1135,BA0A 1135,BA0A -1135,BA77 1135,BA77 -1135,BAE4 1135,BAE4 -1135,BB51 1135,BB51 -1135,BBBD 1135,BBBD -1135,BC2A 1135,BC2A -1135,BC97 1135,BC97 -1135,BD04 1135,BD04 -1135,BD71 1135,BD71 -1135,BDDE 1135,BDDE -1135,BE4B 1135,BE4B -1135,BEB8 1135,BEB8 -1135,BF25 1135,BF25 -1135,BF91 1135,BF91 -1135,BFFE 1135,BFFE -1135,C06B 1135,C06B -1135,C0D8 1135,C0D8 -1135,C145 1135,C145 -1135,C1B2 1135,C1B2 -1135,C21F 1135,C21F -1135,C28C 1135,C28C -1135,C2F9 1135,C2F9 -1135,C365 1135,C365 -1135,C3D2 1135,C3D2 -1135,C43F 1135,C43F -1135,C4AC 1135,C4AC -1135,C519 1135,C519 -1135,C586 1135,C586 -1135,C5F3 1135,C5F3 -1135,C660 1135,C660 -1135,C6CD 1135,C6CD -1135,C739 1135,C739 -1135,C7A6 1135,C7A6 -1135,C813 1135,C813 -1135,C880 1135,C880 -1135,C8ED 1135,C8ED -1135,C95A 1135,C95A -1135,C9C7 1135,C9C7 -1135,CA34 1135,CA34 -1135,CAA1 1135,CAA1 -1135,CB0D 1135,CB0D -1135,CB7A 1135,CB7A -1135,CBE7 1135,CBE7 -1135,CC54 1135,CC54 -1135,CCC1 1135,CCC1 -1135,CD2E 1135,CD2E -1135,CD9B 1135,CD9B -1135,CE08 1135,CE08 -1135,CE75 1135,CE75 -1135,CEE1 1135,CEE1 -1135,CF4E 1135,CF4E -1135,CFBB 1135,CFBB -1135,D028 1135,D028 -1135,D095 1135,D095 -1135,D102 1135,D102 -1135,D16F 1135,D16F -1135,D1DC 1135,D1DC -1135,D249 1135,D249 -1135,D2B5 1135,D2B5 -1135,D322 1135,D322 -1135,D38F 1135,D38F -1135,D3FC 1135,D3FC -1135,D469 1135,D469 -1135,D4D6 1135,D4D6 -1135,D543 1135,D543 -1135,D5B0 1135,D5B0 -1135,D61D 1135,D61D -1135,D689 1135,D689 -1135,D6F6 1135,D6F6 -1135,D763 1135,D763 -1136,AC01 1136,AC01 -1136,AC6D 1136,AC6D -1136,ACDA 1136,ACDA -1136,AD47 1136,AD47 -1136,ADB4 1136,ADB4 -1136,AE21 1136,AE21 -1136,AE8E 1136,AE8E -1136,AEFB 1136,AEFB -1136,AF68 1136,AF68 -1136,AFD5 1136,AFD5 -1136,B041 1136,B041 -1136,B0AE 1136,B0AE -1136,B11B 1136,B11B -1136,B188 1136,B188 -1136,B1F5 1136,B1F5 -1136,B262 1136,B262 -1136,B2CF 1136,B2CF -1136,B33C 1136,B33C -1136,B3A9 1136,B3A9 -1136,B415 1136,B415 -1136,B482 1136,B482 -1136,B4EF 1136,B4EF -1136,B55C 1136,B55C -1136,B5C9 1136,B5C9 -1136,B636 1136,B636 -1136,B6A3 1136,B6A3 -1136,B710 1136,B710 -1136,B77D 1136,B77D -1136,B7E9 1136,B7E9 -1136,B856 1136,B856 -1136,B8C3 1136,B8C3 -1136,B930 1136,B930 -1136,B99D 1136,B99D -1136,BA0A 1136,BA0A -1136,BA77 1136,BA77 -1136,BAE4 1136,BAE4 -1136,BB51 1136,BB51 -1136,BBBD 1136,BBBD -1136,BC2A 1136,BC2A -1136,BC97 1136,BC97 -1136,BD04 1136,BD04 -1136,BD71 1136,BD71 -1136,BDDE 1136,BDDE -1136,BE4B 1136,BE4B -1136,BEB8 1136,BEB8 -1136,BF25 1136,BF25 -1136,BF91 1136,BF91 -1136,BFFE 1136,BFFE -1136,C06B 1136,C06B -1136,C0D8 1136,C0D8 -1136,C145 1136,C145 -1136,C1B2 1136,C1B2 -1136,C21F 1136,C21F -1136,C28C 1136,C28C -1136,C2F9 1136,C2F9 -1136,C365 1136,C365 -1136,C3D2 1136,C3D2 -1136,C43F 1136,C43F -1136,C4AC 1136,C4AC -1136,C519 1136,C519 -1136,C586 1136,C586 -1136,C5F3 1136,C5F3 -1136,C660 1136,C660 -1136,C6CD 1136,C6CD -1136,C739 1136,C739 -1136,C7A6 1136,C7A6 -1136,C813 1136,C813 -1136,C880 1136,C880 -1136,C8ED 1136,C8ED -1136,C95A 1136,C95A -1136,C9C7 1136,C9C7 -1136,CA34 1136,CA34 -1136,CAA1 1136,CAA1 -1136,CB0D 1136,CB0D -1136,CB7A 1136,CB7A -1136,CBE7 1136,CBE7 -1136,CC54 1136,CC54 -1136,CCC1 1136,CCC1 -1136,CD2E 1136,CD2E -1136,CD9B 1136,CD9B -1136,CE08 1136,CE08 -1136,CE75 1136,CE75 -1136,CEE1 1136,CEE1 -1136,CF4E 1136,CF4E -1136,CFBB 1136,CFBB -1136,D028 1136,D028 -1136,D095 1136,D095 -1136,D102 1136,D102 -1136,D16F 1136,D16F -1136,D1DC 1136,D1DC -1136,D249 1136,D249 -1136,D2B5 1136,D2B5 -1136,D322 1136,D322 -1136,D38F 1136,D38F -1136,D3FC 1136,D3FC -1136,D469 1136,D469 -1136,D4D6 1136,D4D6 -1136,D543 1136,D543 -1136,D5B0 1136,D5B0 -1136,D61D 1136,D61D -1136,D689 1136,D689 -1136,D6F6 1136,D6F6 -1136,D763 1136,D763 -1137,AC01 1137,AC01 -1137,AC6D 1137,AC6D -1137,ACDA 1137,ACDA -1137,AD47 1137,AD47 -1137,ADB4 1137,ADB4 -1137,AE21 1137,AE21 -1137,AE8E 1137,AE8E -1137,AEFB 1137,AEFB -1137,AF68 1137,AF68 -1137,AFD5 1137,AFD5 -1137,B041 1137,B041 -1137,B0AE 1137,B0AE -1137,B11B 1137,B11B -1137,B188 1137,B188 -1137,B1F5 1137,B1F5 -1137,B262 1137,B262 -1137,B2CF 1137,B2CF -1137,B33C 1137,B33C -1137,B3A9 1137,B3A9 -1137,B415 1137,B415 -1137,B482 1137,B482 -1137,B4EF 1137,B4EF -1137,B55C 1137,B55C -1137,B5C9 1137,B5C9 -1137,B636 1137,B636 -1137,B6A3 1137,B6A3 -1137,B710 1137,B710 -1137,B77D 1137,B77D -1137,B7E9 1137,B7E9 -1137,B856 1137,B856 -1137,B8C3 1137,B8C3 -1137,B930 1137,B930 -1137,B99D 1137,B99D -1137,BA0A 1137,BA0A -1137,BA77 1137,BA77 -1137,BAE4 1137,BAE4 -1137,BB51 1137,BB51 -1137,BBBD 1137,BBBD -1137,BC2A 1137,BC2A -1137,BC97 1137,BC97 -1137,BD04 1137,BD04 -1137,BD71 1137,BD71 -1137,BDDE 1137,BDDE -1137,BE4B 1137,BE4B -1137,BEB8 1137,BEB8 -1137,BF25 1137,BF25 -1137,BF91 1137,BF91 -1137,BFFE 1137,BFFE -1137,C06B 1137,C06B -1137,C0D8 1137,C0D8 -1137,C145 1137,C145 -1137,C1B2 1137,C1B2 -1137,C21F 1137,C21F -1137,C28C 1137,C28C -1137,C2F9 1137,C2F9 -1137,C365 1137,C365 -1137,C3D2 1137,C3D2 -1137,C43F 1137,C43F -1137,C4AC 1137,C4AC -1137,C519 1137,C519 -1137,C586 1137,C586 -1137,C5F3 1137,C5F3 -1137,C660 1137,C660 -1137,C6CD 1137,C6CD -1137,C739 1137,C739 -1137,C7A6 1137,C7A6 -1137,C813 1137,C813 -1137,C880 1137,C880 -1137,C8ED 1137,C8ED -1137,C95A 1137,C95A -1137,C9C7 1137,C9C7 -1137,CA34 1137,CA34 -1137,CAA1 1137,CAA1 -1137,CB0D 1137,CB0D -1137,CB7A 1137,CB7A -1137,CBE7 1137,CBE7 -1137,CC54 1137,CC54 -1137,CCC1 1137,CCC1 -1137,CD2E 1137,CD2E -1137,CD9B 1137,CD9B -1137,CE08 1137,CE08 -1137,CE75 1137,CE75 -1137,CEE1 1137,CEE1 -1137,CF4E 1137,CF4E -1137,CFBB 1137,CFBB -1137,D028 1137,D028 -1137,D095 1137,D095 -1137,D102 1137,D102 -1137,D16F 1137,D16F -1137,D1DC 1137,D1DC -1137,D249 1137,D249 -1137,D2B5 1137,D2B5 -1137,D322 1137,D322 -1137,D38F 1137,D38F -1137,D3FC 1137,D3FC -1137,D469 1137,D469 -1137,D4D6 1137,D4D6 -1137,D543 1137,D543 -1137,D5B0 1137,D5B0 -1137,D61D 1137,D61D -1137,D689 1137,D689 -1137,D6F6 1137,D6F6 -1137,D763 1137,D763 -1138,AC01 1138,AC01 -1138,AC6D 1138,AC6D -1138,ACDA 1138,ACDA -1138,AD47 1138,AD47 -1138,ADB4 1138,ADB4 -1138,AE21 1138,AE21 -1138,AE8E 1138,AE8E -1138,AEFB 1138,AEFB -1138,AF68 1138,AF68 -1138,AFD5 1138,AFD5 -1138,B041 1138,B041 -1138,B0AE 1138,B0AE -1138,B11B 1138,B11B -1138,B188 1138,B188 -1138,B1F5 1138,B1F5 -1138,B262 1138,B262 -1138,B2CF 1138,B2CF -1138,B33C 1138,B33C -1138,B3A9 1138,B3A9 -1138,B415 1138,B415 -1138,B482 1138,B482 -1138,B4EF 1138,B4EF -1138,B55C 1138,B55C -1138,B5C9 1138,B5C9 -1138,B636 1138,B636 -1138,B6A3 1138,B6A3 -1138,B710 1138,B710 -1138,B77D 1138,B77D -1138,B7E9 1138,B7E9 -1138,B856 1138,B856 -1138,B8C3 1138,B8C3 -1138,B930 1138,B930 -1138,B99D 1138,B99D -1138,BA0A 1138,BA0A -1138,BA77 1138,BA77 -1138,BAE4 1138,BAE4 -1138,BB51 1138,BB51 -1138,BBBD 1138,BBBD -1138,BC2A 1138,BC2A -1138,BC97 1138,BC97 -1138,BD04 1138,BD04 -1138,BD71 1138,BD71 -1138,BDDE 1138,BDDE -1138,BE4B 1138,BE4B -1138,BEB8 1138,BEB8 -1138,BF25 1138,BF25 -1138,BF91 1138,BF91 -1138,BFFE 1138,BFFE -1138,C06B 1138,C06B -1138,C0D8 1138,C0D8 -1138,C145 1138,C145 -1138,C1B2 1138,C1B2 -1138,C21F 1138,C21F -1138,C28C 1138,C28C -1138,C2F9 1138,C2F9 -1138,C365 1138,C365 -1138,C3D2 1138,C3D2 -1138,C43F 1138,C43F -1138,C4AC 1138,C4AC -1138,C519 1138,C519 -1138,C586 1138,C586 -1138,C5F3 1138,C5F3 -1138,C660 1138,C660 -1138,C6CD 1138,C6CD -1138,C739 1138,C739 -1138,C7A6 1138,C7A6 -1138,C813 1138,C813 -1138,C880 1138,C880 -1138,C8ED 1138,C8ED -1138,C95A 1138,C95A -1138,C9C7 1138,C9C7 -1138,CA34 1138,CA34 -1138,CAA1 1138,CAA1 -1138,CB0D 1138,CB0D -1138,CB7A 1138,CB7A -1138,CBE7 1138,CBE7 -1138,CC54 1138,CC54 -1138,CCC1 1138,CCC1 -1138,CD2E 1138,CD2E -1138,CD9B 1138,CD9B -1138,CE08 1138,CE08 -1138,CE75 1138,CE75 -1138,CEE1 1138,CEE1 -1138,CF4E 1138,CF4E -1138,CFBB 1138,CFBB -1138,D028 1138,D028 -1138,D095 1138,D095 -1138,D102 1138,D102 -1138,D16F 1138,D16F -1138,D1DC 1138,D1DC -1138,D249 1138,D249 -1138,D2B5 1138,D2B5 -1138,D322 1138,D322 -1138,D38F 1138,D38F -1138,D3FC 1138,D3FC -1138,D469 1138,D469 -1138,D4D6 1138,D4D6 -1138,D543 1138,D543 -1138,D5B0 1138,D5B0 -1138,D61D 1138,D61D -1138,D689 1138,D689 -1138,D6F6 1138,D6F6 -1138,D763 1138,D763 -1139,AC01 1139,AC01 -1139,AC6D 1139,AC6D -1139,ACDA 1139,ACDA -1139,AD47 1139,AD47 -1139,ADB4 1139,ADB4 -1139,AE21 1139,AE21 -1139,AE8E 1139,AE8E -1139,AEFB 1139,AEFB -1139,AF68 1139,AF68 -1139,AFD5 1139,AFD5 -1139,B041 1139,B041 -1139,B0AE 1139,B0AE -1139,B11B 1139,B11B -1139,B188 1139,B188 -1139,B1F5 1139,B1F5 -1139,B262 1139,B262 -1139,B2CF 1139,B2CF -1139,B33C 1139,B33C -1139,B3A9 1139,B3A9 -1139,B415 1139,B415 -1139,B482 1139,B482 -1139,B4EF 1139,B4EF -1139,B55C 1139,B55C -1139,B5C9 1139,B5C9 -1139,B636 1139,B636 -1139,B6A3 1139,B6A3 -1139,B710 1139,B710 -1139,B77D 1139,B77D -1139,B7E9 1139,B7E9 -1139,B856 1139,B856 -1139,B8C3 1139,B8C3 -1139,B930 1139,B930 -1139,B99D 1139,B99D -1139,BA0A 1139,BA0A -1139,BA77 1139,BA77 -1139,BAE4 1139,BAE4 -1139,BB51 1139,BB51 -1139,BBBD 1139,BBBD -1139,BC2A 1139,BC2A -1139,BC97 1139,BC97 -1139,BD04 1139,BD04 -1139,BD71 1139,BD71 -1139,BDDE 1139,BDDE -1139,BE4B 1139,BE4B -1139,BEB8 1139,BEB8 -1139,BF25 1139,BF25 -1139,BF91 1139,BF91 -1139,BFFE 1139,BFFE -1139,C06B 1139,C06B -1139,C0D8 1139,C0D8 -1139,C145 1139,C145 -1139,C1B2 1139,C1B2 -1139,C21F 1139,C21F -1139,C28C 1139,C28C -1139,C2F9 1139,C2F9 -1139,C365 1139,C365 -1139,C3D2 1139,C3D2 -1139,C43F 1139,C43F -1139,C4AC 1139,C4AC -1139,C519 1139,C519 -1139,C586 1139,C586 -1139,C5F3 1139,C5F3 -1139,C660 1139,C660 -1139,C6CD 1139,C6CD -1139,C739 1139,C739 -1139,C7A6 1139,C7A6 -1139,C813 1139,C813 -1139,C880 1139,C880 -1139,C8ED 1139,C8ED -1139,C95A 1139,C95A -1139,C9C7 1139,C9C7 -1139,CA34 1139,CA34 -1139,CAA1 1139,CAA1 -1139,CB0D 1139,CB0D -1139,CB7A 1139,CB7A -1139,CBE7 1139,CBE7 -1139,CC54 1139,CC54 -1139,CCC1 1139,CCC1 -1139,CD2E 1139,CD2E -1139,CD9B 1139,CD9B -1139,CE08 1139,CE08 -1139,CE75 1139,CE75 -1139,CEE1 1139,CEE1 -1139,CF4E 1139,CF4E -1139,CFBB 1139,CFBB -1139,D028 1139,D028 -1139,D095 1139,D095 -1139,D102 1139,D102 -1139,D16F 1139,D16F -1139,D1DC 1139,D1DC -1139,D249 1139,D249 -1139,D2B5 1139,D2B5 -1139,D322 1139,D322 -1139,D38F 1139,D38F -1139,D3FC 1139,D3FC -1139,D469 1139,D469 -1139,D4D6 1139,D4D6 -1139,D543 1139,D543 -1139,D5B0 1139,D5B0 -1139,D61D 1139,D61D -1139,D689 1139,D689 -1139,D6F6 1139,D6F6 -1139,D763 1139,D763 -113A,AC01 113A,AC01 -113A,AC6D 113A,AC6D -113A,ACDA 113A,ACDA -113A,AD47 113A,AD47 -113A,ADB4 113A,ADB4 -113A,AE21 113A,AE21 -113A,AE8E 113A,AE8E -113A,AEFB 113A,AEFB -113A,AF68 113A,AF68 -113A,AFD5 113A,AFD5 -113A,B041 113A,B041 -113A,B0AE 113A,B0AE -113A,B11B 113A,B11B -113A,B188 113A,B188 -113A,B1F5 113A,B1F5 -113A,B262 113A,B262 -113A,B2CF 113A,B2CF -113A,B33C 113A,B33C -113A,B3A9 113A,B3A9 -113A,B415 113A,B415 -113A,B482 113A,B482 -113A,B4EF 113A,B4EF -113A,B55C 113A,B55C -113A,B5C9 113A,B5C9 -113A,B636 113A,B636 -113A,B6A3 113A,B6A3 -113A,B710 113A,B710 -113A,B77D 113A,B77D -113A,B7E9 113A,B7E9 -113A,B856 113A,B856 -113A,B8C3 113A,B8C3 -113A,B930 113A,B930 -113A,B99D 113A,B99D -113A,BA0A 113A,BA0A -113A,BA77 113A,BA77 -113A,BAE4 113A,BAE4 -113A,BB51 113A,BB51 -113A,BBBD 113A,BBBD -113A,BC2A 113A,BC2A -113A,BC97 113A,BC97 -113A,BD04 113A,BD04 -113A,BD71 113A,BD71 -113A,BDDE 113A,BDDE -113A,BE4B 113A,BE4B -113A,BEB8 113A,BEB8 -113A,BF25 113A,BF25 -113A,BF91 113A,BF91 -113A,BFFE 113A,BFFE -113A,C06B 113A,C06B -113A,C0D8 113A,C0D8 -113A,C145 113A,C145 -113A,C1B2 113A,C1B2 -113A,C21F 113A,C21F -113A,C28C 113A,C28C -113A,C2F9 113A,C2F9 -113A,C365 113A,C365 -113A,C3D2 113A,C3D2 -113A,C43F 113A,C43F -113A,C4AC 113A,C4AC -113A,C519 113A,C519 -113A,C586 113A,C586 -113A,C5F3 113A,C5F3 -113A,C660 113A,C660 -113A,C6CD 113A,C6CD -113A,C739 113A,C739 -113A,C7A6 113A,C7A6 -113A,C813 113A,C813 -113A,C880 113A,C880 -113A,C8ED 113A,C8ED -113A,C95A 113A,C95A -113A,C9C7 113A,C9C7 -113A,CA34 113A,CA34 -113A,CAA1 113A,CAA1 -113A,CB0D 113A,CB0D -113A,CB7A 113A,CB7A -113A,CBE7 113A,CBE7 -113A,CC54 113A,CC54 -113A,CCC1 113A,CCC1 -113A,CD2E 113A,CD2E -113A,CD9B 113A,CD9B -113A,CE08 113A,CE08 -113A,CE75 113A,CE75 -113A,CEE1 113A,CEE1 -113A,CF4E 113A,CF4E -113A,CFBB 113A,CFBB -113A,D028 113A,D028 -113A,D095 113A,D095 -113A,D102 113A,D102 -113A,D16F 113A,D16F -113A,D1DC 113A,D1DC -113A,D249 113A,D249 -113A,D2B5 113A,D2B5 -113A,D322 113A,D322 -113A,D38F 113A,D38F -113A,D3FC 113A,D3FC -113A,D469 113A,D469 -113A,D4D6 113A,D4D6 -113A,D543 113A,D543 -113A,D5B0 113A,D5B0 -113A,D61D 113A,D61D -113A,D689 113A,D689 -113A,D6F6 113A,D6F6 -113A,D763 113A,D763 -113B,AC01 113B,AC01 -113B,AC6D 113B,AC6D -113B,ACDA 113B,ACDA -113B,AD47 113B,AD47 -113B,ADB4 113B,ADB4 -113B,AE21 113B,AE21 -113B,AE8E 113B,AE8E -113B,AEFB 113B,AEFB -113B,AF68 113B,AF68 -113B,AFD5 113B,AFD5 -113B,B041 113B,B041 -113B,B0AE 113B,B0AE -113B,B11B 113B,B11B -113B,B188 113B,B188 -113B,B1F5 113B,B1F5 -113B,B262 113B,B262 -113B,B2CF 113B,B2CF -113B,B33C 113B,B33C -113B,B3A9 113B,B3A9 -113B,B415 113B,B415 -113B,B482 113B,B482 -113B,B4EF 113B,B4EF -113B,B55C 113B,B55C -113B,B5C9 113B,B5C9 -113B,B636 113B,B636 -113B,B6A3 113B,B6A3 -113B,B710 113B,B710 -113B,B77D 113B,B77D -113B,B7E9 113B,B7E9 -113B,B856 113B,B856 -113B,B8C3 113B,B8C3 -113B,B930 113B,B930 -113B,B99D 113B,B99D -113B,BA0A 113B,BA0A -113B,BA77 113B,BA77 -113B,BAE4 113B,BAE4 -113B,BB51 113B,BB51 -113B,BBBD 113B,BBBD -113B,BC2A 113B,BC2A -113B,BC97 113B,BC97 -113B,BD04 113B,BD04 -113B,BD71 113B,BD71 -113B,BDDE 113B,BDDE -113B,BE4B 113B,BE4B -113B,BEB8 113B,BEB8 -113B,BF25 113B,BF25 -113B,BF91 113B,BF91 -113B,BFFE 113B,BFFE -113B,C06B 113B,C06B -113B,C0D8 113B,C0D8 -113B,C145 113B,C145 -113B,C1B2 113B,C1B2 -113B,C21F 113B,C21F -113B,C28C 113B,C28C -113B,C2F9 113B,C2F9 -113B,C365 113B,C365 -113B,C3D2 113B,C3D2 -113B,C43F 113B,C43F -113B,C4AC 113B,C4AC -113B,C519 113B,C519 -113B,C586 113B,C586 -113B,C5F3 113B,C5F3 -113B,C660 113B,C660 -113B,C6CD 113B,C6CD -113B,C739 113B,C739 -113B,C7A6 113B,C7A6 -113B,C813 113B,C813 -113B,C880 113B,C880 -113B,C8ED 113B,C8ED -113B,C95A 113B,C95A -113B,C9C7 113B,C9C7 -113B,CA34 113B,CA34 -113B,CAA1 113B,CAA1 -113B,CB0D 113B,CB0D -113B,CB7A 113B,CB7A -113B,CBE7 113B,CBE7 -113B,CC54 113B,CC54 -113B,CCC1 113B,CCC1 -113B,CD2E 113B,CD2E -113B,CD9B 113B,CD9B -113B,CE08 113B,CE08 -113B,CE75 113B,CE75 -113B,CEE1 113B,CEE1 -113B,CF4E 113B,CF4E -113B,CFBB 113B,CFBB -113B,D028 113B,D028 -113B,D095 113B,D095 -113B,D102 113B,D102 -113B,D16F 113B,D16F -113B,D1DC 113B,D1DC -113B,D249 113B,D249 -113B,D2B5 113B,D2B5 -113B,D322 113B,D322 -113B,D38F 113B,D38F -113B,D3FC 113B,D3FC -113B,D469 113B,D469 -113B,D4D6 113B,D4D6 -113B,D543 113B,D543 -113B,D5B0 113B,D5B0 -113B,D61D 113B,D61D -113B,D689 113B,D689 -113B,D6F6 113B,D6F6 -113B,D763 113B,D763 -113C,AC01 113C,AC01 -113C,AC6D 113C,AC6D -113C,ACDA 113C,ACDA -113C,AD47 113C,AD47 -113C,ADB4 113C,ADB4 -113C,AE21 113C,AE21 -113C,AE8E 113C,AE8E -113C,AEFB 113C,AEFB -113C,AF68 113C,AF68 -113C,AFD5 113C,AFD5 -113C,B041 113C,B041 -113C,B0AE 113C,B0AE -113C,B11B 113C,B11B -113C,B188 113C,B188 -113C,B1F5 113C,B1F5 -113C,B262 113C,B262 -113C,B2CF 113C,B2CF -113C,B33C 113C,B33C -113C,B3A9 113C,B3A9 -113C,B415 113C,B415 -113C,B482 113C,B482 -113C,B4EF 113C,B4EF -113C,B55C 113C,B55C -113C,B5C9 113C,B5C9 -113C,B636 113C,B636 -113C,B6A3 113C,B6A3 -113C,B710 113C,B710 -113C,B77D 113C,B77D -113C,B7E9 113C,B7E9 -113C,B856 113C,B856 -113C,B8C3 113C,B8C3 -113C,B930 113C,B930 -113C,B99D 113C,B99D -113C,BA0A 113C,BA0A -113C,BA77 113C,BA77 -113C,BAE4 113C,BAE4 -113C,BB51 113C,BB51 -113C,BBBD 113C,BBBD -113C,BC2A 113C,BC2A -113C,BC97 113C,BC97 -113C,BD04 113C,BD04 -113C,BD71 113C,BD71 -113C,BDDE 113C,BDDE -113C,BE4B 113C,BE4B -113C,BEB8 113C,BEB8 -113C,BF25 113C,BF25 -113C,BF91 113C,BF91 -113C,BFFE 113C,BFFE -113C,C06B 113C,C06B -113C,C0D8 113C,C0D8 -113C,C145 113C,C145 -113C,C1B2 113C,C1B2 -113C,C21F 113C,C21F -113C,C28C 113C,C28C -113C,C2F9 113C,C2F9 -113C,C365 113C,C365 -113C,C3D2 113C,C3D2 -113C,C43F 113C,C43F -113C,C4AC 113C,C4AC -113C,C519 113C,C519 -113C,C586 113C,C586 -113C,C5F3 113C,C5F3 -113C,C660 113C,C660 -113C,C6CD 113C,C6CD -113C,C739 113C,C739 -113C,C7A6 113C,C7A6 -113C,C813 113C,C813 -113C,C880 113C,C880 -113C,C8ED 113C,C8ED -113C,C95A 113C,C95A -113C,C9C7 113C,C9C7 -113C,CA34 113C,CA34 -113C,CAA1 113C,CAA1 -113C,CB0D 113C,CB0D -113C,CB7A 113C,CB7A -113C,CBE7 113C,CBE7 -113C,CC54 113C,CC54 -113C,CCC1 113C,CCC1 -113C,CD2E 113C,CD2E -113C,CD9B 113C,CD9B -113C,CE08 113C,CE08 -113C,CE75 113C,CE75 -113C,CEE1 113C,CEE1 -113C,CF4E 113C,CF4E -113C,CFBB 113C,CFBB -113C,D028 113C,D028 -113C,D095 113C,D095 -113C,D102 113C,D102 -113C,D16F 113C,D16F -113C,D1DC 113C,D1DC -113C,D249 113C,D249 -113C,D2B5 113C,D2B5 -113C,D322 113C,D322 -113C,D38F 113C,D38F -113C,D3FC 113C,D3FC -113C,D469 113C,D469 -113C,D4D6 113C,D4D6 -113C,D543 113C,D543 -113C,D5B0 113C,D5B0 -113C,D61D 113C,D61D -113C,D689 113C,D689 -113C,D6F6 113C,D6F6 -113C,D763 113C,D763 -113D,AC01 113D,AC01 -113D,AC6D 113D,AC6D -113D,ACDA 113D,ACDA -113D,AD47 113D,AD47 -113D,ADB4 113D,ADB4 -113D,AE21 113D,AE21 -113D,AE8E 113D,AE8E -113D,AEFB 113D,AEFB -113D,AF68 113D,AF68 -113D,AFD5 113D,AFD5 -113D,B041 113D,B041 -113D,B0AE 113D,B0AE -113D,B11B 113D,B11B -113D,B188 113D,B188 -113D,B1F5 113D,B1F5 -113D,B262 113D,B262 -113D,B2CF 113D,B2CF -113D,B33C 113D,B33C -113D,B3A9 113D,B3A9 -113D,B415 113D,B415 -113D,B482 113D,B482 -113D,B4EF 113D,B4EF -113D,B55C 113D,B55C -113D,B5C9 113D,B5C9 -113D,B636 113D,B636 -113D,B6A3 113D,B6A3 -113D,B710 113D,B710 -113D,B77D 113D,B77D -113D,B7E9 113D,B7E9 -113D,B856 113D,B856 -113D,B8C3 113D,B8C3 -113D,B930 113D,B930 -113D,B99D 113D,B99D -113D,BA0A 113D,BA0A -113D,BA77 113D,BA77 -113D,BAE4 113D,BAE4 -113D,BB51 113D,BB51 -113D,BBBD 113D,BBBD -113D,BC2A 113D,BC2A -113D,BC97 113D,BC97 -113D,BD04 113D,BD04 -113D,BD71 113D,BD71 -113D,BDDE 113D,BDDE -113D,BE4B 113D,BE4B -113D,BEB8 113D,BEB8 -113D,BF25 113D,BF25 -113D,BF91 113D,BF91 -113D,BFFE 113D,BFFE -113D,C06B 113D,C06B -113D,C0D8 113D,C0D8 -113D,C145 113D,C145 -113D,C1B2 113D,C1B2 -113D,C21F 113D,C21F -113D,C28C 113D,C28C -113D,C2F9 113D,C2F9 -113D,C365 113D,C365 -113D,C3D2 113D,C3D2 -113D,C43F 113D,C43F -113D,C4AC 113D,C4AC -113D,C519 113D,C519 -113D,C586 113D,C586 -113D,C5F3 113D,C5F3 -113D,C660 113D,C660 -113D,C6CD 113D,C6CD -113D,C739 113D,C739 -113D,C7A6 113D,C7A6 -113D,C813 113D,C813 -113D,C880 113D,C880 -113D,C8ED 113D,C8ED -113D,C95A 113D,C95A -113D,C9C7 113D,C9C7 -113D,CA34 113D,CA34 -113D,CAA1 113D,CAA1 -113D,CB0D 113D,CB0D -113D,CB7A 113D,CB7A -113D,CBE7 113D,CBE7 -113D,CC54 113D,CC54 -113D,CCC1 113D,CCC1 -113D,CD2E 113D,CD2E -113D,CD9B 113D,CD9B -113D,CE08 113D,CE08 -113D,CE75 113D,CE75 -113D,CEE1 113D,CEE1 -113D,CF4E 113D,CF4E -113D,CFBB 113D,CFBB -113D,D028 113D,D028 -113D,D095 113D,D095 -113D,D102 113D,D102 -113D,D16F 113D,D16F -113D,D1DC 113D,D1DC -113D,D249 113D,D249 -113D,D2B5 113D,D2B5 -113D,D322 113D,D322 -113D,D38F 113D,D38F -113D,D3FC 113D,D3FC -113D,D469 113D,D469 -113D,D4D6 113D,D4D6 -113D,D543 113D,D543 -113D,D5B0 113D,D5B0 -113D,D61D 113D,D61D -113D,D689 113D,D689 -113D,D6F6 113D,D6F6 -113D,D763 113D,D763 -113E,AC01 113E,AC01 -113E,AC6D 113E,AC6D -113E,ACDA 113E,ACDA -113E,AD47 113E,AD47 -113E,ADB4 113E,ADB4 -113E,AE21 113E,AE21 -113E,AE8E 113E,AE8E -113E,AEFB 113E,AEFB -113E,AF68 113E,AF68 -113E,AFD5 113E,AFD5 -113E,B041 113E,B041 -113E,B0AE 113E,B0AE -113E,B11B 113E,B11B -113E,B188 113E,B188 -113E,B1F5 113E,B1F5 -113E,B262 113E,B262 -113E,B2CF 113E,B2CF -113E,B33C 113E,B33C -113E,B3A9 113E,B3A9 -113E,B415 113E,B415 -113E,B482 113E,B482 -113E,B4EF 113E,B4EF -113E,B55C 113E,B55C -113E,B5C9 113E,B5C9 -113E,B636 113E,B636 -113E,B6A3 113E,B6A3 -113E,B710 113E,B710 -113E,B77D 113E,B77D -113E,B7E9 113E,B7E9 -113E,B856 113E,B856 -113E,B8C3 113E,B8C3 -113E,B930 113E,B930 -113E,B99D 113E,B99D -113E,BA0A 113E,BA0A -113E,BA77 113E,BA77 -113E,BAE4 113E,BAE4 -113E,BB51 113E,BB51 -113E,BBBD 113E,BBBD -113E,BC2A 113E,BC2A -113E,BC97 113E,BC97 -113E,BD04 113E,BD04 -113E,BD71 113E,BD71 -113E,BDDE 113E,BDDE -113E,BE4B 113E,BE4B -113E,BEB8 113E,BEB8 -113E,BF25 113E,BF25 -113E,BF91 113E,BF91 -113E,BFFE 113E,BFFE -113E,C06B 113E,C06B -113E,C0D8 113E,C0D8 -113E,C145 113E,C145 -113E,C1B2 113E,C1B2 -113E,C21F 113E,C21F -113E,C28C 113E,C28C -113E,C2F9 113E,C2F9 -113E,C365 113E,C365 -113E,C3D2 113E,C3D2 -113E,C43F 113E,C43F -113E,C4AC 113E,C4AC -113E,C519 113E,C519 -113E,C586 113E,C586 -113E,C5F3 113E,C5F3 -113E,C660 113E,C660 -113E,C6CD 113E,C6CD -113E,C739 113E,C739 -113E,C7A6 113E,C7A6 -113E,C813 113E,C813 -113E,C880 113E,C880 -113E,C8ED 113E,C8ED -113E,C95A 113E,C95A -113E,C9C7 113E,C9C7 -113E,CA34 113E,CA34 -113E,CAA1 113E,CAA1 -113E,CB0D 113E,CB0D -113E,CB7A 113E,CB7A -113E,CBE7 113E,CBE7 -113E,CC54 113E,CC54 -113E,CCC1 113E,CCC1 -113E,CD2E 113E,CD2E -113E,CD9B 113E,CD9B -113E,CE08 113E,CE08 -113E,CE75 113E,CE75 -113E,CEE1 113E,CEE1 -113E,CF4E 113E,CF4E -113E,CFBB 113E,CFBB -113E,D028 113E,D028 -113E,D095 113E,D095 -113E,D102 113E,D102 -113E,D16F 113E,D16F -113E,D1DC 113E,D1DC -113E,D249 113E,D249 -113E,D2B5 113E,D2B5 -113E,D322 113E,D322 -113E,D38F 113E,D38F -113E,D3FC 113E,D3FC -113E,D469 113E,D469 -113E,D4D6 113E,D4D6 -113E,D543 113E,D543 -113E,D5B0 113E,D5B0 -113E,D61D 113E,D61D -113E,D689 113E,D689 -113E,D6F6 113E,D6F6 -113E,D763 113E,D763 -113F,AC01 113F,AC01 -113F,AC6D 113F,AC6D -113F,ACDA 113F,ACDA -113F,AD47 113F,AD47 -113F,ADB4 113F,ADB4 -113F,AE21 113F,AE21 -113F,AE8E 113F,AE8E -113F,AEFB 113F,AEFB -113F,AF68 113F,AF68 -113F,AFD5 113F,AFD5 -113F,B041 113F,B041 -113F,B0AE 113F,B0AE -113F,B11B 113F,B11B -113F,B188 113F,B188 -113F,B1F5 113F,B1F5 -113F,B262 113F,B262 -113F,B2CF 113F,B2CF -113F,B33C 113F,B33C -113F,B3A9 113F,B3A9 -113F,B415 113F,B415 -113F,B482 113F,B482 -113F,B4EF 113F,B4EF -113F,B55C 113F,B55C -113F,B5C9 113F,B5C9 -113F,B636 113F,B636 -113F,B6A3 113F,B6A3 -113F,B710 113F,B710 -113F,B77D 113F,B77D -113F,B7E9 113F,B7E9 -113F,B856 113F,B856 -113F,B8C3 113F,B8C3 -113F,B930 113F,B930 -113F,B99D 113F,B99D -113F,BA0A 113F,BA0A -113F,BA77 113F,BA77 -113F,BAE4 113F,BAE4 -113F,BB51 113F,BB51 -113F,BBBD 113F,BBBD -113F,BC2A 113F,BC2A -113F,BC97 113F,BC97 -113F,BD04 113F,BD04 -113F,BD71 113F,BD71 -113F,BDDE 113F,BDDE -113F,BE4B 113F,BE4B -113F,BEB8 113F,BEB8 -113F,BF25 113F,BF25 -113F,BF91 113F,BF91 -113F,BFFE 113F,BFFE -113F,C06B 113F,C06B -113F,C0D8 113F,C0D8 -113F,C145 113F,C145 -113F,C1B2 113F,C1B2 -113F,C21F 113F,C21F -113F,C28C 113F,C28C -113F,C2F9 113F,C2F9 -113F,C365 113F,C365 -113F,C3D2 113F,C3D2 -113F,C43F 113F,C43F -113F,C4AC 113F,C4AC -113F,C519 113F,C519 -113F,C586 113F,C586 -113F,C5F3 113F,C5F3 -113F,C660 113F,C660 -113F,C6CD 113F,C6CD -113F,C739 113F,C739 -113F,C7A6 113F,C7A6 -113F,C813 113F,C813 -113F,C880 113F,C880 -113F,C8ED 113F,C8ED -113F,C95A 113F,C95A -113F,C9C7 113F,C9C7 -113F,CA34 113F,CA34 -113F,CAA1 113F,CAA1 -113F,CB0D 113F,CB0D -113F,CB7A 113F,CB7A -113F,CBE7 113F,CBE7 -113F,CC54 113F,CC54 -113F,CCC1 113F,CCC1 -113F,CD2E 113F,CD2E -113F,CD9B 113F,CD9B -113F,CE08 113F,CE08 -113F,CE75 113F,CE75 -113F,CEE1 113F,CEE1 -113F,CF4E 113F,CF4E -113F,CFBB 113F,CFBB -113F,D028 113F,D028 -113F,D095 113F,D095 -113F,D102 113F,D102 -113F,D16F 113F,D16F -113F,D1DC 113F,D1DC -113F,D249 113F,D249 -113F,D2B5 113F,D2B5 -113F,D322 113F,D322 -113F,D38F 113F,D38F -113F,D3FC 113F,D3FC -113F,D469 113F,D469 -113F,D4D6 113F,D4D6 -113F,D543 113F,D543 -113F,D5B0 113F,D5B0 -113F,D61D 113F,D61D -113F,D689 113F,D689 -113F,D6F6 113F,D6F6 -113F,D763 113F,D763 -1140,AC01 1140,AC01 -1140,AC6D 1140,AC6D -1140,ACDA 1140,ACDA -1140,AD47 1140,AD47 -1140,ADB4 1140,ADB4 -1140,AE21 1140,AE21 -1140,AE8E 1140,AE8E -1140,AEFB 1140,AEFB -1140,AF68 1140,AF68 -1140,AFD5 1140,AFD5 -1140,B041 1140,B041 -1140,B0AE 1140,B0AE -1140,B11B 1140,B11B -1140,B188 1140,B188 -1140,B1F5 1140,B1F5 -1140,B262 1140,B262 -1140,B2CF 1140,B2CF -1140,B33C 1140,B33C -1140,B3A9 1140,B3A9 -1140,B415 1140,B415 -1140,B482 1140,B482 -1140,B4EF 1140,B4EF -1140,B55C 1140,B55C -1140,B5C9 1140,B5C9 -1140,B636 1140,B636 -1140,B6A3 1140,B6A3 -1140,B710 1140,B710 -1140,B77D 1140,B77D -1140,B7E9 1140,B7E9 -1140,B856 1140,B856 -1140,B8C3 1140,B8C3 -1140,B930 1140,B930 -1140,B99D 1140,B99D -1140,BA0A 1140,BA0A -1140,BA77 1140,BA77 -1140,BAE4 1140,BAE4 -1140,BB51 1140,BB51 -1140,BBBD 1140,BBBD -1140,BC2A 1140,BC2A -1140,BC97 1140,BC97 -1140,BD04 1140,BD04 -1140,BD71 1140,BD71 -1140,BDDE 1140,BDDE -1140,BE4B 1140,BE4B -1140,BEB8 1140,BEB8 -1140,BF25 1140,BF25 -1140,BF91 1140,BF91 -1140,BFFE 1140,BFFE -1140,C06B 1140,C06B -1140,C0D8 1140,C0D8 -1140,C145 1140,C145 -1140,C1B2 1140,C1B2 -1140,C21F 1140,C21F -1140,C28C 1140,C28C -1140,C2F9 1140,C2F9 -1140,C365 1140,C365 -1140,C3D2 1140,C3D2 -1140,C43F 1140,C43F -1140,C4AC 1140,C4AC -1140,C519 1140,C519 -1140,C586 1140,C586 -1140,C5F3 1140,C5F3 -1140,C660 1140,C660 -1140,C6CD 1140,C6CD -1140,C739 1140,C739 -1140,C7A6 1140,C7A6 -1140,C813 1140,C813 -1140,C880 1140,C880 -1140,C8ED 1140,C8ED -1140,C95A 1140,C95A -1140,C9C7 1140,C9C7 -1140,CA34 1140,CA34 -1140,CAA1 1140,CAA1 -1140,CB0D 1140,CB0D -1140,CB7A 1140,CB7A -1140,CBE7 1140,CBE7 -1140,CC54 1140,CC54 -1140,CCC1 1140,CCC1 -1140,CD2E 1140,CD2E -1140,CD9B 1140,CD9B -1140,CE08 1140,CE08 -1140,CE75 1140,CE75 -1140,CEE1 1140,CEE1 -1140,CF4E 1140,CF4E -1140,CFBB 1140,CFBB -1140,D028 1140,D028 -1140,D095 1140,D095 -1140,D102 1140,D102 -1140,D16F 1140,D16F -1140,D1DC 1140,D1DC -1140,D249 1140,D249 -1140,D2B5 1140,D2B5 -1140,D322 1140,D322 -1140,D38F 1140,D38F -1140,D3FC 1140,D3FC -1140,D469 1140,D469 -1140,D4D6 1140,D4D6 -1140,D543 1140,D543 -1140,D5B0 1140,D5B0 -1140,D61D 1140,D61D -1140,D689 1140,D689 -1140,D6F6 1140,D6F6 -1140,D763 1140,D763 -1141,AC01 1141,AC01 -1141,AC6D 1141,AC6D -1141,ACDA 1141,ACDA -1141,AD47 1141,AD47 -1141,ADB4 1141,ADB4 -1141,AE21 1141,AE21 -1141,AE8E 1141,AE8E -1141,AEFB 1141,AEFB -1141,AF68 1141,AF68 -1141,AFD5 1141,AFD5 -1141,B041 1141,B041 -1141,B0AE 1141,B0AE -1141,B11B 1141,B11B -1141,B188 1141,B188 -1141,B1F5 1141,B1F5 -1141,B262 1141,B262 -1141,B2CF 1141,B2CF -1141,B33C 1141,B33C -1141,B3A9 1141,B3A9 -1141,B415 1141,B415 -1141,B482 1141,B482 -1141,B4EF 1141,B4EF -1141,B55C 1141,B55C -1141,B5C9 1141,B5C9 -1141,B636 1141,B636 -1141,B6A3 1141,B6A3 -1141,B710 1141,B710 -1141,B77D 1141,B77D -1141,B7E9 1141,B7E9 -1141,B856 1141,B856 -1141,B8C3 1141,B8C3 -1141,B930 1141,B930 -1141,B99D 1141,B99D -1141,BA0A 1141,BA0A -1141,BA77 1141,BA77 -1141,BAE4 1141,BAE4 -1141,BB51 1141,BB51 -1141,BBBD 1141,BBBD -1141,BC2A 1141,BC2A -1141,BC97 1141,BC97 -1141,BD04 1141,BD04 -1141,BD71 1141,BD71 -1141,BDDE 1141,BDDE -1141,BE4B 1141,BE4B -1141,BEB8 1141,BEB8 -1141,BF25 1141,BF25 -1141,BF91 1141,BF91 -1141,BFFE 1141,BFFE -1141,C06B 1141,C06B -1141,C0D8 1141,C0D8 -1141,C145 1141,C145 -1141,C1B2 1141,C1B2 -1141,C21F 1141,C21F -1141,C28C 1141,C28C -1141,C2F9 1141,C2F9 -1141,C365 1141,C365 -1141,C3D2 1141,C3D2 -1141,C43F 1141,C43F -1141,C4AC 1141,C4AC -1141,C519 1141,C519 -1141,C586 1141,C586 -1141,C5F3 1141,C5F3 -1141,C660 1141,C660 -1141,C6CD 1141,C6CD -1141,C739 1141,C739 -1141,C7A6 1141,C7A6 -1141,C813 1141,C813 -1141,C880 1141,C880 -1141,C8ED 1141,C8ED -1141,C95A 1141,C95A -1141,C9C7 1141,C9C7 -1141,CA34 1141,CA34 -1141,CAA1 1141,CAA1 -1141,CB0D 1141,CB0D -1141,CB7A 1141,CB7A -1141,CBE7 1141,CBE7 -1141,CC54 1141,CC54 -1141,CCC1 1141,CCC1 -1141,CD2E 1141,CD2E -1141,CD9B 1141,CD9B -1141,CE08 1141,CE08 -1141,CE75 1141,CE75 -1141,CEE1 1141,CEE1 -1141,CF4E 1141,CF4E -1141,CFBB 1141,CFBB -1141,D028 1141,D028 -1141,D095 1141,D095 -1141,D102 1141,D102 -1141,D16F 1141,D16F -1141,D1DC 1141,D1DC -1141,D249 1141,D249 -1141,D2B5 1141,D2B5 -1141,D322 1141,D322 -1141,D38F 1141,D38F -1141,D3FC 1141,D3FC -1141,D469 1141,D469 -1141,D4D6 1141,D4D6 -1141,D543 1141,D543 -1141,D5B0 1141,D5B0 -1141,D61D 1141,D61D -1141,D689 1141,D689 -1141,D6F6 1141,D6F6 -1141,D763 1141,D763 -1142,AC01 1142,AC01 -1142,AC6D 1142,AC6D -1142,ACDA 1142,ACDA -1142,AD47 1142,AD47 -1142,ADB4 1142,ADB4 -1142,AE21 1142,AE21 -1142,AE8E 1142,AE8E -1142,AEFB 1142,AEFB -1142,AF68 1142,AF68 -1142,AFD5 1142,AFD5 -1142,B041 1142,B041 -1142,B0AE 1142,B0AE -1142,B11B 1142,B11B -1142,B188 1142,B188 -1142,B1F5 1142,B1F5 -1142,B262 1142,B262 -1142,B2CF 1142,B2CF -1142,B33C 1142,B33C -1142,B3A9 1142,B3A9 -1142,B415 1142,B415 -1142,B482 1142,B482 -1142,B4EF 1142,B4EF -1142,B55C 1142,B55C -1142,B5C9 1142,B5C9 -1142,B636 1142,B636 -1142,B6A3 1142,B6A3 -1142,B710 1142,B710 -1142,B77D 1142,B77D -1142,B7E9 1142,B7E9 -1142,B856 1142,B856 -1142,B8C3 1142,B8C3 -1142,B930 1142,B930 -1142,B99D 1142,B99D -1142,BA0A 1142,BA0A -1142,BA77 1142,BA77 -1142,BAE4 1142,BAE4 -1142,BB51 1142,BB51 -1142,BBBD 1142,BBBD -1142,BC2A 1142,BC2A -1142,BC97 1142,BC97 -1142,BD04 1142,BD04 -1142,BD71 1142,BD71 -1142,BDDE 1142,BDDE -1142,BE4B 1142,BE4B -1142,BEB8 1142,BEB8 -1142,BF25 1142,BF25 -1142,BF91 1142,BF91 -1142,BFFE 1142,BFFE -1142,C06B 1142,C06B -1142,C0D8 1142,C0D8 -1142,C145 1142,C145 -1142,C1B2 1142,C1B2 -1142,C21F 1142,C21F -1142,C28C 1142,C28C -1142,C2F9 1142,C2F9 -1142,C365 1142,C365 -1142,C3D2 1142,C3D2 -1142,C43F 1142,C43F -1142,C4AC 1142,C4AC -1142,C519 1142,C519 -1142,C586 1142,C586 -1142,C5F3 1142,C5F3 -1142,C660 1142,C660 -1142,C6CD 1142,C6CD -1142,C739 1142,C739 -1142,C7A6 1142,C7A6 -1142,C813 1142,C813 -1142,C880 1142,C880 -1142,C8ED 1142,C8ED -1142,C95A 1142,C95A -1142,C9C7 1142,C9C7 -1142,CA34 1142,CA34 -1142,CAA1 1142,CAA1 -1142,CB0D 1142,CB0D -1142,CB7A 1142,CB7A -1142,CBE7 1142,CBE7 -1142,CC54 1142,CC54 -1142,CCC1 1142,CCC1 -1142,CD2E 1142,CD2E -1142,CD9B 1142,CD9B -1142,CE08 1142,CE08 -1142,CE75 1142,CE75 -1142,CEE1 1142,CEE1 -1142,CF4E 1142,CF4E -1142,CFBB 1142,CFBB -1142,D028 1142,D028 -1142,D095 1142,D095 -1142,D102 1142,D102 -1142,D16F 1142,D16F -1142,D1DC 1142,D1DC -1142,D249 1142,D249 -1142,D2B5 1142,D2B5 -1142,D322 1142,D322 -1142,D38F 1142,D38F -1142,D3FC 1142,D3FC -1142,D469 1142,D469 -1142,D4D6 1142,D4D6 -1142,D543 1142,D543 -1142,D5B0 1142,D5B0 -1142,D61D 1142,D61D -1142,D689 1142,D689 -1142,D6F6 1142,D6F6 -1142,D763 1142,D763 -1143,AC01 1143,AC01 -1143,AC6D 1143,AC6D -1143,ACDA 1143,ACDA -1143,AD47 1143,AD47 -1143,ADB4 1143,ADB4 -1143,AE21 1143,AE21 -1143,AE8E 1143,AE8E -1143,AEFB 1143,AEFB -1143,AF68 1143,AF68 -1143,AFD5 1143,AFD5 -1143,B041 1143,B041 -1143,B0AE 1143,B0AE -1143,B11B 1143,B11B -1143,B188 1143,B188 -1143,B1F5 1143,B1F5 -1143,B262 1143,B262 -1143,B2CF 1143,B2CF -1143,B33C 1143,B33C -1143,B3A9 1143,B3A9 -1143,B415 1143,B415 -1143,B482 1143,B482 -1143,B4EF 1143,B4EF -1143,B55C 1143,B55C -1143,B5C9 1143,B5C9 -1143,B636 1143,B636 -1143,B6A3 1143,B6A3 -1143,B710 1143,B710 -1143,B77D 1143,B77D -1143,B7E9 1143,B7E9 -1143,B856 1143,B856 -1143,B8C3 1143,B8C3 -1143,B930 1143,B930 -1143,B99D 1143,B99D -1143,BA0A 1143,BA0A -1143,BA77 1143,BA77 -1143,BAE4 1143,BAE4 -1143,BB51 1143,BB51 -1143,BBBD 1143,BBBD -1143,BC2A 1143,BC2A -1143,BC97 1143,BC97 -1143,BD04 1143,BD04 -1143,BD71 1143,BD71 -1143,BDDE 1143,BDDE -1143,BE4B 1143,BE4B -1143,BEB8 1143,BEB8 -1143,BF25 1143,BF25 -1143,BF91 1143,BF91 -1143,BFFE 1143,BFFE -1143,C06B 1143,C06B -1143,C0D8 1143,C0D8 -1143,C145 1143,C145 -1143,C1B2 1143,C1B2 -1143,C21F 1143,C21F -1143,C28C 1143,C28C -1143,C2F9 1143,C2F9 -1143,C365 1143,C365 -1143,C3D2 1143,C3D2 -1143,C43F 1143,C43F -1143,C4AC 1143,C4AC -1143,C519 1143,C519 -1143,C586 1143,C586 -1143,C5F3 1143,C5F3 -1143,C660 1143,C660 -1143,C6CD 1143,C6CD -1143,C739 1143,C739 -1143,C7A6 1143,C7A6 -1143,C813 1143,C813 -1143,C880 1143,C880 -1143,C8ED 1143,C8ED -1143,C95A 1143,C95A -1143,C9C7 1143,C9C7 -1143,CA34 1143,CA34 -1143,CAA1 1143,CAA1 -1143,CB0D 1143,CB0D -1143,CB7A 1143,CB7A -1143,CBE7 1143,CBE7 -1143,CC54 1143,CC54 -1143,CCC1 1143,CCC1 -1143,CD2E 1143,CD2E -1143,CD9B 1143,CD9B -1143,CE08 1143,CE08 -1143,CE75 1143,CE75 -1143,CEE1 1143,CEE1 -1143,CF4E 1143,CF4E -1143,CFBB 1143,CFBB -1143,D028 1143,D028 -1143,D095 1143,D095 -1143,D102 1143,D102 -1143,D16F 1143,D16F -1143,D1DC 1143,D1DC -1143,D249 1143,D249 -1143,D2B5 1143,D2B5 -1143,D322 1143,D322 -1143,D38F 1143,D38F -1143,D3FC 1143,D3FC -1143,D469 1143,D469 -1143,D4D6 1143,D4D6 -1143,D543 1143,D543 -1143,D5B0 1143,D5B0 -1143,D61D 1143,D61D -1143,D689 1143,D689 -1143,D6F6 1143,D6F6 -1143,D763 1143,D763 -1144,AC01 1144,AC01 -1144,AC6D 1144,AC6D -1144,ACDA 1144,ACDA -1144,AD47 1144,AD47 -1144,ADB4 1144,ADB4 -1144,AE21 1144,AE21 -1144,AE8E 1144,AE8E -1144,AEFB 1144,AEFB -1144,AF68 1144,AF68 -1144,AFD5 1144,AFD5 -1144,B041 1144,B041 -1144,B0AE 1144,B0AE -1144,B11B 1144,B11B -1144,B188 1144,B188 -1144,B1F5 1144,B1F5 -1144,B262 1144,B262 -1144,B2CF 1144,B2CF -1144,B33C 1144,B33C -1144,B3A9 1144,B3A9 -1144,B415 1144,B415 -1144,B482 1144,B482 -1144,B4EF 1144,B4EF -1144,B55C 1144,B55C -1144,B5C9 1144,B5C9 -1144,B636 1144,B636 -1144,B6A3 1144,B6A3 -1144,B710 1144,B710 -1144,B77D 1144,B77D -1144,B7E9 1144,B7E9 -1144,B856 1144,B856 -1144,B8C3 1144,B8C3 -1144,B930 1144,B930 -1144,B99D 1144,B99D -1144,BA0A 1144,BA0A -1144,BA77 1144,BA77 -1144,BAE4 1144,BAE4 -1144,BB51 1144,BB51 -1144,BBBD 1144,BBBD -1144,BC2A 1144,BC2A -1144,BC97 1144,BC97 -1144,BD04 1144,BD04 -1144,BD71 1144,BD71 -1144,BDDE 1144,BDDE -1144,BE4B 1144,BE4B -1144,BEB8 1144,BEB8 -1144,BF25 1144,BF25 -1144,BF91 1144,BF91 -1144,BFFE 1144,BFFE -1144,C06B 1144,C06B -1144,C0D8 1144,C0D8 -1144,C145 1144,C145 -1144,C1B2 1144,C1B2 -1144,C21F 1144,C21F -1144,C28C 1144,C28C -1144,C2F9 1144,C2F9 -1144,C365 1144,C365 -1144,C3D2 1144,C3D2 -1144,C43F 1144,C43F -1144,C4AC 1144,C4AC -1144,C519 1144,C519 -1144,C586 1144,C586 -1144,C5F3 1144,C5F3 -1144,C660 1144,C660 -1144,C6CD 1144,C6CD -1144,C739 1144,C739 -1144,C7A6 1144,C7A6 -1144,C813 1144,C813 -1144,C880 1144,C880 -1144,C8ED 1144,C8ED -1144,C95A 1144,C95A -1144,C9C7 1144,C9C7 -1144,CA34 1144,CA34 -1144,CAA1 1144,CAA1 -1144,CB0D 1144,CB0D -1144,CB7A 1144,CB7A -1144,CBE7 1144,CBE7 -1144,CC54 1144,CC54 -1144,CCC1 1144,CCC1 -1144,CD2E 1144,CD2E -1144,CD9B 1144,CD9B -1144,CE08 1144,CE08 -1144,CE75 1144,CE75 -1144,CEE1 1144,CEE1 -1144,CF4E 1144,CF4E -1144,CFBB 1144,CFBB -1144,D028 1144,D028 -1144,D095 1144,D095 -1144,D102 1144,D102 -1144,D16F 1144,D16F -1144,D1DC 1144,D1DC -1144,D249 1144,D249 -1144,D2B5 1144,D2B5 -1144,D322 1144,D322 -1144,D38F 1144,D38F -1144,D3FC 1144,D3FC -1144,D469 1144,D469 -1144,D4D6 1144,D4D6 -1144,D543 1144,D543 -1144,D5B0 1144,D5B0 -1144,D61D 1144,D61D -1144,D689 1144,D689 -1144,D6F6 1144,D6F6 -1144,D763 1144,D763 -1145,AC01 1145,AC01 -1145,AC6D 1145,AC6D -1145,ACDA 1145,ACDA -1145,AD47 1145,AD47 -1145,ADB4 1145,ADB4 -1145,AE21 1145,AE21 -1145,AE8E 1145,AE8E -1145,AEFB 1145,AEFB -1145,AF68 1145,AF68 -1145,AFD5 1145,AFD5 -1145,B041 1145,B041 -1145,B0AE 1145,B0AE -1145,B11B 1145,B11B -1145,B188 1145,B188 -1145,B1F5 1145,B1F5 -1145,B262 1145,B262 -1145,B2CF 1145,B2CF -1145,B33C 1145,B33C -1145,B3A9 1145,B3A9 -1145,B415 1145,B415 -1145,B482 1145,B482 -1145,B4EF 1145,B4EF -1145,B55C 1145,B55C -1145,B5C9 1145,B5C9 -1145,B636 1145,B636 -1145,B6A3 1145,B6A3 -1145,B710 1145,B710 -1145,B77D 1145,B77D -1145,B7E9 1145,B7E9 -1145,B856 1145,B856 -1145,B8C3 1145,B8C3 -1145,B930 1145,B930 -1145,B99D 1145,B99D -1145,BA0A 1145,BA0A -1145,BA77 1145,BA77 -1145,BAE4 1145,BAE4 -1145,BB51 1145,BB51 -1145,BBBD 1145,BBBD -1145,BC2A 1145,BC2A -1145,BC97 1145,BC97 -1145,BD04 1145,BD04 -1145,BD71 1145,BD71 -1145,BDDE 1145,BDDE -1145,BE4B 1145,BE4B -1145,BEB8 1145,BEB8 -1145,BF25 1145,BF25 -1145,BF91 1145,BF91 -1145,BFFE 1145,BFFE -1145,C06B 1145,C06B -1145,C0D8 1145,C0D8 -1145,C145 1145,C145 -1145,C1B2 1145,C1B2 -1145,C21F 1145,C21F -1145,C28C 1145,C28C -1145,C2F9 1145,C2F9 -1145,C365 1145,C365 -1145,C3D2 1145,C3D2 -1145,C43F 1145,C43F -1145,C4AC 1145,C4AC -1145,C519 1145,C519 -1145,C586 1145,C586 -1145,C5F3 1145,C5F3 -1145,C660 1145,C660 -1145,C6CD 1145,C6CD -1145,C739 1145,C739 -1145,C7A6 1145,C7A6 -1145,C813 1145,C813 -1145,C880 1145,C880 -1145,C8ED 1145,C8ED -1145,C95A 1145,C95A -1145,C9C7 1145,C9C7 -1145,CA34 1145,CA34 -1145,CAA1 1145,CAA1 -1145,CB0D 1145,CB0D -1145,CB7A 1145,CB7A -1145,CBE7 1145,CBE7 -1145,CC54 1145,CC54 -1145,CCC1 1145,CCC1 -1145,CD2E 1145,CD2E -1145,CD9B 1145,CD9B -1145,CE08 1145,CE08 -1145,CE75 1145,CE75 -1145,CEE1 1145,CEE1 -1145,CF4E 1145,CF4E -1145,CFBB 1145,CFBB -1145,D028 1145,D028 -1145,D095 1145,D095 -1145,D102 1145,D102 -1145,D16F 1145,D16F -1145,D1DC 1145,D1DC -1145,D249 1145,D249 -1145,D2B5 1145,D2B5 -1145,D322 1145,D322 -1145,D38F 1145,D38F -1145,D3FC 1145,D3FC -1145,D469 1145,D469 -1145,D4D6 1145,D4D6 -1145,D543 1145,D543 -1145,D5B0 1145,D5B0 -1145,D61D 1145,D61D -1145,D689 1145,D689 -1145,D6F6 1145,D6F6 -1145,D763 1145,D763 -1146,AC01 1146,AC01 -1146,AC6D 1146,AC6D -1146,ACDA 1146,ACDA -1146,AD47 1146,AD47 -1146,ADB4 1146,ADB4 -1146,AE21 1146,AE21 -1146,AE8E 1146,AE8E -1146,AEFB 1146,AEFB -1146,AF68 1146,AF68 -1146,AFD5 1146,AFD5 -1146,B041 1146,B041 -1146,B0AE 1146,B0AE -1146,B11B 1146,B11B -1146,B188 1146,B188 -1146,B1F5 1146,B1F5 -1146,B262 1146,B262 -1146,B2CF 1146,B2CF -1146,B33C 1146,B33C -1146,B3A9 1146,B3A9 -1146,B415 1146,B415 -1146,B482 1146,B482 -1146,B4EF 1146,B4EF -1146,B55C 1146,B55C -1146,B5C9 1146,B5C9 -1146,B636 1146,B636 -1146,B6A3 1146,B6A3 -1146,B710 1146,B710 -1146,B77D 1146,B77D -1146,B7E9 1146,B7E9 -1146,B856 1146,B856 -1146,B8C3 1146,B8C3 -1146,B930 1146,B930 -1146,B99D 1146,B99D -1146,BA0A 1146,BA0A -1146,BA77 1146,BA77 -1146,BAE4 1146,BAE4 -1146,BB51 1146,BB51 -1146,BBBD 1146,BBBD -1146,BC2A 1146,BC2A -1146,BC97 1146,BC97 -1146,BD04 1146,BD04 -1146,BD71 1146,BD71 -1146,BDDE 1146,BDDE -1146,BE4B 1146,BE4B -1146,BEB8 1146,BEB8 -1146,BF25 1146,BF25 -1146,BF91 1146,BF91 -1146,BFFE 1146,BFFE -1146,C06B 1146,C06B -1146,C0D8 1146,C0D8 -1146,C145 1146,C145 -1146,C1B2 1146,C1B2 -1146,C21F 1146,C21F -1146,C28C 1146,C28C -1146,C2F9 1146,C2F9 -1146,C365 1146,C365 -1146,C3D2 1146,C3D2 -1146,C43F 1146,C43F -1146,C4AC 1146,C4AC -1146,C519 1146,C519 -1146,C586 1146,C586 -1146,C5F3 1146,C5F3 -1146,C660 1146,C660 -1146,C6CD 1146,C6CD -1146,C739 1146,C739 -1146,C7A6 1146,C7A6 -1146,C813 1146,C813 -1146,C880 1146,C880 -1146,C8ED 1146,C8ED -1146,C95A 1146,C95A -1146,C9C7 1146,C9C7 -1146,CA34 1146,CA34 -1146,CAA1 1146,CAA1 -1146,CB0D 1146,CB0D -1146,CB7A 1146,CB7A -1146,CBE7 1146,CBE7 -1146,CC54 1146,CC54 -1146,CCC1 1146,CCC1 -1146,CD2E 1146,CD2E -1146,CD9B 1146,CD9B -1146,CE08 1146,CE08 -1146,CE75 1146,CE75 -1146,CEE1 1146,CEE1 -1146,CF4E 1146,CF4E -1146,CFBB 1146,CFBB -1146,D028 1146,D028 -1146,D095 1146,D095 -1146,D102 1146,D102 -1146,D16F 1146,D16F -1146,D1DC 1146,D1DC -1146,D249 1146,D249 -1146,D2B5 1146,D2B5 -1146,D322 1146,D322 -1146,D38F 1146,D38F -1146,D3FC 1146,D3FC -1146,D469 1146,D469 -1146,D4D6 1146,D4D6 -1146,D543 1146,D543 -1146,D5B0 1146,D5B0 -1146,D61D 1146,D61D -1146,D689 1146,D689 -1146,D6F6 1146,D6F6 -1146,D763 1146,D763 -1147,AC01 1147,AC01 -1147,AC6D 1147,AC6D -1147,ACDA 1147,ACDA -1147,AD47 1147,AD47 -1147,ADB4 1147,ADB4 -1147,AE21 1147,AE21 -1147,AE8E 1147,AE8E -1147,AEFB 1147,AEFB -1147,AF68 1147,AF68 -1147,AFD5 1147,AFD5 -1147,B041 1147,B041 -1147,B0AE 1147,B0AE -1147,B11B 1147,B11B -1147,B188 1147,B188 -1147,B1F5 1147,B1F5 -1147,B262 1147,B262 -1147,B2CF 1147,B2CF -1147,B33C 1147,B33C -1147,B3A9 1147,B3A9 -1147,B415 1147,B415 -1147,B482 1147,B482 -1147,B4EF 1147,B4EF -1147,B55C 1147,B55C -1147,B5C9 1147,B5C9 -1147,B636 1147,B636 -1147,B6A3 1147,B6A3 -1147,B710 1147,B710 -1147,B77D 1147,B77D -1147,B7E9 1147,B7E9 -1147,B856 1147,B856 -1147,B8C3 1147,B8C3 -1147,B930 1147,B930 -1147,B99D 1147,B99D -1147,BA0A 1147,BA0A -1147,BA77 1147,BA77 -1147,BAE4 1147,BAE4 -1147,BB51 1147,BB51 -1147,BBBD 1147,BBBD -1147,BC2A 1147,BC2A -1147,BC97 1147,BC97 -1147,BD04 1147,BD04 -1147,BD71 1147,BD71 -1147,BDDE 1147,BDDE -1147,BE4B 1147,BE4B -1147,BEB8 1147,BEB8 -1147,BF25 1147,BF25 -1147,BF91 1147,BF91 -1147,BFFE 1147,BFFE -1147,C06B 1147,C06B -1147,C0D8 1147,C0D8 -1147,C145 1147,C145 -1147,C1B2 1147,C1B2 -1147,C21F 1147,C21F -1147,C28C 1147,C28C -1147,C2F9 1147,C2F9 -1147,C365 1147,C365 -1147,C3D2 1147,C3D2 -1147,C43F 1147,C43F -1147,C4AC 1147,C4AC -1147,C519 1147,C519 -1147,C586 1147,C586 -1147,C5F3 1147,C5F3 -1147,C660 1147,C660 -1147,C6CD 1147,C6CD -1147,C739 1147,C739 -1147,C7A6 1147,C7A6 -1147,C813 1147,C813 -1147,C880 1147,C880 -1147,C8ED 1147,C8ED -1147,C95A 1147,C95A -1147,C9C7 1147,C9C7 -1147,CA34 1147,CA34 -1147,CAA1 1147,CAA1 -1147,CB0D 1147,CB0D -1147,CB7A 1147,CB7A -1147,CBE7 1147,CBE7 -1147,CC54 1147,CC54 -1147,CCC1 1147,CCC1 -1147,CD2E 1147,CD2E -1147,CD9B 1147,CD9B -1147,CE08 1147,CE08 -1147,CE75 1147,CE75 -1147,CEE1 1147,CEE1 -1147,CF4E 1147,CF4E -1147,CFBB 1147,CFBB -1147,D028 1147,D028 -1147,D095 1147,D095 -1147,D102 1147,D102 -1147,D16F 1147,D16F -1147,D1DC 1147,D1DC -1147,D249 1147,D249 -1147,D2B5 1147,D2B5 -1147,D322 1147,D322 -1147,D38F 1147,D38F -1147,D3FC 1147,D3FC -1147,D469 1147,D469 -1147,D4D6 1147,D4D6 -1147,D543 1147,D543 -1147,D5B0 1147,D5B0 -1147,D61D 1147,D61D -1147,D689 1147,D689 -1147,D6F6 1147,D6F6 -1147,D763 1147,D763 -1148,AC01 1148,AC01 -1148,AC6D 1148,AC6D -1148,ACDA 1148,ACDA -1148,AD47 1148,AD47 -1148,ADB4 1148,ADB4 -1148,AE21 1148,AE21 -1148,AE8E 1148,AE8E -1148,AEFB 1148,AEFB -1148,AF68 1148,AF68 -1148,AFD5 1148,AFD5 -1148,B041 1148,B041 -1148,B0AE 1148,B0AE -1148,B11B 1148,B11B -1148,B188 1148,B188 -1148,B1F5 1148,B1F5 -1148,B262 1148,B262 -1148,B2CF 1148,B2CF -1148,B33C 1148,B33C -1148,B3A9 1148,B3A9 -1148,B415 1148,B415 -1148,B482 1148,B482 -1148,B4EF 1148,B4EF -1148,B55C 1148,B55C -1148,B5C9 1148,B5C9 -1148,B636 1148,B636 -1148,B6A3 1148,B6A3 -1148,B710 1148,B710 -1148,B77D 1148,B77D -1148,B7E9 1148,B7E9 -1148,B856 1148,B856 -1148,B8C3 1148,B8C3 -1148,B930 1148,B930 -1148,B99D 1148,B99D -1148,BA0A 1148,BA0A -1148,BA77 1148,BA77 -1148,BAE4 1148,BAE4 -1148,BB51 1148,BB51 -1148,BBBD 1148,BBBD -1148,BC2A 1148,BC2A -1148,BC97 1148,BC97 -1148,BD04 1148,BD04 -1148,BD71 1148,BD71 -1148,BDDE 1148,BDDE -1148,BE4B 1148,BE4B -1148,BEB8 1148,BEB8 -1148,BF25 1148,BF25 -1148,BF91 1148,BF91 -1148,BFFE 1148,BFFE -1148,C06B 1148,C06B -1148,C0D8 1148,C0D8 -1148,C145 1148,C145 -1148,C1B2 1148,C1B2 -1148,C21F 1148,C21F -1148,C28C 1148,C28C -1148,C2F9 1148,C2F9 -1148,C365 1148,C365 -1148,C3D2 1148,C3D2 -1148,C43F 1148,C43F -1148,C4AC 1148,C4AC -1148,C519 1148,C519 -1148,C586 1148,C586 -1148,C5F3 1148,C5F3 -1148,C660 1148,C660 -1148,C6CD 1148,C6CD -1148,C739 1148,C739 -1148,C7A6 1148,C7A6 -1148,C813 1148,C813 -1148,C880 1148,C880 -1148,C8ED 1148,C8ED -1148,C95A 1148,C95A -1148,C9C7 1148,C9C7 -1148,CA34 1148,CA34 -1148,CAA1 1148,CAA1 -1148,CB0D 1148,CB0D -1148,CB7A 1148,CB7A -1148,CBE7 1148,CBE7 -1148,CC54 1148,CC54 -1148,CCC1 1148,CCC1 -1148,CD2E 1148,CD2E -1148,CD9B 1148,CD9B -1148,CE08 1148,CE08 -1148,CE75 1148,CE75 -1148,CEE1 1148,CEE1 -1148,CF4E 1148,CF4E -1148,CFBB 1148,CFBB -1148,D028 1148,D028 -1148,D095 1148,D095 -1148,D102 1148,D102 -1148,D16F 1148,D16F -1148,D1DC 1148,D1DC -1148,D249 1148,D249 -1148,D2B5 1148,D2B5 -1148,D322 1148,D322 -1148,D38F 1148,D38F -1148,D3FC 1148,D3FC -1148,D469 1148,D469 -1148,D4D6 1148,D4D6 -1148,D543 1148,D543 -1148,D5B0 1148,D5B0 -1148,D61D 1148,D61D -1148,D689 1148,D689 -1148,D6F6 1148,D6F6 -1148,D763 1148,D763 -1149,AC01 1149,AC01 -1149,AC6D 1149,AC6D -1149,ACDA 1149,ACDA -1149,AD47 1149,AD47 -1149,ADB4 1149,ADB4 -1149,AE21 1149,AE21 -1149,AE8E 1149,AE8E -1149,AEFB 1149,AEFB -1149,AF68 1149,AF68 -1149,AFD5 1149,AFD5 -1149,B041 1149,B041 -1149,B0AE 1149,B0AE -1149,B11B 1149,B11B -1149,B188 1149,B188 -1149,B1F5 1149,B1F5 -1149,B262 1149,B262 -1149,B2CF 1149,B2CF -1149,B33C 1149,B33C -1149,B3A9 1149,B3A9 -1149,B415 1149,B415 -1149,B482 1149,B482 -1149,B4EF 1149,B4EF -1149,B55C 1149,B55C -1149,B5C9 1149,B5C9 -1149,B636 1149,B636 -1149,B6A3 1149,B6A3 -1149,B710 1149,B710 -1149,B77D 1149,B77D -1149,B7E9 1149,B7E9 -1149,B856 1149,B856 -1149,B8C3 1149,B8C3 -1149,B930 1149,B930 -1149,B99D 1149,B99D -1149,BA0A 1149,BA0A -1149,BA77 1149,BA77 -1149,BAE4 1149,BAE4 -1149,BB51 1149,BB51 -1149,BBBD 1149,BBBD -1149,BC2A 1149,BC2A -1149,BC97 1149,BC97 -1149,BD04 1149,BD04 -1149,BD71 1149,BD71 -1149,BDDE 1149,BDDE -1149,BE4B 1149,BE4B -1149,BEB8 1149,BEB8 -1149,BF25 1149,BF25 -1149,BF91 1149,BF91 -1149,BFFE 1149,BFFE -1149,C06B 1149,C06B -1149,C0D8 1149,C0D8 -1149,C145 1149,C145 -1149,C1B2 1149,C1B2 -1149,C21F 1149,C21F -1149,C28C 1149,C28C -1149,C2F9 1149,C2F9 -1149,C365 1149,C365 -1149,C3D2 1149,C3D2 -1149,C43F 1149,C43F -1149,C4AC 1149,C4AC -1149,C519 1149,C519 -1149,C586 1149,C586 -1149,C5F3 1149,C5F3 -1149,C660 1149,C660 -1149,C6CD 1149,C6CD -1149,C739 1149,C739 -1149,C7A6 1149,C7A6 -1149,C813 1149,C813 -1149,C880 1149,C880 -1149,C8ED 1149,C8ED -1149,C95A 1149,C95A -1149,C9C7 1149,C9C7 -1149,CA34 1149,CA34 -1149,CAA1 1149,CAA1 -1149,CB0D 1149,CB0D -1149,CB7A 1149,CB7A -1149,CBE7 1149,CBE7 -1149,CC54 1149,CC54 -1149,CCC1 1149,CCC1 -1149,CD2E 1149,CD2E -1149,CD9B 1149,CD9B -1149,CE08 1149,CE08 -1149,CE75 1149,CE75 -1149,CEE1 1149,CEE1 -1149,CF4E 1149,CF4E -1149,CFBB 1149,CFBB -1149,D028 1149,D028 -1149,D095 1149,D095 -1149,D102 1149,D102 -1149,D16F 1149,D16F -1149,D1DC 1149,D1DC -1149,D249 1149,D249 -1149,D2B5 1149,D2B5 -1149,D322 1149,D322 -1149,D38F 1149,D38F -1149,D3FC 1149,D3FC -1149,D469 1149,D469 -1149,D4D6 1149,D4D6 -1149,D543 1149,D543 -1149,D5B0 1149,D5B0 -1149,D61D 1149,D61D -1149,D689 1149,D689 -1149,D6F6 1149,D6F6 -1149,D763 1149,D763 -114A,AC01 114A,AC01 -114A,AC6D 114A,AC6D -114A,ACDA 114A,ACDA -114A,AD47 114A,AD47 -114A,ADB4 114A,ADB4 -114A,AE21 114A,AE21 -114A,AE8E 114A,AE8E -114A,AEFB 114A,AEFB -114A,AF68 114A,AF68 -114A,AFD5 114A,AFD5 -114A,B041 114A,B041 -114A,B0AE 114A,B0AE -114A,B11B 114A,B11B -114A,B188 114A,B188 -114A,B1F5 114A,B1F5 -114A,B262 114A,B262 -114A,B2CF 114A,B2CF -114A,B33C 114A,B33C -114A,B3A9 114A,B3A9 -114A,B415 114A,B415 -114A,B482 114A,B482 -114A,B4EF 114A,B4EF -114A,B55C 114A,B55C -114A,B5C9 114A,B5C9 -114A,B636 114A,B636 -114A,B6A3 114A,B6A3 -114A,B710 114A,B710 -114A,B77D 114A,B77D -114A,B7E9 114A,B7E9 -114A,B856 114A,B856 -114A,B8C3 114A,B8C3 -114A,B930 114A,B930 -114A,B99D 114A,B99D -114A,BA0A 114A,BA0A -114A,BA77 114A,BA77 -114A,BAE4 114A,BAE4 -114A,BB51 114A,BB51 -114A,BBBD 114A,BBBD -114A,BC2A 114A,BC2A -114A,BC97 114A,BC97 -114A,BD04 114A,BD04 -114A,BD71 114A,BD71 -114A,BDDE 114A,BDDE -114A,BE4B 114A,BE4B -114A,BEB8 114A,BEB8 -114A,BF25 114A,BF25 -114A,BF91 114A,BF91 -114A,BFFE 114A,BFFE -114A,C06B 114A,C06B -114A,C0D8 114A,C0D8 -114A,C145 114A,C145 -114A,C1B2 114A,C1B2 -114A,C21F 114A,C21F -114A,C28C 114A,C28C -114A,C2F9 114A,C2F9 -114A,C365 114A,C365 -114A,C3D2 114A,C3D2 -114A,C43F 114A,C43F -114A,C4AC 114A,C4AC -114A,C519 114A,C519 -114A,C586 114A,C586 -114A,C5F3 114A,C5F3 -114A,C660 114A,C660 -114A,C6CD 114A,C6CD -114A,C739 114A,C739 -114A,C7A6 114A,C7A6 -114A,C813 114A,C813 -114A,C880 114A,C880 -114A,C8ED 114A,C8ED -114A,C95A 114A,C95A -114A,C9C7 114A,C9C7 -114A,CA34 114A,CA34 -114A,CAA1 114A,CAA1 -114A,CB0D 114A,CB0D -114A,CB7A 114A,CB7A -114A,CBE7 114A,CBE7 -114A,CC54 114A,CC54 -114A,CCC1 114A,CCC1 -114A,CD2E 114A,CD2E -114A,CD9B 114A,CD9B -114A,CE08 114A,CE08 -114A,CE75 114A,CE75 -114A,CEE1 114A,CEE1 -114A,CF4E 114A,CF4E -114A,CFBB 114A,CFBB -114A,D028 114A,D028 -114A,D095 114A,D095 -114A,D102 114A,D102 -114A,D16F 114A,D16F -114A,D1DC 114A,D1DC -114A,D249 114A,D249 -114A,D2B5 114A,D2B5 -114A,D322 114A,D322 -114A,D38F 114A,D38F -114A,D3FC 114A,D3FC -114A,D469 114A,D469 -114A,D4D6 114A,D4D6 -114A,D543 114A,D543 -114A,D5B0 114A,D5B0 -114A,D61D 114A,D61D -114A,D689 114A,D689 -114A,D6F6 114A,D6F6 -114A,D763 114A,D763 -114B,AC01 114B,AC01 -114B,AC6D 114B,AC6D -114B,ACDA 114B,ACDA -114B,AD47 114B,AD47 -114B,ADB4 114B,ADB4 -114B,AE21 114B,AE21 -114B,AE8E 114B,AE8E -114B,AEFB 114B,AEFB -114B,AF68 114B,AF68 -114B,AFD5 114B,AFD5 -114B,B041 114B,B041 -114B,B0AE 114B,B0AE -114B,B11B 114B,B11B -114B,B188 114B,B188 -114B,B1F5 114B,B1F5 -114B,B262 114B,B262 -114B,B2CF 114B,B2CF -114B,B33C 114B,B33C -114B,B3A9 114B,B3A9 -114B,B415 114B,B415 -114B,B482 114B,B482 -114B,B4EF 114B,B4EF -114B,B55C 114B,B55C -114B,B5C9 114B,B5C9 -114B,B636 114B,B636 -114B,B6A3 114B,B6A3 -114B,B710 114B,B710 -114B,B77D 114B,B77D -114B,B7E9 114B,B7E9 -114B,B856 114B,B856 -114B,B8C3 114B,B8C3 -114B,B930 114B,B930 -114B,B99D 114B,B99D -114B,BA0A 114B,BA0A -114B,BA77 114B,BA77 -114B,BAE4 114B,BAE4 -114B,BB51 114B,BB51 -114B,BBBD 114B,BBBD -114B,BC2A 114B,BC2A -114B,BC97 114B,BC97 -114B,BD04 114B,BD04 -114B,BD71 114B,BD71 -114B,BDDE 114B,BDDE -114B,BE4B 114B,BE4B -114B,BEB8 114B,BEB8 -114B,BF25 114B,BF25 -114B,BF91 114B,BF91 -114B,BFFE 114B,BFFE -114B,C06B 114B,C06B -114B,C0D8 114B,C0D8 -114B,C145 114B,C145 -114B,C1B2 114B,C1B2 -114B,C21F 114B,C21F -114B,C28C 114B,C28C -114B,C2F9 114B,C2F9 -114B,C365 114B,C365 -114B,C3D2 114B,C3D2 -114B,C43F 114B,C43F -114B,C4AC 114B,C4AC -114B,C519 114B,C519 -114B,C586 114B,C586 -114B,C5F3 114B,C5F3 -114B,C660 114B,C660 -114B,C6CD 114B,C6CD -114B,C739 114B,C739 -114B,C7A6 114B,C7A6 -114B,C813 114B,C813 -114B,C880 114B,C880 -114B,C8ED 114B,C8ED -114B,C95A 114B,C95A -114B,C9C7 114B,C9C7 -114B,CA34 114B,CA34 -114B,CAA1 114B,CAA1 -114B,CB0D 114B,CB0D -114B,CB7A 114B,CB7A -114B,CBE7 114B,CBE7 -114B,CC54 114B,CC54 -114B,CCC1 114B,CCC1 -114B,CD2E 114B,CD2E -114B,CD9B 114B,CD9B -114B,CE08 114B,CE08 -114B,CE75 114B,CE75 -114B,CEE1 114B,CEE1 -114B,CF4E 114B,CF4E -114B,CFBB 114B,CFBB -114B,D028 114B,D028 -114B,D095 114B,D095 -114B,D102 114B,D102 -114B,D16F 114B,D16F -114B,D1DC 114B,D1DC -114B,D249 114B,D249 -114B,D2B5 114B,D2B5 -114B,D322 114B,D322 -114B,D38F 114B,D38F -114B,D3FC 114B,D3FC -114B,D469 114B,D469 -114B,D4D6 114B,D4D6 -114B,D543 114B,D543 -114B,D5B0 114B,D5B0 -114B,D61D 114B,D61D -114B,D689 114B,D689 -114B,D6F6 114B,D6F6 -114B,D763 114B,D763 -114C,AC01 114C,AC01 -114C,AC6D 114C,AC6D -114C,ACDA 114C,ACDA -114C,AD47 114C,AD47 -114C,ADB4 114C,ADB4 -114C,AE21 114C,AE21 -114C,AE8E 114C,AE8E -114C,AEFB 114C,AEFB -114C,AF68 114C,AF68 -114C,AFD5 114C,AFD5 -114C,B041 114C,B041 -114C,B0AE 114C,B0AE -114C,B11B 114C,B11B -114C,B188 114C,B188 -114C,B1F5 114C,B1F5 -114C,B262 114C,B262 -114C,B2CF 114C,B2CF -114C,B33C 114C,B33C -114C,B3A9 114C,B3A9 -114C,B415 114C,B415 -114C,B482 114C,B482 -114C,B4EF 114C,B4EF -114C,B55C 114C,B55C -114C,B5C9 114C,B5C9 -114C,B636 114C,B636 -114C,B6A3 114C,B6A3 -114C,B710 114C,B710 -114C,B77D 114C,B77D -114C,B7E9 114C,B7E9 -114C,B856 114C,B856 -114C,B8C3 114C,B8C3 -114C,B930 114C,B930 -114C,B99D 114C,B99D -114C,BA0A 114C,BA0A -114C,BA77 114C,BA77 -114C,BAE4 114C,BAE4 -114C,BB51 114C,BB51 -114C,BBBD 114C,BBBD -114C,BC2A 114C,BC2A -114C,BC97 114C,BC97 -114C,BD04 114C,BD04 -114C,BD71 114C,BD71 -114C,BDDE 114C,BDDE -114C,BE4B 114C,BE4B -114C,BEB8 114C,BEB8 -114C,BF25 114C,BF25 -114C,BF91 114C,BF91 -114C,BFFE 114C,BFFE -114C,C06B 114C,C06B -114C,C0D8 114C,C0D8 -114C,C145 114C,C145 -114C,C1B2 114C,C1B2 -114C,C21F 114C,C21F -114C,C28C 114C,C28C -114C,C2F9 114C,C2F9 -114C,C365 114C,C365 -114C,C3D2 114C,C3D2 -114C,C43F 114C,C43F -114C,C4AC 114C,C4AC -114C,C519 114C,C519 -114C,C586 114C,C586 -114C,C5F3 114C,C5F3 -114C,C660 114C,C660 -114C,C6CD 114C,C6CD -114C,C739 114C,C739 -114C,C7A6 114C,C7A6 -114C,C813 114C,C813 -114C,C880 114C,C880 -114C,C8ED 114C,C8ED -114C,C95A 114C,C95A -114C,C9C7 114C,C9C7 -114C,CA34 114C,CA34 -114C,CAA1 114C,CAA1 -114C,CB0D 114C,CB0D -114C,CB7A 114C,CB7A -114C,CBE7 114C,CBE7 -114C,CC54 114C,CC54 -114C,CCC1 114C,CCC1 -114C,CD2E 114C,CD2E -114C,CD9B 114C,CD9B -114C,CE08 114C,CE08 -114C,CE75 114C,CE75 -114C,CEE1 114C,CEE1 -114C,CF4E 114C,CF4E -114C,CFBB 114C,CFBB -114C,D028 114C,D028 -114C,D095 114C,D095 -114C,D102 114C,D102 -114C,D16F 114C,D16F -114C,D1DC 114C,D1DC -114C,D249 114C,D249 -114C,D2B5 114C,D2B5 -114C,D322 114C,D322 -114C,D38F 114C,D38F -114C,D3FC 114C,D3FC -114C,D469 114C,D469 -114C,D4D6 114C,D4D6 -114C,D543 114C,D543 -114C,D5B0 114C,D5B0 -114C,D61D 114C,D61D -114C,D689 114C,D689 -114C,D6F6 114C,D6F6 -114C,D763 114C,D763 -114D,AC01 114D,AC01 -114D,AC6D 114D,AC6D -114D,ACDA 114D,ACDA -114D,AD47 114D,AD47 -114D,ADB4 114D,ADB4 -114D,AE21 114D,AE21 -114D,AE8E 114D,AE8E -114D,AEFB 114D,AEFB -114D,AF68 114D,AF68 -114D,AFD5 114D,AFD5 -114D,B041 114D,B041 -114D,B0AE 114D,B0AE -114D,B11B 114D,B11B -114D,B188 114D,B188 -114D,B1F5 114D,B1F5 -114D,B262 114D,B262 -114D,B2CF 114D,B2CF -114D,B33C 114D,B33C -114D,B3A9 114D,B3A9 -114D,B415 114D,B415 -114D,B482 114D,B482 -114D,B4EF 114D,B4EF -114D,B55C 114D,B55C -114D,B5C9 114D,B5C9 -114D,B636 114D,B636 -114D,B6A3 114D,B6A3 -114D,B710 114D,B710 -114D,B77D 114D,B77D -114D,B7E9 114D,B7E9 -114D,B856 114D,B856 -114D,B8C3 114D,B8C3 -114D,B930 114D,B930 -114D,B99D 114D,B99D -114D,BA0A 114D,BA0A -114D,BA77 114D,BA77 -114D,BAE4 114D,BAE4 -114D,BB51 114D,BB51 -114D,BBBD 114D,BBBD -114D,BC2A 114D,BC2A -114D,BC97 114D,BC97 -114D,BD04 114D,BD04 -114D,BD71 114D,BD71 -114D,BDDE 114D,BDDE -114D,BE4B 114D,BE4B -114D,BEB8 114D,BEB8 -114D,BF25 114D,BF25 -114D,BF91 114D,BF91 -114D,BFFE 114D,BFFE -114D,C06B 114D,C06B -114D,C0D8 114D,C0D8 -114D,C145 114D,C145 -114D,C1B2 114D,C1B2 -114D,C21F 114D,C21F -114D,C28C 114D,C28C -114D,C2F9 114D,C2F9 -114D,C365 114D,C365 -114D,C3D2 114D,C3D2 -114D,C43F 114D,C43F -114D,C4AC 114D,C4AC -114D,C519 114D,C519 -114D,C586 114D,C586 -114D,C5F3 114D,C5F3 -114D,C660 114D,C660 -114D,C6CD 114D,C6CD -114D,C739 114D,C739 -114D,C7A6 114D,C7A6 -114D,C813 114D,C813 -114D,C880 114D,C880 -114D,C8ED 114D,C8ED -114D,C95A 114D,C95A -114D,C9C7 114D,C9C7 -114D,CA34 114D,CA34 -114D,CAA1 114D,CAA1 -114D,CB0D 114D,CB0D -114D,CB7A 114D,CB7A -114D,CBE7 114D,CBE7 -114D,CC54 114D,CC54 -114D,CCC1 114D,CCC1 -114D,CD2E 114D,CD2E -114D,CD9B 114D,CD9B -114D,CE08 114D,CE08 -114D,CE75 114D,CE75 -114D,CEE1 114D,CEE1 -114D,CF4E 114D,CF4E -114D,CFBB 114D,CFBB -114D,D028 114D,D028 -114D,D095 114D,D095 -114D,D102 114D,D102 -114D,D16F 114D,D16F -114D,D1DC 114D,D1DC -114D,D249 114D,D249 -114D,D2B5 114D,D2B5 -114D,D322 114D,D322 -114D,D38F 114D,D38F -114D,D3FC 114D,D3FC -114D,D469 114D,D469 -114D,D4D6 114D,D4D6 -114D,D543 114D,D543 -114D,D5B0 114D,D5B0 -114D,D61D 114D,D61D -114D,D689 114D,D689 -114D,D6F6 114D,D6F6 -114D,D763 114D,D763 -114E,AC01 114E,AC01 -114E,AC6D 114E,AC6D -114E,ACDA 114E,ACDA -114E,AD47 114E,AD47 -114E,ADB4 114E,ADB4 -114E,AE21 114E,AE21 -114E,AE8E 114E,AE8E -114E,AEFB 114E,AEFB -114E,AF68 114E,AF68 -114E,AFD5 114E,AFD5 -114E,B041 114E,B041 -114E,B0AE 114E,B0AE -114E,B11B 114E,B11B -114E,B188 114E,B188 -114E,B1F5 114E,B1F5 -114E,B262 114E,B262 -114E,B2CF 114E,B2CF -114E,B33C 114E,B33C -114E,B3A9 114E,B3A9 -114E,B415 114E,B415 -114E,B482 114E,B482 -114E,B4EF 114E,B4EF -114E,B55C 114E,B55C -114E,B5C9 114E,B5C9 -114E,B636 114E,B636 -114E,B6A3 114E,B6A3 -114E,B710 114E,B710 -114E,B77D 114E,B77D -114E,B7E9 114E,B7E9 -114E,B856 114E,B856 -114E,B8C3 114E,B8C3 -114E,B930 114E,B930 -114E,B99D 114E,B99D -114E,BA0A 114E,BA0A -114E,BA77 114E,BA77 -114E,BAE4 114E,BAE4 -114E,BB51 114E,BB51 -114E,BBBD 114E,BBBD -114E,BC2A 114E,BC2A -114E,BC97 114E,BC97 -114E,BD04 114E,BD04 -114E,BD71 114E,BD71 -114E,BDDE 114E,BDDE -114E,BE4B 114E,BE4B -114E,BEB8 114E,BEB8 -114E,BF25 114E,BF25 -114E,BF91 114E,BF91 -114E,BFFE 114E,BFFE -114E,C06B 114E,C06B -114E,C0D8 114E,C0D8 -114E,C145 114E,C145 -114E,C1B2 114E,C1B2 -114E,C21F 114E,C21F -114E,C28C 114E,C28C -114E,C2F9 114E,C2F9 -114E,C365 114E,C365 -114E,C3D2 114E,C3D2 -114E,C43F 114E,C43F -114E,C4AC 114E,C4AC -114E,C519 114E,C519 -114E,C586 114E,C586 -114E,C5F3 114E,C5F3 -114E,C660 114E,C660 -114E,C6CD 114E,C6CD -114E,C739 114E,C739 -114E,C7A6 114E,C7A6 -114E,C813 114E,C813 -114E,C880 114E,C880 -114E,C8ED 114E,C8ED -114E,C95A 114E,C95A -114E,C9C7 114E,C9C7 -114E,CA34 114E,CA34 -114E,CAA1 114E,CAA1 -114E,CB0D 114E,CB0D -114E,CB7A 114E,CB7A -114E,CBE7 114E,CBE7 -114E,CC54 114E,CC54 -114E,CCC1 114E,CCC1 -114E,CD2E 114E,CD2E -114E,CD9B 114E,CD9B -114E,CE08 114E,CE08 -114E,CE75 114E,CE75 -114E,CEE1 114E,CEE1 -114E,CF4E 114E,CF4E -114E,CFBB 114E,CFBB -114E,D028 114E,D028 -114E,D095 114E,D095 -114E,D102 114E,D102 -114E,D16F 114E,D16F -114E,D1DC 114E,D1DC -114E,D249 114E,D249 -114E,D2B5 114E,D2B5 -114E,D322 114E,D322 -114E,D38F 114E,D38F -114E,D3FC 114E,D3FC -114E,D469 114E,D469 -114E,D4D6 114E,D4D6 -114E,D543 114E,D543 -114E,D5B0 114E,D5B0 -114E,D61D 114E,D61D -114E,D689 114E,D689 -114E,D6F6 114E,D6F6 -114E,D763 114E,D763 -114F,AC01 114F,AC01 -114F,AC6D 114F,AC6D -114F,ACDA 114F,ACDA -114F,AD47 114F,AD47 -114F,ADB4 114F,ADB4 -114F,AE21 114F,AE21 -114F,AE8E 114F,AE8E -114F,AEFB 114F,AEFB -114F,AF68 114F,AF68 -114F,AFD5 114F,AFD5 -114F,B041 114F,B041 -114F,B0AE 114F,B0AE -114F,B11B 114F,B11B -114F,B188 114F,B188 -114F,B1F5 114F,B1F5 -114F,B262 114F,B262 -114F,B2CF 114F,B2CF -114F,B33C 114F,B33C -114F,B3A9 114F,B3A9 -114F,B415 114F,B415 -114F,B482 114F,B482 -114F,B4EF 114F,B4EF -114F,B55C 114F,B55C -114F,B5C9 114F,B5C9 -114F,B636 114F,B636 -114F,B6A3 114F,B6A3 -114F,B710 114F,B710 -114F,B77D 114F,B77D -114F,B7E9 114F,B7E9 -114F,B856 114F,B856 -114F,B8C3 114F,B8C3 -114F,B930 114F,B930 -114F,B99D 114F,B99D -114F,BA0A 114F,BA0A -114F,BA77 114F,BA77 -114F,BAE4 114F,BAE4 -114F,BB51 114F,BB51 -114F,BBBD 114F,BBBD -114F,BC2A 114F,BC2A -114F,BC97 114F,BC97 -114F,BD04 114F,BD04 -114F,BD71 114F,BD71 -114F,BDDE 114F,BDDE -114F,BE4B 114F,BE4B -114F,BEB8 114F,BEB8 -114F,BF25 114F,BF25 -114F,BF91 114F,BF91 -114F,BFFE 114F,BFFE -114F,C06B 114F,C06B -114F,C0D8 114F,C0D8 -114F,C145 114F,C145 -114F,C1B2 114F,C1B2 -114F,C21F 114F,C21F -114F,C28C 114F,C28C -114F,C2F9 114F,C2F9 -114F,C365 114F,C365 -114F,C3D2 114F,C3D2 -114F,C43F 114F,C43F -114F,C4AC 114F,C4AC -114F,C519 114F,C519 -114F,C586 114F,C586 -114F,C5F3 114F,C5F3 -114F,C660 114F,C660 -114F,C6CD 114F,C6CD -114F,C739 114F,C739 -114F,C7A6 114F,C7A6 -114F,C813 114F,C813 -114F,C880 114F,C880 -114F,C8ED 114F,C8ED -114F,C95A 114F,C95A -114F,C9C7 114F,C9C7 -114F,CA34 114F,CA34 -114F,CAA1 114F,CAA1 -114F,CB0D 114F,CB0D -114F,CB7A 114F,CB7A -114F,CBE7 114F,CBE7 -114F,CC54 114F,CC54 -114F,CCC1 114F,CCC1 -114F,CD2E 114F,CD2E -114F,CD9B 114F,CD9B -114F,CE08 114F,CE08 -114F,CE75 114F,CE75 -114F,CEE1 114F,CEE1 -114F,CF4E 114F,CF4E -114F,CFBB 114F,CFBB -114F,D028 114F,D028 -114F,D095 114F,D095 -114F,D102 114F,D102 -114F,D16F 114F,D16F -114F,D1DC 114F,D1DC -114F,D249 114F,D249 -114F,D2B5 114F,D2B5 -114F,D322 114F,D322 -114F,D38F 114F,D38F -114F,D3FC 114F,D3FC -114F,D469 114F,D469 -114F,D4D6 114F,D4D6 -114F,D543 114F,D543 -114F,D5B0 114F,D5B0 -114F,D61D 114F,D61D -114F,D689 114F,D689 -114F,D6F6 114F,D6F6 -114F,D763 114F,D763 -1150,AC01 1150,AC01 -1150,AC6D 1150,AC6D -1150,ACDA 1150,ACDA -1150,AD47 1150,AD47 -1150,ADB4 1150,ADB4 -1150,AE21 1150,AE21 -1150,AE8E 1150,AE8E -1150,AEFB 1150,AEFB -1150,AF68 1150,AF68 -1150,AFD5 1150,AFD5 -1150,B041 1150,B041 -1150,B0AE 1150,B0AE -1150,B11B 1150,B11B -1150,B188 1150,B188 -1150,B1F5 1150,B1F5 -1150,B262 1150,B262 -1150,B2CF 1150,B2CF -1150,B33C 1150,B33C -1150,B3A9 1150,B3A9 -1150,B415 1150,B415 -1150,B482 1150,B482 -1150,B4EF 1150,B4EF -1150,B55C 1150,B55C -1150,B5C9 1150,B5C9 -1150,B636 1150,B636 -1150,B6A3 1150,B6A3 -1150,B710 1150,B710 -1150,B77D 1150,B77D -1150,B7E9 1150,B7E9 -1150,B856 1150,B856 -1150,B8C3 1150,B8C3 -1150,B930 1150,B930 -1150,B99D 1150,B99D -1150,BA0A 1150,BA0A -1150,BA77 1150,BA77 -1150,BAE4 1150,BAE4 -1150,BB51 1150,BB51 -1150,BBBD 1150,BBBD -1150,BC2A 1150,BC2A -1150,BC97 1150,BC97 -1150,BD04 1150,BD04 -1150,BD71 1150,BD71 -1150,BDDE 1150,BDDE -1150,BE4B 1150,BE4B -1150,BEB8 1150,BEB8 -1150,BF25 1150,BF25 -1150,BF91 1150,BF91 -1150,BFFE 1150,BFFE -1150,C06B 1150,C06B -1150,C0D8 1150,C0D8 -1150,C145 1150,C145 -1150,C1B2 1150,C1B2 -1150,C21F 1150,C21F -1150,C28C 1150,C28C -1150,C2F9 1150,C2F9 -1150,C365 1150,C365 -1150,C3D2 1150,C3D2 -1150,C43F 1150,C43F -1150,C4AC 1150,C4AC -1150,C519 1150,C519 -1150,C586 1150,C586 -1150,C5F3 1150,C5F3 -1150,C660 1150,C660 -1150,C6CD 1150,C6CD -1150,C739 1150,C739 -1150,C7A6 1150,C7A6 -1150,C813 1150,C813 -1150,C880 1150,C880 -1150,C8ED 1150,C8ED -1150,C95A 1150,C95A -1150,C9C7 1150,C9C7 -1150,CA34 1150,CA34 -1150,CAA1 1150,CAA1 -1150,CB0D 1150,CB0D -1150,CB7A 1150,CB7A -1150,CBE7 1150,CBE7 -1150,CC54 1150,CC54 -1150,CCC1 1150,CCC1 -1150,CD2E 1150,CD2E -1150,CD9B 1150,CD9B -1150,CE08 1150,CE08 -1150,CE75 1150,CE75 -1150,CEE1 1150,CEE1 -1150,CF4E 1150,CF4E -1150,CFBB 1150,CFBB -1150,D028 1150,D028 -1150,D095 1150,D095 -1150,D102 1150,D102 -1150,D16F 1150,D16F -1150,D1DC 1150,D1DC -1150,D249 1150,D249 -1150,D2B5 1150,D2B5 -1150,D322 1150,D322 -1150,D38F 1150,D38F -1150,D3FC 1150,D3FC -1150,D469 1150,D469 -1150,D4D6 1150,D4D6 -1150,D543 1150,D543 -1150,D5B0 1150,D5B0 -1150,D61D 1150,D61D -1150,D689 1150,D689 -1150,D6F6 1150,D6F6 -1150,D763 1150,D763 -1151,AC01 1151,AC01 -1151,AC6D 1151,AC6D -1151,ACDA 1151,ACDA -1151,AD47 1151,AD47 -1151,ADB4 1151,ADB4 -1151,AE21 1151,AE21 -1151,AE8E 1151,AE8E -1151,AEFB 1151,AEFB -1151,AF68 1151,AF68 -1151,AFD5 1151,AFD5 -1151,B041 1151,B041 -1151,B0AE 1151,B0AE -1151,B11B 1151,B11B -1151,B188 1151,B188 -1151,B1F5 1151,B1F5 -1151,B262 1151,B262 -1151,B2CF 1151,B2CF -1151,B33C 1151,B33C -1151,B3A9 1151,B3A9 -1151,B415 1151,B415 -1151,B482 1151,B482 -1151,B4EF 1151,B4EF -1151,B55C 1151,B55C -1151,B5C9 1151,B5C9 -1151,B636 1151,B636 -1151,B6A3 1151,B6A3 -1151,B710 1151,B710 -1151,B77D 1151,B77D -1151,B7E9 1151,B7E9 -1151,B856 1151,B856 -1151,B8C3 1151,B8C3 -1151,B930 1151,B930 -1151,B99D 1151,B99D -1151,BA0A 1151,BA0A -1151,BA77 1151,BA77 -1151,BAE4 1151,BAE4 -1151,BB51 1151,BB51 -1151,BBBD 1151,BBBD -1151,BC2A 1151,BC2A -1151,BC97 1151,BC97 -1151,BD04 1151,BD04 -1151,BD71 1151,BD71 -1151,BDDE 1151,BDDE -1151,BE4B 1151,BE4B -1151,BEB8 1151,BEB8 -1151,BF25 1151,BF25 -1151,BF91 1151,BF91 -1151,BFFE 1151,BFFE -1151,C06B 1151,C06B -1151,C0D8 1151,C0D8 -1151,C145 1151,C145 -1151,C1B2 1151,C1B2 -1151,C21F 1151,C21F -1151,C28C 1151,C28C -1151,C2F9 1151,C2F9 -1151,C365 1151,C365 -1151,C3D2 1151,C3D2 -1151,C43F 1151,C43F -1151,C4AC 1151,C4AC -1151,C519 1151,C519 -1151,C586 1151,C586 -1151,C5F3 1151,C5F3 -1151,C660 1151,C660 -1151,C6CD 1151,C6CD -1151,C739 1151,C739 -1151,C7A6 1151,C7A6 -1151,C813 1151,C813 -1151,C880 1151,C880 -1151,C8ED 1151,C8ED -1151,C95A 1151,C95A -1151,C9C7 1151,C9C7 -1151,CA34 1151,CA34 -1151,CAA1 1151,CAA1 -1151,CB0D 1151,CB0D -1151,CB7A 1151,CB7A -1151,CBE7 1151,CBE7 -1151,CC54 1151,CC54 -1151,CCC1 1151,CCC1 -1151,CD2E 1151,CD2E -1151,CD9B 1151,CD9B -1151,CE08 1151,CE08 -1151,CE75 1151,CE75 -1151,CEE1 1151,CEE1 -1151,CF4E 1151,CF4E -1151,CFBB 1151,CFBB -1151,D028 1151,D028 -1151,D095 1151,D095 -1151,D102 1151,D102 -1151,D16F 1151,D16F -1151,D1DC 1151,D1DC -1151,D249 1151,D249 -1151,D2B5 1151,D2B5 -1151,D322 1151,D322 -1151,D38F 1151,D38F -1151,D3FC 1151,D3FC -1151,D469 1151,D469 -1151,D4D6 1151,D4D6 -1151,D543 1151,D543 -1151,D5B0 1151,D5B0 -1151,D61D 1151,D61D -1151,D689 1151,D689 -1151,D6F6 1151,D6F6 -1151,D763 1151,D763 -1152,AC01 1152,AC01 -1152,AC6D 1152,AC6D -1152,ACDA 1152,ACDA -1152,AD47 1152,AD47 -1152,ADB4 1152,ADB4 -1152,AE21 1152,AE21 -1152,AE8E 1152,AE8E -1152,AEFB 1152,AEFB -1152,AF68 1152,AF68 -1152,AFD5 1152,AFD5 -1152,B041 1152,B041 -1152,B0AE 1152,B0AE -1152,B11B 1152,B11B -1152,B188 1152,B188 -1152,B1F5 1152,B1F5 -1152,B262 1152,B262 -1152,B2CF 1152,B2CF -1152,B33C 1152,B33C -1152,B3A9 1152,B3A9 -1152,B415 1152,B415 -1152,B482 1152,B482 -1152,B4EF 1152,B4EF -1152,B55C 1152,B55C -1152,B5C9 1152,B5C9 -1152,B636 1152,B636 -1152,B6A3 1152,B6A3 -1152,B710 1152,B710 -1152,B77D 1152,B77D -1152,B7E9 1152,B7E9 -1152,B856 1152,B856 -1152,B8C3 1152,B8C3 -1152,B930 1152,B930 -1152,B99D 1152,B99D -1152,BA0A 1152,BA0A -1152,BA77 1152,BA77 -1152,BAE4 1152,BAE4 -1152,BB51 1152,BB51 -1152,BBBD 1152,BBBD -1152,BC2A 1152,BC2A -1152,BC97 1152,BC97 -1152,BD04 1152,BD04 -1152,BD71 1152,BD71 -1152,BDDE 1152,BDDE -1152,BE4B 1152,BE4B -1152,BEB8 1152,BEB8 -1152,BF25 1152,BF25 -1152,BF91 1152,BF91 -1152,BFFE 1152,BFFE -1152,C06B 1152,C06B -1152,C0D8 1152,C0D8 -1152,C145 1152,C145 -1152,C1B2 1152,C1B2 -1152,C21F 1152,C21F -1152,C28C 1152,C28C -1152,C2F9 1152,C2F9 -1152,C365 1152,C365 -1152,C3D2 1152,C3D2 -1152,C43F 1152,C43F -1152,C4AC 1152,C4AC -1152,C519 1152,C519 -1152,C586 1152,C586 -1152,C5F3 1152,C5F3 -1152,C660 1152,C660 -1152,C6CD 1152,C6CD -1152,C739 1152,C739 -1152,C7A6 1152,C7A6 -1152,C813 1152,C813 -1152,C880 1152,C880 -1152,C8ED 1152,C8ED -1152,C95A 1152,C95A -1152,C9C7 1152,C9C7 -1152,CA34 1152,CA34 -1152,CAA1 1152,CAA1 -1152,CB0D 1152,CB0D -1152,CB7A 1152,CB7A -1152,CBE7 1152,CBE7 -1152,CC54 1152,CC54 -1152,CCC1 1152,CCC1 -1152,CD2E 1152,CD2E -1152,CD9B 1152,CD9B -1152,CE08 1152,CE08 -1152,CE75 1152,CE75 -1152,CEE1 1152,CEE1 -1152,CF4E 1152,CF4E -1152,CFBB 1152,CFBB -1152,D028 1152,D028 -1152,D095 1152,D095 -1152,D102 1152,D102 -1152,D16F 1152,D16F -1152,D1DC 1152,D1DC -1152,D249 1152,D249 -1152,D2B5 1152,D2B5 -1152,D322 1152,D322 -1152,D38F 1152,D38F -1152,D3FC 1152,D3FC -1152,D469 1152,D469 -1152,D4D6 1152,D4D6 -1152,D543 1152,D543 -1152,D5B0 1152,D5B0 -1152,D61D 1152,D61D -1152,D689 1152,D689 -1152,D6F6 1152,D6F6 -1152,D763 1152,D763 -1153,AC01 1153,AC01 -1153,AC6D 1153,AC6D -1153,ACDA 1153,ACDA -1153,AD47 1153,AD47 -1153,ADB4 1153,ADB4 -1153,AE21 1153,AE21 -1153,AE8E 1153,AE8E -1153,AEFB 1153,AEFB -1153,AF68 1153,AF68 -1153,AFD5 1153,AFD5 -1153,B041 1153,B041 -1153,B0AE 1153,B0AE -1153,B11B 1153,B11B -1153,B188 1153,B188 -1153,B1F5 1153,B1F5 -1153,B262 1153,B262 -1153,B2CF 1153,B2CF -1153,B33C 1153,B33C -1153,B3A9 1153,B3A9 -1153,B415 1153,B415 -1153,B482 1153,B482 -1153,B4EF 1153,B4EF -1153,B55C 1153,B55C -1153,B5C9 1153,B5C9 -1153,B636 1153,B636 -1153,B6A3 1153,B6A3 -1153,B710 1153,B710 -1153,B77D 1153,B77D -1153,B7E9 1153,B7E9 -1153,B856 1153,B856 -1153,B8C3 1153,B8C3 -1153,B930 1153,B930 -1153,B99D 1153,B99D -1153,BA0A 1153,BA0A -1153,BA77 1153,BA77 -1153,BAE4 1153,BAE4 -1153,BB51 1153,BB51 -1153,BBBD 1153,BBBD -1153,BC2A 1153,BC2A -1153,BC97 1153,BC97 -1153,BD04 1153,BD04 -1153,BD71 1153,BD71 -1153,BDDE 1153,BDDE -1153,BE4B 1153,BE4B -1153,BEB8 1153,BEB8 -1153,BF25 1153,BF25 -1153,BF91 1153,BF91 -1153,BFFE 1153,BFFE -1153,C06B 1153,C06B -1153,C0D8 1153,C0D8 -1153,C145 1153,C145 -1153,C1B2 1153,C1B2 -1153,C21F 1153,C21F -1153,C28C 1153,C28C -1153,C2F9 1153,C2F9 -1153,C365 1153,C365 -1153,C3D2 1153,C3D2 -1153,C43F 1153,C43F -1153,C4AC 1153,C4AC -1153,C519 1153,C519 -1153,C586 1153,C586 -1153,C5F3 1153,C5F3 -1153,C660 1153,C660 -1153,C6CD 1153,C6CD -1153,C739 1153,C739 -1153,C7A6 1153,C7A6 -1153,C813 1153,C813 -1153,C880 1153,C880 -1153,C8ED 1153,C8ED -1153,C95A 1153,C95A -1153,C9C7 1153,C9C7 -1153,CA34 1153,CA34 -1153,CAA1 1153,CAA1 -1153,CB0D 1153,CB0D -1153,CB7A 1153,CB7A -1153,CBE7 1153,CBE7 -1153,CC54 1153,CC54 -1153,CCC1 1153,CCC1 -1153,CD2E 1153,CD2E -1153,CD9B 1153,CD9B -1153,CE08 1153,CE08 -1153,CE75 1153,CE75 -1153,CEE1 1153,CEE1 -1153,CF4E 1153,CF4E -1153,CFBB 1153,CFBB -1153,D028 1153,D028 -1153,D095 1153,D095 -1153,D102 1153,D102 -1153,D16F 1153,D16F -1153,D1DC 1153,D1DC -1153,D249 1153,D249 -1153,D2B5 1153,D2B5 -1153,D322 1153,D322 -1153,D38F 1153,D38F -1153,D3FC 1153,D3FC -1153,D469 1153,D469 -1153,D4D6 1153,D4D6 -1153,D543 1153,D543 -1153,D5B0 1153,D5B0 -1153,D61D 1153,D61D -1153,D689 1153,D689 -1153,D6F6 1153,D6F6 -1153,D763 1153,D763 -1154,AC01 1154,AC01 -1154,AC6D 1154,AC6D -1154,ACDA 1154,ACDA -1154,AD47 1154,AD47 -1154,ADB4 1154,ADB4 -1154,AE21 1154,AE21 -1154,AE8E 1154,AE8E -1154,AEFB 1154,AEFB -1154,AF68 1154,AF68 -1154,AFD5 1154,AFD5 -1154,B041 1154,B041 -1154,B0AE 1154,B0AE -1154,B11B 1154,B11B -1154,B188 1154,B188 -1154,B1F5 1154,B1F5 -1154,B262 1154,B262 -1154,B2CF 1154,B2CF -1154,B33C 1154,B33C -1154,B3A9 1154,B3A9 -1154,B415 1154,B415 -1154,B482 1154,B482 -1154,B4EF 1154,B4EF -1154,B55C 1154,B55C -1154,B5C9 1154,B5C9 -1154,B636 1154,B636 -1154,B6A3 1154,B6A3 -1154,B710 1154,B710 -1154,B77D 1154,B77D -1154,B7E9 1154,B7E9 -1154,B856 1154,B856 -1154,B8C3 1154,B8C3 -1154,B930 1154,B930 -1154,B99D 1154,B99D -1154,BA0A 1154,BA0A -1154,BA77 1154,BA77 -1154,BAE4 1154,BAE4 -1154,BB51 1154,BB51 -1154,BBBD 1154,BBBD -1154,BC2A 1154,BC2A -1154,BC97 1154,BC97 -1154,BD04 1154,BD04 -1154,BD71 1154,BD71 -1154,BDDE 1154,BDDE -1154,BE4B 1154,BE4B -1154,BEB8 1154,BEB8 -1154,BF25 1154,BF25 -1154,BF91 1154,BF91 -1154,BFFE 1154,BFFE -1154,C06B 1154,C06B -1154,C0D8 1154,C0D8 -1154,C145 1154,C145 -1154,C1B2 1154,C1B2 -1154,C21F 1154,C21F -1154,C28C 1154,C28C -1154,C2F9 1154,C2F9 -1154,C365 1154,C365 -1154,C3D2 1154,C3D2 -1154,C43F 1154,C43F -1154,C4AC 1154,C4AC -1154,C519 1154,C519 -1154,C586 1154,C586 -1154,C5F3 1154,C5F3 -1154,C660 1154,C660 -1154,C6CD 1154,C6CD -1154,C739 1154,C739 -1154,C7A6 1154,C7A6 -1154,C813 1154,C813 -1154,C880 1154,C880 -1154,C8ED 1154,C8ED -1154,C95A 1154,C95A -1154,C9C7 1154,C9C7 -1154,CA34 1154,CA34 -1154,CAA1 1154,CAA1 -1154,CB0D 1154,CB0D -1154,CB7A 1154,CB7A -1154,CBE7 1154,CBE7 -1154,CC54 1154,CC54 -1154,CCC1 1154,CCC1 -1154,CD2E 1154,CD2E -1154,CD9B 1154,CD9B -1154,CE08 1154,CE08 -1154,CE75 1154,CE75 -1154,CEE1 1154,CEE1 -1154,CF4E 1154,CF4E -1154,CFBB 1154,CFBB -1154,D028 1154,D028 -1154,D095 1154,D095 -1154,D102 1154,D102 -1154,D16F 1154,D16F -1154,D1DC 1154,D1DC -1154,D249 1154,D249 -1154,D2B5 1154,D2B5 -1154,D322 1154,D322 -1154,D38F 1154,D38F -1154,D3FC 1154,D3FC -1154,D469 1154,D469 -1154,D4D6 1154,D4D6 -1154,D543 1154,D543 -1154,D5B0 1154,D5B0 -1154,D61D 1154,D61D -1154,D689 1154,D689 -1154,D6F6 1154,D6F6 -1154,D763 1154,D763 -1155,AC01 1155,AC01 -1155,AC6D 1155,AC6D -1155,ACDA 1155,ACDA -1155,AD47 1155,AD47 -1155,ADB4 1155,ADB4 -1155,AE21 1155,AE21 -1155,AE8E 1155,AE8E -1155,AEFB 1155,AEFB -1155,AF68 1155,AF68 -1155,AFD5 1155,AFD5 -1155,B041 1155,B041 -1155,B0AE 1155,B0AE -1155,B11B 1155,B11B -1155,B188 1155,B188 -1155,B1F5 1155,B1F5 -1155,B262 1155,B262 -1155,B2CF 1155,B2CF -1155,B33C 1155,B33C -1155,B3A9 1155,B3A9 -1155,B415 1155,B415 -1155,B482 1155,B482 -1155,B4EF 1155,B4EF -1155,B55C 1155,B55C -1155,B5C9 1155,B5C9 -1155,B636 1155,B636 -1155,B6A3 1155,B6A3 -1155,B710 1155,B710 -1155,B77D 1155,B77D -1155,B7E9 1155,B7E9 -1155,B856 1155,B856 -1155,B8C3 1155,B8C3 -1155,B930 1155,B930 -1155,B99D 1155,B99D -1155,BA0A 1155,BA0A -1155,BA77 1155,BA77 -1155,BAE4 1155,BAE4 -1155,BB51 1155,BB51 -1155,BBBD 1155,BBBD -1155,BC2A 1155,BC2A -1155,BC97 1155,BC97 -1155,BD04 1155,BD04 -1155,BD71 1155,BD71 -1155,BDDE 1155,BDDE -1155,BE4B 1155,BE4B -1155,BEB8 1155,BEB8 -1155,BF25 1155,BF25 -1155,BF91 1155,BF91 -1155,BFFE 1155,BFFE -1155,C06B 1155,C06B -1155,C0D8 1155,C0D8 -1155,C145 1155,C145 -1155,C1B2 1155,C1B2 -1155,C21F 1155,C21F -1155,C28C 1155,C28C -1155,C2F9 1155,C2F9 -1155,C365 1155,C365 -1155,C3D2 1155,C3D2 -1155,C43F 1155,C43F -1155,C4AC 1155,C4AC -1155,C519 1155,C519 -1155,C586 1155,C586 -1155,C5F3 1155,C5F3 -1155,C660 1155,C660 -1155,C6CD 1155,C6CD -1155,C739 1155,C739 -1155,C7A6 1155,C7A6 -1155,C813 1155,C813 -1155,C880 1155,C880 -1155,C8ED 1155,C8ED -1155,C95A 1155,C95A -1155,C9C7 1155,C9C7 -1155,CA34 1155,CA34 -1155,CAA1 1155,CAA1 -1155,CB0D 1155,CB0D -1155,CB7A 1155,CB7A -1155,CBE7 1155,CBE7 -1155,CC54 1155,CC54 -1155,CCC1 1155,CCC1 -1155,CD2E 1155,CD2E -1155,CD9B 1155,CD9B -1155,CE08 1155,CE08 -1155,CE75 1155,CE75 -1155,CEE1 1155,CEE1 -1155,CF4E 1155,CF4E -1155,CFBB 1155,CFBB -1155,D028 1155,D028 -1155,D095 1155,D095 -1155,D102 1155,D102 -1155,D16F 1155,D16F -1155,D1DC 1155,D1DC -1155,D249 1155,D249 -1155,D2B5 1155,D2B5 -1155,D322 1155,D322 -1155,D38F 1155,D38F -1155,D3FC 1155,D3FC -1155,D469 1155,D469 -1155,D4D6 1155,D4D6 -1155,D543 1155,D543 -1155,D5B0 1155,D5B0 -1155,D61D 1155,D61D -1155,D689 1155,D689 -1155,D6F6 1155,D6F6 -1155,D763 1155,D763 -1156,AC01 1156,AC01 -1156,AC6D 1156,AC6D -1156,ACDA 1156,ACDA -1156,AD47 1156,AD47 -1156,ADB4 1156,ADB4 -1156,AE21 1156,AE21 -1156,AE8E 1156,AE8E -1156,AEFB 1156,AEFB -1156,AF68 1156,AF68 -1156,AFD5 1156,AFD5 -1156,B041 1156,B041 -1156,B0AE 1156,B0AE -1156,B11B 1156,B11B -1156,B188 1156,B188 -1156,B1F5 1156,B1F5 -1156,B262 1156,B262 -1156,B2CF 1156,B2CF -1156,B33C 1156,B33C -1156,B3A9 1156,B3A9 -1156,B415 1156,B415 -1156,B482 1156,B482 -1156,B4EF 1156,B4EF -1156,B55C 1156,B55C -1156,B5C9 1156,B5C9 -1156,B636 1156,B636 -1156,B6A3 1156,B6A3 -1156,B710 1156,B710 -1156,B77D 1156,B77D -1156,B7E9 1156,B7E9 -1156,B856 1156,B856 -1156,B8C3 1156,B8C3 -1156,B930 1156,B930 -1156,B99D 1156,B99D -1156,BA0A 1156,BA0A -1156,BA77 1156,BA77 -1156,BAE4 1156,BAE4 -1156,BB51 1156,BB51 -1156,BBBD 1156,BBBD -1156,BC2A 1156,BC2A -1156,BC97 1156,BC97 -1156,BD04 1156,BD04 -1156,BD71 1156,BD71 -1156,BDDE 1156,BDDE -1156,BE4B 1156,BE4B -1156,BEB8 1156,BEB8 -1156,BF25 1156,BF25 -1156,BF91 1156,BF91 -1156,BFFE 1156,BFFE -1156,C06B 1156,C06B -1156,C0D8 1156,C0D8 -1156,C145 1156,C145 -1156,C1B2 1156,C1B2 -1156,C21F 1156,C21F -1156,C28C 1156,C28C -1156,C2F9 1156,C2F9 -1156,C365 1156,C365 -1156,C3D2 1156,C3D2 -1156,C43F 1156,C43F -1156,C4AC 1156,C4AC -1156,C519 1156,C519 -1156,C586 1156,C586 -1156,C5F3 1156,C5F3 -1156,C660 1156,C660 -1156,C6CD 1156,C6CD -1156,C739 1156,C739 -1156,C7A6 1156,C7A6 -1156,C813 1156,C813 -1156,C880 1156,C880 -1156,C8ED 1156,C8ED -1156,C95A 1156,C95A -1156,C9C7 1156,C9C7 -1156,CA34 1156,CA34 -1156,CAA1 1156,CAA1 -1156,CB0D 1156,CB0D -1156,CB7A 1156,CB7A -1156,CBE7 1156,CBE7 -1156,CC54 1156,CC54 -1156,CCC1 1156,CCC1 -1156,CD2E 1156,CD2E -1156,CD9B 1156,CD9B -1156,CE08 1156,CE08 -1156,CE75 1156,CE75 -1156,CEE1 1156,CEE1 -1156,CF4E 1156,CF4E -1156,CFBB 1156,CFBB -1156,D028 1156,D028 -1156,D095 1156,D095 -1156,D102 1156,D102 -1156,D16F 1156,D16F -1156,D1DC 1156,D1DC -1156,D249 1156,D249 -1156,D2B5 1156,D2B5 -1156,D322 1156,D322 -1156,D38F 1156,D38F -1156,D3FC 1156,D3FC -1156,D469 1156,D469 -1156,D4D6 1156,D4D6 -1156,D543 1156,D543 -1156,D5B0 1156,D5B0 -1156,D61D 1156,D61D -1156,D689 1156,D689 -1156,D6F6 1156,D6F6 -1156,D763 1156,D763 -1157,AC01 1157,AC01 -1157,AC6D 1157,AC6D -1157,ACDA 1157,ACDA -1157,AD47 1157,AD47 -1157,ADB4 1157,ADB4 -1157,AE21 1157,AE21 -1157,AE8E 1157,AE8E -1157,AEFB 1157,AEFB -1157,AF68 1157,AF68 -1157,AFD5 1157,AFD5 -1157,B041 1157,B041 -1157,B0AE 1157,B0AE -1157,B11B 1157,B11B -1157,B188 1157,B188 -1157,B1F5 1157,B1F5 -1157,B262 1157,B262 -1157,B2CF 1157,B2CF -1157,B33C 1157,B33C -1157,B3A9 1157,B3A9 -1157,B415 1157,B415 -1157,B482 1157,B482 -1157,B4EF 1157,B4EF -1157,B55C 1157,B55C -1157,B5C9 1157,B5C9 -1157,B636 1157,B636 -1157,B6A3 1157,B6A3 -1157,B710 1157,B710 -1157,B77D 1157,B77D -1157,B7E9 1157,B7E9 -1157,B856 1157,B856 -1157,B8C3 1157,B8C3 -1157,B930 1157,B930 -1157,B99D 1157,B99D -1157,BA0A 1157,BA0A -1157,BA77 1157,BA77 -1157,BAE4 1157,BAE4 -1157,BB51 1157,BB51 -1157,BBBD 1157,BBBD -1157,BC2A 1157,BC2A -1157,BC97 1157,BC97 -1157,BD04 1157,BD04 -1157,BD71 1157,BD71 -1157,BDDE 1157,BDDE -1157,BE4B 1157,BE4B -1157,BEB8 1157,BEB8 -1157,BF25 1157,BF25 -1157,BF91 1157,BF91 -1157,BFFE 1157,BFFE -1157,C06B 1157,C06B -1157,C0D8 1157,C0D8 -1157,C145 1157,C145 -1157,C1B2 1157,C1B2 -1157,C21F 1157,C21F -1157,C28C 1157,C28C -1157,C2F9 1157,C2F9 -1157,C365 1157,C365 -1157,C3D2 1157,C3D2 -1157,C43F 1157,C43F -1157,C4AC 1157,C4AC -1157,C519 1157,C519 -1157,C586 1157,C586 -1157,C5F3 1157,C5F3 -1157,C660 1157,C660 -1157,C6CD 1157,C6CD -1157,C739 1157,C739 -1157,C7A6 1157,C7A6 -1157,C813 1157,C813 -1157,C880 1157,C880 -1157,C8ED 1157,C8ED -1157,C95A 1157,C95A -1157,C9C7 1157,C9C7 -1157,CA34 1157,CA34 -1157,CAA1 1157,CAA1 -1157,CB0D 1157,CB0D -1157,CB7A 1157,CB7A -1157,CBE7 1157,CBE7 -1157,CC54 1157,CC54 -1157,CCC1 1157,CCC1 -1157,CD2E 1157,CD2E -1157,CD9B 1157,CD9B -1157,CE08 1157,CE08 -1157,CE75 1157,CE75 -1157,CEE1 1157,CEE1 -1157,CF4E 1157,CF4E -1157,CFBB 1157,CFBB -1157,D028 1157,D028 -1157,D095 1157,D095 -1157,D102 1157,D102 -1157,D16F 1157,D16F -1157,D1DC 1157,D1DC -1157,D249 1157,D249 -1157,D2B5 1157,D2B5 -1157,D322 1157,D322 -1157,D38F 1157,D38F -1157,D3FC 1157,D3FC -1157,D469 1157,D469 -1157,D4D6 1157,D4D6 -1157,D543 1157,D543 -1157,D5B0 1157,D5B0 -1157,D61D 1157,D61D -1157,D689 1157,D689 -1157,D6F6 1157,D6F6 -1157,D763 1157,D763 -1158,AC01 1158,AC01 -1158,AC6D 1158,AC6D -1158,ACDA 1158,ACDA -1158,AD47 1158,AD47 -1158,ADB4 1158,ADB4 -1158,AE21 1158,AE21 -1158,AE8E 1158,AE8E -1158,AEFB 1158,AEFB -1158,AF68 1158,AF68 -1158,AFD5 1158,AFD5 -1158,B041 1158,B041 -1158,B0AE 1158,B0AE -1158,B11B 1158,B11B -1158,B188 1158,B188 -1158,B1F5 1158,B1F5 -1158,B262 1158,B262 -1158,B2CF 1158,B2CF -1158,B33C 1158,B33C -1158,B3A9 1158,B3A9 -1158,B415 1158,B415 -1158,B482 1158,B482 -1158,B4EF 1158,B4EF -1158,B55C 1158,B55C -1158,B5C9 1158,B5C9 -1158,B636 1158,B636 -1158,B6A3 1158,B6A3 -1158,B710 1158,B710 -1158,B77D 1158,B77D -1158,B7E9 1158,B7E9 -1158,B856 1158,B856 -1158,B8C3 1158,B8C3 -1158,B930 1158,B930 -1158,B99D 1158,B99D -1158,BA0A 1158,BA0A -1158,BA77 1158,BA77 -1158,BAE4 1158,BAE4 -1158,BB51 1158,BB51 -1158,BBBD 1158,BBBD -1158,BC2A 1158,BC2A -1158,BC97 1158,BC97 -1158,BD04 1158,BD04 -1158,BD71 1158,BD71 -1158,BDDE 1158,BDDE -1158,BE4B 1158,BE4B -1158,BEB8 1158,BEB8 -1158,BF25 1158,BF25 -1158,BF91 1158,BF91 -1158,BFFE 1158,BFFE -1158,C06B 1158,C06B -1158,C0D8 1158,C0D8 -1158,C145 1158,C145 -1158,C1B2 1158,C1B2 -1158,C21F 1158,C21F -1158,C28C 1158,C28C -1158,C2F9 1158,C2F9 -1158,C365 1158,C365 -1158,C3D2 1158,C3D2 -1158,C43F 1158,C43F -1158,C4AC 1158,C4AC -1158,C519 1158,C519 -1158,C586 1158,C586 -1158,C5F3 1158,C5F3 -1158,C660 1158,C660 -1158,C6CD 1158,C6CD -1158,C739 1158,C739 -1158,C7A6 1158,C7A6 -1158,C813 1158,C813 -1158,C880 1158,C880 -1158,C8ED 1158,C8ED -1158,C95A 1158,C95A -1158,C9C7 1158,C9C7 -1158,CA34 1158,CA34 -1158,CAA1 1158,CAA1 -1158,CB0D 1158,CB0D -1158,CB7A 1158,CB7A -1158,CBE7 1158,CBE7 -1158,CC54 1158,CC54 -1158,CCC1 1158,CCC1 -1158,CD2E 1158,CD2E -1158,CD9B 1158,CD9B -1158,CE08 1158,CE08 -1158,CE75 1158,CE75 -1158,CEE1 1158,CEE1 -1158,CF4E 1158,CF4E -1158,CFBB 1158,CFBB -1158,D028 1158,D028 -1158,D095 1158,D095 -1158,D102 1158,D102 -1158,D16F 1158,D16F -1158,D1DC 1158,D1DC -1158,D249 1158,D249 -1158,D2B5 1158,D2B5 -1158,D322 1158,D322 -1158,D38F 1158,D38F -1158,D3FC 1158,D3FC -1158,D469 1158,D469 -1158,D4D6 1158,D4D6 -1158,D543 1158,D543 -1158,D5B0 1158,D5B0 -1158,D61D 1158,D61D -1158,D689 1158,D689 -1158,D6F6 1158,D6F6 -1158,D763 1158,D763 -1159,AC01 1159,AC01 -1159,AC6D 1159,AC6D -1159,ACDA 1159,ACDA -1159,AD47 1159,AD47 -1159,ADB4 1159,ADB4 -1159,AE21 1159,AE21 -1159,AE8E 1159,AE8E -1159,AEFB 1159,AEFB -1159,AF68 1159,AF68 -1159,AFD5 1159,AFD5 -1159,B041 1159,B041 -1159,B0AE 1159,B0AE -1159,B11B 1159,B11B -1159,B188 1159,B188 -1159,B1F5 1159,B1F5 -1159,B262 1159,B262 -1159,B2CF 1159,B2CF -1159,B33C 1159,B33C -1159,B3A9 1159,B3A9 -1159,B415 1159,B415 -1159,B482 1159,B482 -1159,B4EF 1159,B4EF -1159,B55C 1159,B55C -1159,B5C9 1159,B5C9 -1159,B636 1159,B636 -1159,B6A3 1159,B6A3 -1159,B710 1159,B710 -1159,B77D 1159,B77D -1159,B7E9 1159,B7E9 -1159,B856 1159,B856 -1159,B8C3 1159,B8C3 -1159,B930 1159,B930 -1159,B99D 1159,B99D -1159,BA0A 1159,BA0A -1159,BA77 1159,BA77 -1159,BAE4 1159,BAE4 -1159,BB51 1159,BB51 -1159,BBBD 1159,BBBD -1159,BC2A 1159,BC2A -1159,BC97 1159,BC97 -1159,BD04 1159,BD04 -1159,BD71 1159,BD71 -1159,BDDE 1159,BDDE -1159,BE4B 1159,BE4B -1159,BEB8 1159,BEB8 -1159,BF25 1159,BF25 -1159,BF91 1159,BF91 -1159,BFFE 1159,BFFE -1159,C06B 1159,C06B -1159,C0D8 1159,C0D8 -1159,C145 1159,C145 -1159,C1B2 1159,C1B2 -1159,C21F 1159,C21F -1159,C28C 1159,C28C -1159,C2F9 1159,C2F9 -1159,C365 1159,C365 -1159,C3D2 1159,C3D2 -1159,C43F 1159,C43F -1159,C4AC 1159,C4AC -1159,C519 1159,C519 -1159,C586 1159,C586 -1159,C5F3 1159,C5F3 -1159,C660 1159,C660 -1159,C6CD 1159,C6CD -1159,C739 1159,C739 -1159,C7A6 1159,C7A6 -1159,C813 1159,C813 -1159,C880 1159,C880 -1159,C8ED 1159,C8ED -1159,C95A 1159,C95A -1159,C9C7 1159,C9C7 -1159,CA34 1159,CA34 -1159,CAA1 1159,CAA1 -1159,CB0D 1159,CB0D -1159,CB7A 1159,CB7A -1159,CBE7 1159,CBE7 -1159,CC54 1159,CC54 -1159,CCC1 1159,CCC1 -1159,CD2E 1159,CD2E -1159,CD9B 1159,CD9B -1159,CE08 1159,CE08 -1159,CE75 1159,CE75 -1159,CEE1 1159,CEE1 -1159,CF4E 1159,CF4E -1159,CFBB 1159,CFBB -1159,D028 1159,D028 -1159,D095 1159,D095 -1159,D102 1159,D102 -1159,D16F 1159,D16F -1159,D1DC 1159,D1DC -1159,D249 1159,D249 -1159,D2B5 1159,D2B5 -1159,D322 1159,D322 -1159,D38F 1159,D38F -1159,D3FC 1159,D3FC -1159,D469 1159,D469 -1159,D4D6 1159,D4D6 -1159,D543 1159,D543 -1159,D5B0 1159,D5B0 -1159,D61D 1159,D61D -1159,D689 1159,D689 -1159,D6F6 1159,D6F6 -1159,D763 1159,D763 -115A,AC01 115A,AC01 -115A,AC6D 115A,AC6D -115A,ACDA 115A,ACDA -115A,AD47 115A,AD47 -115A,ADB4 115A,ADB4 -115A,AE21 115A,AE21 -115A,AE8E 115A,AE8E -115A,AEFB 115A,AEFB -115A,AF68 115A,AF68 -115A,AFD5 115A,AFD5 -115A,B041 115A,B041 -115A,B0AE 115A,B0AE -115A,B11B 115A,B11B -115A,B188 115A,B188 -115A,B1F5 115A,B1F5 -115A,B262 115A,B262 -115A,B2CF 115A,B2CF -115A,B33C 115A,B33C -115A,B3A9 115A,B3A9 -115A,B415 115A,B415 -115A,B482 115A,B482 -115A,B4EF 115A,B4EF -115A,B55C 115A,B55C -115A,B5C9 115A,B5C9 -115A,B636 115A,B636 -115A,B6A3 115A,B6A3 -115A,B710 115A,B710 -115A,B77D 115A,B77D -115A,B7E9 115A,B7E9 -115A,B856 115A,B856 -115A,B8C3 115A,B8C3 -115A,B930 115A,B930 -115A,B99D 115A,B99D -115A,BA0A 115A,BA0A -115A,BA77 115A,BA77 -115A,BAE4 115A,BAE4 -115A,BB51 115A,BB51 -115A,BBBD 115A,BBBD -115A,BC2A 115A,BC2A -115A,BC97 115A,BC97 -115A,BD04 115A,BD04 -115A,BD71 115A,BD71 -115A,BDDE 115A,BDDE -115A,BE4B 115A,BE4B -115A,BEB8 115A,BEB8 -115A,BF25 115A,BF25 -115A,BF91 115A,BF91 -115A,BFFE 115A,BFFE -115A,C06B 115A,C06B -115A,C0D8 115A,C0D8 -115A,C145 115A,C145 -115A,C1B2 115A,C1B2 -115A,C21F 115A,C21F -115A,C28C 115A,C28C -115A,C2F9 115A,C2F9 -115A,C365 115A,C365 -115A,C3D2 115A,C3D2 -115A,C43F 115A,C43F -115A,C4AC 115A,C4AC -115A,C519 115A,C519 -115A,C586 115A,C586 -115A,C5F3 115A,C5F3 -115A,C660 115A,C660 -115A,C6CD 115A,C6CD -115A,C739 115A,C739 -115A,C7A6 115A,C7A6 -115A,C813 115A,C813 -115A,C880 115A,C880 -115A,C8ED 115A,C8ED -115A,C95A 115A,C95A -115A,C9C7 115A,C9C7 -115A,CA34 115A,CA34 -115A,CAA1 115A,CAA1 -115A,CB0D 115A,CB0D -115A,CB7A 115A,CB7A -115A,CBE7 115A,CBE7 -115A,CC54 115A,CC54 -115A,CCC1 115A,CCC1 -115A,CD2E 115A,CD2E -115A,CD9B 115A,CD9B -115A,CE08 115A,CE08 -115A,CE75 115A,CE75 -115A,CEE1 115A,CEE1 -115A,CF4E 115A,CF4E -115A,CFBB 115A,CFBB -115A,D028 115A,D028 -115A,D095 115A,D095 -115A,D102 115A,D102 -115A,D16F 115A,D16F -115A,D1DC 115A,D1DC -115A,D249 115A,D249 -115A,D2B5 115A,D2B5 -115A,D322 115A,D322 -115A,D38F 115A,D38F -115A,D3FC 115A,D3FC -115A,D469 115A,D469 -115A,D4D6 115A,D4D6 -115A,D543 115A,D543 -115A,D5B0 115A,D5B0 -115A,D61D 115A,D61D -115A,D689 115A,D689 -115A,D6F6 115A,D6F6 -115A,D763 115A,D763 -115B,AC01 115B,AC01 -115B,AC6D 115B,AC6D -115B,ACDA 115B,ACDA -115B,AD47 115B,AD47 -115B,ADB4 115B,ADB4 -115B,AE21 115B,AE21 -115B,AE8E 115B,AE8E -115B,AEFB 115B,AEFB -115B,AF68 115B,AF68 -115B,AFD5 115B,AFD5 -115B,B041 115B,B041 -115B,B0AE 115B,B0AE -115B,B11B 115B,B11B -115B,B188 115B,B188 -115B,B1F5 115B,B1F5 -115B,B262 115B,B262 -115B,B2CF 115B,B2CF -115B,B33C 115B,B33C -115B,B3A9 115B,B3A9 -115B,B415 115B,B415 -115B,B482 115B,B482 -115B,B4EF 115B,B4EF -115B,B55C 115B,B55C -115B,B5C9 115B,B5C9 -115B,B636 115B,B636 -115B,B6A3 115B,B6A3 -115B,B710 115B,B710 -115B,B77D 115B,B77D -115B,B7E9 115B,B7E9 -115B,B856 115B,B856 -115B,B8C3 115B,B8C3 -115B,B930 115B,B930 -115B,B99D 115B,B99D -115B,BA0A 115B,BA0A -115B,BA77 115B,BA77 -115B,BAE4 115B,BAE4 -115B,BB51 115B,BB51 -115B,BBBD 115B,BBBD -115B,BC2A 115B,BC2A -115B,BC97 115B,BC97 -115B,BD04 115B,BD04 -115B,BD71 115B,BD71 -115B,BDDE 115B,BDDE -115B,BE4B 115B,BE4B -115B,BEB8 115B,BEB8 -115B,BF25 115B,BF25 -115B,BF91 115B,BF91 -115B,BFFE 115B,BFFE -115B,C06B 115B,C06B -115B,C0D8 115B,C0D8 -115B,C145 115B,C145 -115B,C1B2 115B,C1B2 -115B,C21F 115B,C21F -115B,C28C 115B,C28C -115B,C2F9 115B,C2F9 -115B,C365 115B,C365 -115B,C3D2 115B,C3D2 -115B,C43F 115B,C43F -115B,C4AC 115B,C4AC -115B,C519 115B,C519 -115B,C586 115B,C586 -115B,C5F3 115B,C5F3 -115B,C660 115B,C660 -115B,C6CD 115B,C6CD -115B,C739 115B,C739 -115B,C7A6 115B,C7A6 -115B,C813 115B,C813 -115B,C880 115B,C880 -115B,C8ED 115B,C8ED -115B,C95A 115B,C95A -115B,C9C7 115B,C9C7 -115B,CA34 115B,CA34 -115B,CAA1 115B,CAA1 -115B,CB0D 115B,CB0D -115B,CB7A 115B,CB7A -115B,CBE7 115B,CBE7 -115B,CC54 115B,CC54 -115B,CCC1 115B,CCC1 -115B,CD2E 115B,CD2E -115B,CD9B 115B,CD9B -115B,CE08 115B,CE08 -115B,CE75 115B,CE75 -115B,CEE1 115B,CEE1 -115B,CF4E 115B,CF4E -115B,CFBB 115B,CFBB -115B,D028 115B,D028 -115B,D095 115B,D095 -115B,D102 115B,D102 -115B,D16F 115B,D16F -115B,D1DC 115B,D1DC -115B,D249 115B,D249 -115B,D2B5 115B,D2B5 -115B,D322 115B,D322 -115B,D38F 115B,D38F -115B,D3FC 115B,D3FC -115B,D469 115B,D469 -115B,D4D6 115B,D4D6 -115B,D543 115B,D543 -115B,D5B0 115B,D5B0 -115B,D61D 115B,D61D -115B,D689 115B,D689 -115B,D6F6 115B,D6F6 -115B,D763 115B,D763 -115C,AC01 115C,AC01 -115C,AC6D 115C,AC6D -115C,ACDA 115C,ACDA -115C,AD47 115C,AD47 -115C,ADB4 115C,ADB4 -115C,AE21 115C,AE21 -115C,AE8E 115C,AE8E -115C,AEFB 115C,AEFB -115C,AF68 115C,AF68 -115C,AFD5 115C,AFD5 -115C,B041 115C,B041 -115C,B0AE 115C,B0AE -115C,B11B 115C,B11B -115C,B188 115C,B188 -115C,B1F5 115C,B1F5 -115C,B262 115C,B262 -115C,B2CF 115C,B2CF -115C,B33C 115C,B33C -115C,B3A9 115C,B3A9 -115C,B415 115C,B415 -115C,B482 115C,B482 -115C,B4EF 115C,B4EF -115C,B55C 115C,B55C -115C,B5C9 115C,B5C9 -115C,B636 115C,B636 -115C,B6A3 115C,B6A3 -115C,B710 115C,B710 -115C,B77D 115C,B77D -115C,B7E9 115C,B7E9 -115C,B856 115C,B856 -115C,B8C3 115C,B8C3 -115C,B930 115C,B930 -115C,B99D 115C,B99D -115C,BA0A 115C,BA0A -115C,BA77 115C,BA77 -115C,BAE4 115C,BAE4 -115C,BB51 115C,BB51 -115C,BBBD 115C,BBBD -115C,BC2A 115C,BC2A -115C,BC97 115C,BC97 -115C,BD04 115C,BD04 -115C,BD71 115C,BD71 -115C,BDDE 115C,BDDE -115C,BE4B 115C,BE4B -115C,BEB8 115C,BEB8 -115C,BF25 115C,BF25 -115C,BF91 115C,BF91 -115C,BFFE 115C,BFFE -115C,C06B 115C,C06B -115C,C0D8 115C,C0D8 -115C,C145 115C,C145 -115C,C1B2 115C,C1B2 -115C,C21F 115C,C21F -115C,C28C 115C,C28C -115C,C2F9 115C,C2F9 -115C,C365 115C,C365 -115C,C3D2 115C,C3D2 -115C,C43F 115C,C43F -115C,C4AC 115C,C4AC -115C,C519 115C,C519 -115C,C586 115C,C586 -115C,C5F3 115C,C5F3 -115C,C660 115C,C660 -115C,C6CD 115C,C6CD -115C,C739 115C,C739 -115C,C7A6 115C,C7A6 -115C,C813 115C,C813 -115C,C880 115C,C880 -115C,C8ED 115C,C8ED -115C,C95A 115C,C95A -115C,C9C7 115C,C9C7 -115C,CA34 115C,CA34 -115C,CAA1 115C,CAA1 -115C,CB0D 115C,CB0D -115C,CB7A 115C,CB7A -115C,CBE7 115C,CBE7 -115C,CC54 115C,CC54 -115C,CCC1 115C,CCC1 -115C,CD2E 115C,CD2E -115C,CD9B 115C,CD9B -115C,CE08 115C,CE08 -115C,CE75 115C,CE75 -115C,CEE1 115C,CEE1 -115C,CF4E 115C,CF4E -115C,CFBB 115C,CFBB -115C,D028 115C,D028 -115C,D095 115C,D095 -115C,D102 115C,D102 -115C,D16F 115C,D16F -115C,D1DC 115C,D1DC -115C,D249 115C,D249 -115C,D2B5 115C,D2B5 -115C,D322 115C,D322 -115C,D38F 115C,D38F -115C,D3FC 115C,D3FC -115C,D469 115C,D469 -115C,D4D6 115C,D4D6 -115C,D543 115C,D543 -115C,D5B0 115C,D5B0 -115C,D61D 115C,D61D -115C,D689 115C,D689 -115C,D6F6 115C,D6F6 -115C,D763 115C,D763 -115D,AC01 115D,AC01 -115D,AC6D 115D,AC6D -115D,ACDA 115D,ACDA -115D,AD47 115D,AD47 -115D,ADB4 115D,ADB4 -115D,AE21 115D,AE21 -115D,AE8E 115D,AE8E -115D,AEFB 115D,AEFB -115D,AF68 115D,AF68 -115D,AFD5 115D,AFD5 -115D,B041 115D,B041 -115D,B0AE 115D,B0AE -115D,B11B 115D,B11B -115D,B188 115D,B188 -115D,B1F5 115D,B1F5 -115D,B262 115D,B262 -115D,B2CF 115D,B2CF -115D,B33C 115D,B33C -115D,B3A9 115D,B3A9 -115D,B415 115D,B415 -115D,B482 115D,B482 -115D,B4EF 115D,B4EF -115D,B55C 115D,B55C -115D,B5C9 115D,B5C9 -115D,B636 115D,B636 -115D,B6A3 115D,B6A3 -115D,B710 115D,B710 -115D,B77D 115D,B77D -115D,B7E9 115D,B7E9 -115D,B856 115D,B856 -115D,B8C3 115D,B8C3 -115D,B930 115D,B930 -115D,B99D 115D,B99D -115D,BA0A 115D,BA0A -115D,BA77 115D,BA77 -115D,BAE4 115D,BAE4 -115D,BB51 115D,BB51 -115D,BBBD 115D,BBBD -115D,BC2A 115D,BC2A -115D,BC97 115D,BC97 -115D,BD04 115D,BD04 -115D,BD71 115D,BD71 -115D,BDDE 115D,BDDE -115D,BE4B 115D,BE4B -115D,BEB8 115D,BEB8 -115D,BF25 115D,BF25 -115D,BF91 115D,BF91 -115D,BFFE 115D,BFFE -115D,C06B 115D,C06B -115D,C0D8 115D,C0D8 -115D,C145 115D,C145 -115D,C1B2 115D,C1B2 -115D,C21F 115D,C21F -115D,C28C 115D,C28C -115D,C2F9 115D,C2F9 -115D,C365 115D,C365 -115D,C3D2 115D,C3D2 -115D,C43F 115D,C43F -115D,C4AC 115D,C4AC -115D,C519 115D,C519 -115D,C586 115D,C586 -115D,C5F3 115D,C5F3 -115D,C660 115D,C660 -115D,C6CD 115D,C6CD -115D,C739 115D,C739 -115D,C7A6 115D,C7A6 -115D,C813 115D,C813 -115D,C880 115D,C880 -115D,C8ED 115D,C8ED -115D,C95A 115D,C95A -115D,C9C7 115D,C9C7 -115D,CA34 115D,CA34 -115D,CAA1 115D,CAA1 -115D,CB0D 115D,CB0D -115D,CB7A 115D,CB7A -115D,CBE7 115D,CBE7 -115D,CC54 115D,CC54 -115D,CCC1 115D,CCC1 -115D,CD2E 115D,CD2E -115D,CD9B 115D,CD9B -115D,CE08 115D,CE08 -115D,CE75 115D,CE75 -115D,CEE1 115D,CEE1 -115D,CF4E 115D,CF4E -115D,CFBB 115D,CFBB -115D,D028 115D,D028 -115D,D095 115D,D095 -115D,D102 115D,D102 -115D,D16F 115D,D16F -115D,D1DC 115D,D1DC -115D,D249 115D,D249 -115D,D2B5 115D,D2B5 -115D,D322 115D,D322 -115D,D38F 115D,D38F -115D,D3FC 115D,D3FC -115D,D469 115D,D469 -115D,D4D6 115D,D4D6 -115D,D543 115D,D543 -115D,D5B0 115D,D5B0 -115D,D61D 115D,D61D -115D,D689 115D,D689 -115D,D6F6 115D,D6F6 -115D,D763 115D,D763 -115E,AC01 115E,AC01 -115E,AC6D 115E,AC6D -115E,ACDA 115E,ACDA -115E,AD47 115E,AD47 -115E,ADB4 115E,ADB4 -115E,AE21 115E,AE21 -115E,AE8E 115E,AE8E -115E,AEFB 115E,AEFB -115E,AF68 115E,AF68 -115E,AFD5 115E,AFD5 -115E,B041 115E,B041 -115E,B0AE 115E,B0AE -115E,B11B 115E,B11B -115E,B188 115E,B188 -115E,B1F5 115E,B1F5 -115E,B262 115E,B262 -115E,B2CF 115E,B2CF -115E,B33C 115E,B33C -115E,B3A9 115E,B3A9 -115E,B415 115E,B415 -115E,B482 115E,B482 -115E,B4EF 115E,B4EF -115E,B55C 115E,B55C -115E,B5C9 115E,B5C9 -115E,B636 115E,B636 -115E,B6A3 115E,B6A3 -115E,B710 115E,B710 -115E,B77D 115E,B77D -115E,B7E9 115E,B7E9 -115E,B856 115E,B856 -115E,B8C3 115E,B8C3 -115E,B930 115E,B930 -115E,B99D 115E,B99D -115E,BA0A 115E,BA0A -115E,BA77 115E,BA77 -115E,BAE4 115E,BAE4 -115E,BB51 115E,BB51 -115E,BBBD 115E,BBBD -115E,BC2A 115E,BC2A -115E,BC97 115E,BC97 -115E,BD04 115E,BD04 -115E,BD71 115E,BD71 -115E,BDDE 115E,BDDE -115E,BE4B 115E,BE4B -115E,BEB8 115E,BEB8 -115E,BF25 115E,BF25 -115E,BF91 115E,BF91 -115E,BFFE 115E,BFFE -115E,C06B 115E,C06B -115E,C0D8 115E,C0D8 -115E,C145 115E,C145 -115E,C1B2 115E,C1B2 -115E,C21F 115E,C21F -115E,C28C 115E,C28C -115E,C2F9 115E,C2F9 -115E,C365 115E,C365 -115E,C3D2 115E,C3D2 -115E,C43F 115E,C43F -115E,C4AC 115E,C4AC -115E,C519 115E,C519 -115E,C586 115E,C586 -115E,C5F3 115E,C5F3 -115E,C660 115E,C660 -115E,C6CD 115E,C6CD -115E,C739 115E,C739 -115E,C7A6 115E,C7A6 -115E,C813 115E,C813 -115E,C880 115E,C880 -115E,C8ED 115E,C8ED -115E,C95A 115E,C95A -115E,C9C7 115E,C9C7 -115E,CA34 115E,CA34 -115E,CAA1 115E,CAA1 -115E,CB0D 115E,CB0D -115E,CB7A 115E,CB7A -115E,CBE7 115E,CBE7 -115E,CC54 115E,CC54 -115E,CCC1 115E,CCC1 -115E,CD2E 115E,CD2E -115E,CD9B 115E,CD9B -115E,CE08 115E,CE08 -115E,CE75 115E,CE75 -115E,CEE1 115E,CEE1 -115E,CF4E 115E,CF4E -115E,CFBB 115E,CFBB -115E,D028 115E,D028 -115E,D095 115E,D095 -115E,D102 115E,D102 -115E,D16F 115E,D16F -115E,D1DC 115E,D1DC -115E,D249 115E,D249 -115E,D2B5 115E,D2B5 -115E,D322 115E,D322 -115E,D38F 115E,D38F -115E,D3FC 115E,D3FC -115E,D469 115E,D469 -115E,D4D6 115E,D4D6 -115E,D543 115E,D543 -115E,D5B0 115E,D5B0 -115E,D61D 115E,D61D -115E,D689 115E,D689 -115E,D6F6 115E,D6F6 -115E,D763 115E,D763 -115F,AC01 115F,AC01 -115F,AC6D 115F,AC6D -115F,ACDA 115F,ACDA -115F,AD47 115F,AD47 -115F,ADB4 115F,ADB4 -115F,AE21 115F,AE21 -115F,AE8E 115F,AE8E -115F,AEFB 115F,AEFB -115F,AF68 115F,AF68 -115F,AFD5 115F,AFD5 -115F,B041 115F,B041 -115F,B0AE 115F,B0AE -115F,B11B 115F,B11B -115F,B188 115F,B188 -115F,B1F5 115F,B1F5 -115F,B262 115F,B262 -115F,B2CF 115F,B2CF -115F,B33C 115F,B33C -115F,B3A9 115F,B3A9 -115F,B415 115F,B415 -115F,B482 115F,B482 -115F,B4EF 115F,B4EF -115F,B55C 115F,B55C -115F,B5C9 115F,B5C9 -115F,B636 115F,B636 -115F,B6A3 115F,B6A3 -115F,B710 115F,B710 -115F,B77D 115F,B77D -115F,B7E9 115F,B7E9 -115F,B856 115F,B856 -115F,B8C3 115F,B8C3 -115F,B930 115F,B930 -115F,B99D 115F,B99D -115F,BA0A 115F,BA0A -115F,BA77 115F,BA77 -115F,BAE4 115F,BAE4 -115F,BB51 115F,BB51 -115F,BBBD 115F,BBBD -115F,BC2A 115F,BC2A -115F,BC97 115F,BC97 -115F,BD04 115F,BD04 -115F,BD71 115F,BD71 -115F,BDDE 115F,BDDE -115F,BE4B 115F,BE4B -115F,BEB8 115F,BEB8 -115F,BF25 115F,BF25 -115F,BF91 115F,BF91 -115F,BFFE 115F,BFFE -115F,C06B 115F,C06B -115F,C0D8 115F,C0D8 -115F,C145 115F,C145 -115F,C1B2 115F,C1B2 -115F,C21F 115F,C21F -115F,C28C 115F,C28C -115F,C2F9 115F,C2F9 -115F,C365 115F,C365 -115F,C3D2 115F,C3D2 -115F,C43F 115F,C43F -115F,C4AC 115F,C4AC -115F,C519 115F,C519 -115F,C586 115F,C586 -115F,C5F3 115F,C5F3 -115F,C660 115F,C660 -115F,C6CD 115F,C6CD -115F,C739 115F,C739 -115F,C7A6 115F,C7A6 -115F,C813 115F,C813 -115F,C880 115F,C880 -115F,C8ED 115F,C8ED -115F,C95A 115F,C95A -115F,C9C7 115F,C9C7 -115F,CA34 115F,CA34 -115F,CAA1 115F,CAA1 -115F,CB0D 115F,CB0D -115F,CB7A 115F,CB7A -115F,CBE7 115F,CBE7 -115F,CC54 115F,CC54 -115F,CCC1 115F,CCC1 -115F,CD2E 115F,CD2E -115F,CD9B 115F,CD9B -115F,CE08 115F,CE08 -115F,CE75 115F,CE75 -115F,CEE1 115F,CEE1 -115F,CF4E 115F,CF4E -115F,CFBB 115F,CFBB -115F,D028 115F,D028 -115F,D095 115F,D095 -115F,D102 115F,D102 -115F,D16F 115F,D16F -115F,D1DC 115F,D1DC -115F,D249 115F,D249 -115F,D2B5 115F,D2B5 -115F,D322 115F,D322 -115F,D38F 115F,D38F -115F,D3FC 115F,D3FC -115F,D469 115F,D469 -115F,D4D6 115F,D4D6 -115F,D543 115F,D543 -115F,D5B0 115F,D5B0 -115F,D61D 115F,D61D -115F,D689 115F,D689 -115F,D6F6 115F,D6F6 -115F,D763 115F,D763 -600,AC00 600,AC00 -600,AE4C 600,AE4C -600,D55C 600,D55C -6DD,AC00 6DD,AC00 -6DD,AE4C 6DD,AE4C -6DD,D55C 6DD,D55C -890,AC00 890,AC00 -890,AE4C 890,AE4C -890,D55C 890,D55C -D4E,AC00 D4E,AC00 -D4E,AE4C D4E,AE4C -D4E,D55C D4E,D55C -11A3A,AC00 11A3A,AC00 -11A3A,AE4C 11A3A,AE4C -11A3A,D55C 11A3A,D55C -11D46,AC00 11D46,AC00 -11D46,AE4C 11D46,AE4C -11D46,D55C 11D46,D55C -11F02,AC00 11F02,AC00 -11F02,AE4C 11F02,AE4C -11F02,D55C 11F02,D55C -# --- group 2C: jamo + bare jamo (reverse direction of 2B) (126 rows) --- -600,1100,1161 600,AC00 -600,1100,1162 600,AC1C -600,1100,1163 600,AC38 -600,1101,1161 600,AE4C -600,1101,1162 600,AE68 -600,1101,1163 600,AE84 -600,1102,1161 600,B098 -600,1102,1162 600,B0B4 -600,1102,1163 600,B0D0 -600,1103,1161 600,B2E4 -600,1103,1162 600,B300 -600,1103,1163 600,B31C -600,1104,1161 600,B530 -600,1104,1162 600,B54C -600,1104,1163 600,B568 -600,1105,1161 600,B77C -600,1105,1162 600,B798 -600,1105,1163 600,B7B4 -6DD,1100,1161 6DD,AC00 -6DD,1100,1162 6DD,AC1C -6DD,1100,1163 6DD,AC38 -6DD,1101,1161 6DD,AE4C -6DD,1101,1162 6DD,AE68 -6DD,1101,1163 6DD,AE84 -6DD,1102,1161 6DD,B098 -6DD,1102,1162 6DD,B0B4 -6DD,1102,1163 6DD,B0D0 -6DD,1103,1161 6DD,B2E4 -6DD,1103,1162 6DD,B300 -6DD,1103,1163 6DD,B31C -6DD,1104,1161 6DD,B530 -6DD,1104,1162 6DD,B54C -6DD,1104,1163 6DD,B568 -6DD,1105,1161 6DD,B77C -6DD,1105,1162 6DD,B798 -6DD,1105,1163 6DD,B7B4 -890,1100,1161 890,AC00 -890,1100,1162 890,AC1C -890,1100,1163 890,AC38 -890,1101,1161 890,AE4C -890,1101,1162 890,AE68 -890,1101,1163 890,AE84 -890,1102,1161 890,B098 -890,1102,1162 890,B0B4 -890,1102,1163 890,B0D0 -890,1103,1161 890,B2E4 -890,1103,1162 890,B300 -890,1103,1163 890,B31C -890,1104,1161 890,B530 -890,1104,1162 890,B54C -890,1104,1163 890,B568 -890,1105,1161 890,B77C -890,1105,1162 890,B798 -890,1105,1163 890,B7B4 -D4E,1100,1161 D4E,AC00 -D4E,1100,1162 D4E,AC1C -D4E,1100,1163 D4E,AC38 -D4E,1101,1161 D4E,AE4C -D4E,1101,1162 D4E,AE68 -D4E,1101,1163 D4E,AE84 -D4E,1102,1161 D4E,B098 -D4E,1102,1162 D4E,B0B4 -D4E,1102,1163 D4E,B0D0 -D4E,1103,1161 D4E,B2E4 -D4E,1103,1162 D4E,B300 -D4E,1103,1163 D4E,B31C -D4E,1104,1161 D4E,B530 -D4E,1104,1162 D4E,B54C -D4E,1104,1163 D4E,B568 -D4E,1105,1161 D4E,B77C -D4E,1105,1162 D4E,B798 -D4E,1105,1163 D4E,B7B4 -11A3A,1100,1161 11A3A,AC00 -11A3A,1100,1162 11A3A,AC1C -11A3A,1100,1163 11A3A,AC38 -11A3A,1101,1161 11A3A,AE4C -11A3A,1101,1162 11A3A,AE68 -11A3A,1101,1163 11A3A,AE84 -11A3A,1102,1161 11A3A,B098 -11A3A,1102,1162 11A3A,B0B4 -11A3A,1102,1163 11A3A,B0D0 -11A3A,1103,1161 11A3A,B2E4 -11A3A,1103,1162 11A3A,B300 -11A3A,1103,1163 11A3A,B31C -11A3A,1104,1161 11A3A,B530 -11A3A,1104,1162 11A3A,B54C -11A3A,1104,1163 11A3A,B568 -11A3A,1105,1161 11A3A,B77C -11A3A,1105,1162 11A3A,B798 -11A3A,1105,1163 11A3A,B7B4 -11D46,1100,1161 11D46,AC00 -11D46,1100,1162 11D46,AC1C -11D46,1100,1163 11D46,AC38 -11D46,1101,1161 11D46,AE4C -11D46,1101,1162 11D46,AE68 -11D46,1101,1163 11D46,AE84 -11D46,1102,1161 11D46,B098 -11D46,1102,1162 11D46,B0B4 -11D46,1102,1163 11D46,B0D0 -11D46,1103,1161 11D46,B2E4 -11D46,1103,1162 11D46,B300 -11D46,1103,1163 11D46,B31C -11D46,1104,1161 11D46,B530 -11D46,1104,1162 11D46,B54C -11D46,1104,1163 11D46,B568 -11D46,1105,1161 11D46,B77C -11D46,1105,1162 11D46,B798 -11D46,1105,1163 11D46,B7B4 -11F02,1100,1161 11F02,AC00 -11F02,1100,1162 11F02,AC1C -11F02,1100,1163 11F02,AC38 -11F02,1101,1161 11F02,AE4C -11F02,1101,1162 11F02,AE68 -11F02,1101,1163 11F02,AE84 -11F02,1102,1161 11F02,B098 -11F02,1102,1162 11F02,B0B4 -11F02,1102,1163 11F02,B0D0 -11F02,1103,1161 11F02,B2E4 -11F02,1103,1162 11F02,B300 -11F02,1103,1163 11F02,B31C -11F02,1104,1161 11F02,B530 -11F02,1104,1162 11F02,B54C -11F02,1104,1163 11F02,B568 -11F02,1105,1161 11F02,B77C -11F02,1105,1162 11F02,B798 -11F02,1105,1163 11F02,B7B4 -# --- group 2D: OTP deletes U+11A7 (pure Hangul) (997 rows) --- -1100,AC00,11A7 1100,AC00,11A7 -1100,ACE0,11A7 1100,ACE0,11A7 -1100,ADC0,11A7 1100,ADC0,11A7 -1100,AEA0,11A7 1100,AEA0,11A7 -1100,AF80,11A7 1100,AF80,11A7 -1100,B060,11A7 1100,B060,11A7 -1100,B140,11A7 1100,B140,11A7 -1100,B220,11A7 1100,B220,11A7 -1100,B300,11A7 1100,B300,11A7 -1100,B3E0,11A7 1100,B3E0,11A7 -1100,B4C0,11A7 1100,B4C0,11A7 -1100,B5A0,11A7 1100,B5A0,11A7 -1100,B680,11A7 1100,B680,11A7 -1100,B760,11A7 1100,B760,11A7 -1100,B840,11A7 1100,B840,11A7 -1100,B920,11A7 1100,B920,11A7 -1100,BA00,11A7 1100,BA00,11A7 -1100,BAE0,11A7 1100,BAE0,11A7 -1100,BBC0,11A7 1100,BBC0,11A7 -1100,BCA0,11A7 1100,BCA0,11A7 -1100,BD80,11A7 1100,BD80,11A7 -1100,BE60,11A7 1100,BE60,11A7 -1100,BF40,11A7 1100,BF40,11A7 -1100,C020,11A7 1100,C020,11A7 -1100,C100,11A7 1100,C100,11A7 -1100,C1E0,11A7 1100,C1E0,11A7 -1100,C2C0,11A7 1100,C2C0,11A7 -1100,C3A0,11A7 1100,C3A0,11A7 -1100,C480,11A7 1100,C480,11A7 -1100,C560,11A7 1100,C560,11A7 -1100,C640,11A7 1100,C640,11A7 -1100,C720,11A7 1100,C720,11A7 -1100,C800,11A7 1100,C800,11A7 -1100,C8E0,11A7 1100,C8E0,11A7 -1100,C9C0,11A7 1100,C9C0,11A7 -1100,CAA0,11A7 1100,CAA0,11A7 -1100,CB80,11A7 1100,CB80,11A7 -1100,CC60,11A7 1100,CC60,11A7 -1100,CD40,11A7 1100,CD40,11A7 -1100,CE20,11A7 1100,CE20,11A7 -1100,CF00,11A7 1100,CF00,11A7 -1100,CFE0,11A7 1100,CFE0,11A7 -1100,D0C0,11A7 1100,D0C0,11A7 -1100,D1A0,11A7 1100,D1A0,11A7 -1100,D280,11A7 1100,D280,11A7 -1100,D360,11A7 1100,D360,11A7 -1100,D440,11A7 1100,D440,11A7 -1100,D520,11A7 1100,D520,11A7 -1100,D600,11A7 1100,D600,11A7 -1100,D6E0,11A7 1100,D6E0,11A7 -1101,AC00,11A7 1101,AC00,11A7 -1101,ACE0,11A7 1101,ACE0,11A7 -1101,ADC0,11A7 1101,ADC0,11A7 -1101,AEA0,11A7 1101,AEA0,11A7 -1101,AF80,11A7 1101,AF80,11A7 -1101,B060,11A7 1101,B060,11A7 -1101,B140,11A7 1101,B140,11A7 -1101,B220,11A7 1101,B220,11A7 -1101,B300,11A7 1101,B300,11A7 -1101,B3E0,11A7 1101,B3E0,11A7 -1101,B4C0,11A7 1101,B4C0,11A7 -1101,B5A0,11A7 1101,B5A0,11A7 -1101,B680,11A7 1101,B680,11A7 -1101,B760,11A7 1101,B760,11A7 -1101,B840,11A7 1101,B840,11A7 -1101,B920,11A7 1101,B920,11A7 -1101,BA00,11A7 1101,BA00,11A7 -1101,BAE0,11A7 1101,BAE0,11A7 -1101,BBC0,11A7 1101,BBC0,11A7 -1101,BCA0,11A7 1101,BCA0,11A7 -1101,BD80,11A7 1101,BD80,11A7 -1101,BE60,11A7 1101,BE60,11A7 -1101,BF40,11A7 1101,BF40,11A7 -1101,C020,11A7 1101,C020,11A7 -1101,C100,11A7 1101,C100,11A7 -1101,C1E0,11A7 1101,C1E0,11A7 -1101,C2C0,11A7 1101,C2C0,11A7 -1101,C3A0,11A7 1101,C3A0,11A7 -1101,C480,11A7 1101,C480,11A7 -1101,C560,11A7 1101,C560,11A7 -1101,C640,11A7 1101,C640,11A7 -1101,C720,11A7 1101,C720,11A7 -1101,C800,11A7 1101,C800,11A7 -1101,C8E0,11A7 1101,C8E0,11A7 -1101,C9C0,11A7 1101,C9C0,11A7 -1101,CAA0,11A7 1101,CAA0,11A7 -1101,CB80,11A7 1101,CB80,11A7 -1101,CC60,11A7 1101,CC60,11A7 -1101,CD40,11A7 1101,CD40,11A7 -1101,CE20,11A7 1101,CE20,11A7 -1101,CF00,11A7 1101,CF00,11A7 -1101,CFE0,11A7 1101,CFE0,11A7 -1101,D0C0,11A7 1101,D0C0,11A7 -1101,D1A0,11A7 1101,D1A0,11A7 -1101,D280,11A7 1101,D280,11A7 -1101,D360,11A7 1101,D360,11A7 -1101,D440,11A7 1101,D440,11A7 -1101,D520,11A7 1101,D520,11A7 -1101,D600,11A7 1101,D600,11A7 -1101,D6E0,11A7 1101,D6E0,11A7 -1102,AC00,11A7 1102,AC00,11A7 -1102,ACE0,11A7 1102,ACE0,11A7 -1102,ADC0,11A7 1102,ADC0,11A7 -1102,AEA0,11A7 1102,AEA0,11A7 -1102,AF80,11A7 1102,AF80,11A7 -1102,B060,11A7 1102,B060,11A7 -1102,B140,11A7 1102,B140,11A7 -1102,B220,11A7 1102,B220,11A7 -1102,B300,11A7 1102,B300,11A7 -1102,B3E0,11A7 1102,B3E0,11A7 -1102,B4C0,11A7 1102,B4C0,11A7 -1102,B5A0,11A7 1102,B5A0,11A7 -1102,B680,11A7 1102,B680,11A7 -1102,B760,11A7 1102,B760,11A7 -1102,B840,11A7 1102,B840,11A7 -1102,B920,11A7 1102,B920,11A7 -1102,BA00,11A7 1102,BA00,11A7 -1102,BAE0,11A7 1102,BAE0,11A7 -1102,BBC0,11A7 1102,BBC0,11A7 -1102,BCA0,11A7 1102,BCA0,11A7 -1102,BD80,11A7 1102,BD80,11A7 -1102,BE60,11A7 1102,BE60,11A7 -1102,BF40,11A7 1102,BF40,11A7 -1102,C020,11A7 1102,C020,11A7 -1102,C100,11A7 1102,C100,11A7 -1102,C1E0,11A7 1102,C1E0,11A7 -1102,C2C0,11A7 1102,C2C0,11A7 -1102,C3A0,11A7 1102,C3A0,11A7 -1102,C480,11A7 1102,C480,11A7 -1102,C560,11A7 1102,C560,11A7 -1102,C640,11A7 1102,C640,11A7 -1102,C720,11A7 1102,C720,11A7 -1102,C800,11A7 1102,C800,11A7 -1102,C8E0,11A7 1102,C8E0,11A7 -1102,C9C0,11A7 1102,C9C0,11A7 -1102,CAA0,11A7 1102,CAA0,11A7 -1102,CB80,11A7 1102,CB80,11A7 -1102,CC60,11A7 1102,CC60,11A7 -1102,CD40,11A7 1102,CD40,11A7 -1102,CE20,11A7 1102,CE20,11A7 -1102,CF00,11A7 1102,CF00,11A7 -1102,CFE0,11A7 1102,CFE0,11A7 -1102,D0C0,11A7 1102,D0C0,11A7 -1102,D1A0,11A7 1102,D1A0,11A7 -1102,D280,11A7 1102,D280,11A7 -1102,D360,11A7 1102,D360,11A7 -1102,D440,11A7 1102,D440,11A7 -1102,D520,11A7 1102,D520,11A7 -1102,D600,11A7 1102,D600,11A7 -1102,D6E0,11A7 1102,D6E0,11A7 -1103,AC00,11A7 1103,AC00,11A7 -1103,ACE0,11A7 1103,ACE0,11A7 -1103,ADC0,11A7 1103,ADC0,11A7 -1103,AEA0,11A7 1103,AEA0,11A7 -1103,AF80,11A7 1103,AF80,11A7 -1103,B060,11A7 1103,B060,11A7 -1103,B140,11A7 1103,B140,11A7 -1103,B220,11A7 1103,B220,11A7 -1103,B300,11A7 1103,B300,11A7 -1103,B3E0,11A7 1103,B3E0,11A7 -1103,B4C0,11A7 1103,B4C0,11A7 -1103,B5A0,11A7 1103,B5A0,11A7 -1103,B680,11A7 1103,B680,11A7 -1103,B760,11A7 1103,B760,11A7 -1103,B840,11A7 1103,B840,11A7 -1103,B920,11A7 1103,B920,11A7 -1103,BA00,11A7 1103,BA00,11A7 -1103,BAE0,11A7 1103,BAE0,11A7 -1103,BBC0,11A7 1103,BBC0,11A7 -1103,BCA0,11A7 1103,BCA0,11A7 -1103,BD80,11A7 1103,BD80,11A7 -1103,BE60,11A7 1103,BE60,11A7 -1103,BF40,11A7 1103,BF40,11A7 -1103,C020,11A7 1103,C020,11A7 -1103,C100,11A7 1103,C100,11A7 -1103,C1E0,11A7 1103,C1E0,11A7 -1103,C2C0,11A7 1103,C2C0,11A7 -1103,C3A0,11A7 1103,C3A0,11A7 -1103,C480,11A7 1103,C480,11A7 -1103,C560,11A7 1103,C560,11A7 -1103,C640,11A7 1103,C640,11A7 -1103,C720,11A7 1103,C720,11A7 -1103,C800,11A7 1103,C800,11A7 -1103,C8E0,11A7 1103,C8E0,11A7 -1103,C9C0,11A7 1103,C9C0,11A7 -1103,CAA0,11A7 1103,CAA0,11A7 -1103,CB80,11A7 1103,CB80,11A7 -1103,CC60,11A7 1103,CC60,11A7 -1103,CD40,11A7 1103,CD40,11A7 -1103,CE20,11A7 1103,CE20,11A7 -1103,CF00,11A7 1103,CF00,11A7 -1103,CFE0,11A7 1103,CFE0,11A7 -1103,D0C0,11A7 1103,D0C0,11A7 -1103,D1A0,11A7 1103,D1A0,11A7 -1103,D280,11A7 1103,D280,11A7 -1103,D360,11A7 1103,D360,11A7 -1103,D440,11A7 1103,D440,11A7 -1103,D520,11A7 1103,D520,11A7 -1103,D600,11A7 1103,D600,11A7 -1103,D6E0,11A7 1103,D6E0,11A7 -1104,AC00,11A7 1104,AC00,11A7 -1104,ACE0,11A7 1104,ACE0,11A7 -1104,ADC0,11A7 1104,ADC0,11A7 -1104,AEA0,11A7 1104,AEA0,11A7 -1104,AF80,11A7 1104,AF80,11A7 -1104,B060,11A7 1104,B060,11A7 -1104,B140,11A7 1104,B140,11A7 -1104,B220,11A7 1104,B220,11A7 -1104,B300,11A7 1104,B300,11A7 -1104,B3E0,11A7 1104,B3E0,11A7 -1104,B4C0,11A7 1104,B4C0,11A7 -1104,B5A0,11A7 1104,B5A0,11A7 -1104,B680,11A7 1104,B680,11A7 -1104,B760,11A7 1104,B760,11A7 -1104,B840,11A7 1104,B840,11A7 -1104,B920,11A7 1104,B920,11A7 -1104,BA00,11A7 1104,BA00,11A7 -1104,BAE0,11A7 1104,BAE0,11A7 -1104,BBC0,11A7 1104,BBC0,11A7 -1104,BCA0,11A7 1104,BCA0,11A7 -1104,BD80,11A7 1104,BD80,11A7 -1104,BE60,11A7 1104,BE60,11A7 -1104,BF40,11A7 1104,BF40,11A7 -1104,C020,11A7 1104,C020,11A7 -1104,C100,11A7 1104,C100,11A7 -1104,C1E0,11A7 1104,C1E0,11A7 -1104,C2C0,11A7 1104,C2C0,11A7 -1104,C3A0,11A7 1104,C3A0,11A7 -1104,C480,11A7 1104,C480,11A7 -1104,C560,11A7 1104,C560,11A7 -1104,C640,11A7 1104,C640,11A7 -1104,C720,11A7 1104,C720,11A7 -1104,C800,11A7 1104,C800,11A7 -1104,C8E0,11A7 1104,C8E0,11A7 -1104,C9C0,11A7 1104,C9C0,11A7 -1104,CAA0,11A7 1104,CAA0,11A7 -1104,CB80,11A7 1104,CB80,11A7 -1104,CC60,11A7 1104,CC60,11A7 -1104,CD40,11A7 1104,CD40,11A7 -1104,CE20,11A7 1104,CE20,11A7 -1104,CF00,11A7 1104,CF00,11A7 -1104,CFE0,11A7 1104,CFE0,11A7 -1104,D0C0,11A7 1104,D0C0,11A7 -1104,D1A0,11A7 1104,D1A0,11A7 -1104,D280,11A7 1104,D280,11A7 -1104,D360,11A7 1104,D360,11A7 -1104,D440,11A7 1104,D440,11A7 -1104,D520,11A7 1104,D520,11A7 -1104,D600,11A7 1104,D600,11A7 -1104,D6E0,11A7 1104,D6E0,11A7 -1105,AC00,11A7 1105,AC00,11A7 -1105,ACE0,11A7 1105,ACE0,11A7 -1105,ADC0,11A7 1105,ADC0,11A7 -1105,AEA0,11A7 1105,AEA0,11A7 -1105,AF80,11A7 1105,AF80,11A7 -1105,B060,11A7 1105,B060,11A7 -1105,B140,11A7 1105,B140,11A7 -1105,B220,11A7 1105,B220,11A7 -1105,B300,11A7 1105,B300,11A7 -1105,B3E0,11A7 1105,B3E0,11A7 -1105,B4C0,11A7 1105,B4C0,11A7 -1105,B5A0,11A7 1105,B5A0,11A7 -1105,B680,11A7 1105,B680,11A7 -1105,B760,11A7 1105,B760,11A7 -1105,B840,11A7 1105,B840,11A7 -1105,B920,11A7 1105,B920,11A7 -1105,BA00,11A7 1105,BA00,11A7 -1105,BAE0,11A7 1105,BAE0,11A7 -1105,BBC0,11A7 1105,BBC0,11A7 -1105,BCA0,11A7 1105,BCA0,11A7 -1105,BD80,11A7 1105,BD80,11A7 -1105,BE60,11A7 1105,BE60,11A7 -1105,BF40,11A7 1105,BF40,11A7 -1105,C020,11A7 1105,C020,11A7 -1105,C100,11A7 1105,C100,11A7 -1105,C1E0,11A7 1105,C1E0,11A7 -1105,C2C0,11A7 1105,C2C0,11A7 -1105,C3A0,11A7 1105,C3A0,11A7 -1105,C480,11A7 1105,C480,11A7 -1105,C560,11A7 1105,C560,11A7 -1105,C640,11A7 1105,C640,11A7 -1105,C720,11A7 1105,C720,11A7 -1105,C800,11A7 1105,C800,11A7 -1105,C8E0,11A7 1105,C8E0,11A7 -1105,C9C0,11A7 1105,C9C0,11A7 -1105,CAA0,11A7 1105,CAA0,11A7 -1105,CB80,11A7 1105,CB80,11A7 -1105,CC60,11A7 1105,CC60,11A7 -1105,CD40,11A7 1105,CD40,11A7 -1105,CE20,11A7 1105,CE20,11A7 -1105,CF00,11A7 1105,CF00,11A7 -1105,CFE0,11A7 1105,CFE0,11A7 -1105,D0C0,11A7 1105,D0C0,11A7 -1105,D1A0,11A7 1105,D1A0,11A7 -1105,D280,11A7 1105,D280,11A7 -1105,D360,11A7 1105,D360,11A7 -1105,D440,11A7 1105,D440,11A7 -1105,D520,11A7 1105,D520,11A7 -1105,D600,11A7 1105,D600,11A7 -1105,D6E0,11A7 1105,D6E0,11A7 -1106,AC00,11A7 1106,AC00,11A7 -1106,ACE0,11A7 1106,ACE0,11A7 -1106,ADC0,11A7 1106,ADC0,11A7 -1106,AEA0,11A7 1106,AEA0,11A7 -1106,AF80,11A7 1106,AF80,11A7 -1106,B060,11A7 1106,B060,11A7 -1106,B140,11A7 1106,B140,11A7 -1106,B220,11A7 1106,B220,11A7 -1106,B300,11A7 1106,B300,11A7 -1106,B3E0,11A7 1106,B3E0,11A7 -1106,B4C0,11A7 1106,B4C0,11A7 -1106,B5A0,11A7 1106,B5A0,11A7 -1106,B680,11A7 1106,B680,11A7 -1106,B760,11A7 1106,B760,11A7 -1106,B840,11A7 1106,B840,11A7 -1106,B920,11A7 1106,B920,11A7 -1106,BA00,11A7 1106,BA00,11A7 -1106,BAE0,11A7 1106,BAE0,11A7 -1106,BBC0,11A7 1106,BBC0,11A7 -1106,BCA0,11A7 1106,BCA0,11A7 -1106,BD80,11A7 1106,BD80,11A7 -1106,BE60,11A7 1106,BE60,11A7 -1106,BF40,11A7 1106,BF40,11A7 -1106,C020,11A7 1106,C020,11A7 -1106,C100,11A7 1106,C100,11A7 -1106,C1E0,11A7 1106,C1E0,11A7 -1106,C2C0,11A7 1106,C2C0,11A7 -1106,C3A0,11A7 1106,C3A0,11A7 -1106,C480,11A7 1106,C480,11A7 -1106,C560,11A7 1106,C560,11A7 -1106,C640,11A7 1106,C640,11A7 -1106,C720,11A7 1106,C720,11A7 -1106,C800,11A7 1106,C800,11A7 -1106,C8E0,11A7 1106,C8E0,11A7 -1106,C9C0,11A7 1106,C9C0,11A7 -1106,CAA0,11A7 1106,CAA0,11A7 -1106,CB80,11A7 1106,CB80,11A7 -1106,CC60,11A7 1106,CC60,11A7 -1106,CD40,11A7 1106,CD40,11A7 -1106,CE20,11A7 1106,CE20,11A7 -1106,CF00,11A7 1106,CF00,11A7 -1106,CFE0,11A7 1106,CFE0,11A7 -1106,D0C0,11A7 1106,D0C0,11A7 -1106,D1A0,11A7 1106,D1A0,11A7 -1106,D280,11A7 1106,D280,11A7 -1106,D360,11A7 1106,D360,11A7 -1106,D440,11A7 1106,D440,11A7 -1106,D520,11A7 1106,D520,11A7 -1106,D600,11A7 1106,D600,11A7 -1106,D6E0,11A7 1106,D6E0,11A7 -1107,AC00,11A7 1107,AC00,11A7 -1107,ACE0,11A7 1107,ACE0,11A7 -1107,ADC0,11A7 1107,ADC0,11A7 -1107,AEA0,11A7 1107,AEA0,11A7 -1107,AF80,11A7 1107,AF80,11A7 -1107,B060,11A7 1107,B060,11A7 -1107,B140,11A7 1107,B140,11A7 -1107,B220,11A7 1107,B220,11A7 -1107,B300,11A7 1107,B300,11A7 -1107,B3E0,11A7 1107,B3E0,11A7 -1107,B4C0,11A7 1107,B4C0,11A7 -1107,B5A0,11A7 1107,B5A0,11A7 -1107,B680,11A7 1107,B680,11A7 -1107,B760,11A7 1107,B760,11A7 -1107,B840,11A7 1107,B840,11A7 -1107,B920,11A7 1107,B920,11A7 -1107,BA00,11A7 1107,BA00,11A7 -1107,BAE0,11A7 1107,BAE0,11A7 -1107,BBC0,11A7 1107,BBC0,11A7 -1107,BCA0,11A7 1107,BCA0,11A7 -1107,BD80,11A7 1107,BD80,11A7 -1107,BE60,11A7 1107,BE60,11A7 -1107,BF40,11A7 1107,BF40,11A7 -1107,C020,11A7 1107,C020,11A7 -1107,C100,11A7 1107,C100,11A7 -1107,C1E0,11A7 1107,C1E0,11A7 -1107,C2C0,11A7 1107,C2C0,11A7 -1107,C3A0,11A7 1107,C3A0,11A7 -1107,C480,11A7 1107,C480,11A7 -1107,C560,11A7 1107,C560,11A7 -1107,C640,11A7 1107,C640,11A7 -1107,C720,11A7 1107,C720,11A7 -1107,C800,11A7 1107,C800,11A7 -1107,C8E0,11A7 1107,C8E0,11A7 -1107,C9C0,11A7 1107,C9C0,11A7 -1107,CAA0,11A7 1107,CAA0,11A7 -1107,CB80,11A7 1107,CB80,11A7 -1107,CC60,11A7 1107,CC60,11A7 -1107,CD40,11A7 1107,CD40,11A7 -1107,CE20,11A7 1107,CE20,11A7 -1107,CF00,11A7 1107,CF00,11A7 -1107,CFE0,11A7 1107,CFE0,11A7 -1107,D0C0,11A7 1107,D0C0,11A7 -1107,D1A0,11A7 1107,D1A0,11A7 -1107,D280,11A7 1107,D280,11A7 -1107,D360,11A7 1107,D360,11A7 -1107,D440,11A7 1107,D440,11A7 -1107,D520,11A7 1107,D520,11A7 -1107,D600,11A7 1107,D600,11A7 -1107,D6E0,11A7 1107,D6E0,11A7 -1108,AC00,11A7 1108,AC00,11A7 -1108,ACE0,11A7 1108,ACE0,11A7 -1108,ADC0,11A7 1108,ADC0,11A7 -1108,AEA0,11A7 1108,AEA0,11A7 -1108,AF80,11A7 1108,AF80,11A7 -1108,B060,11A7 1108,B060,11A7 -1108,B140,11A7 1108,B140,11A7 -1108,B220,11A7 1108,B220,11A7 -1108,B300,11A7 1108,B300,11A7 -1108,B3E0,11A7 1108,B3E0,11A7 -1108,B4C0,11A7 1108,B4C0,11A7 -1108,B5A0,11A7 1108,B5A0,11A7 -1108,B680,11A7 1108,B680,11A7 -1108,B760,11A7 1108,B760,11A7 -1108,B840,11A7 1108,B840,11A7 -1108,B920,11A7 1108,B920,11A7 -1108,BA00,11A7 1108,BA00,11A7 -1108,BAE0,11A7 1108,BAE0,11A7 -1108,BBC0,11A7 1108,BBC0,11A7 -1108,BCA0,11A7 1108,BCA0,11A7 -1108,BD80,11A7 1108,BD80,11A7 -1108,BE60,11A7 1108,BE60,11A7 -1108,BF40,11A7 1108,BF40,11A7 -1108,C020,11A7 1108,C020,11A7 -1108,C100,11A7 1108,C100,11A7 -1108,C1E0,11A7 1108,C1E0,11A7 -1108,C2C0,11A7 1108,C2C0,11A7 -1108,C3A0,11A7 1108,C3A0,11A7 -1108,C480,11A7 1108,C480,11A7 -1108,C560,11A7 1108,C560,11A7 -1108,C640,11A7 1108,C640,11A7 -1108,C720,11A7 1108,C720,11A7 -1108,C800,11A7 1108,C800,11A7 -1108,C8E0,11A7 1108,C8E0,11A7 -1108,C9C0,11A7 1108,C9C0,11A7 -1108,CAA0,11A7 1108,CAA0,11A7 -1108,CB80,11A7 1108,CB80,11A7 -1108,CC60,11A7 1108,CC60,11A7 -1108,CD40,11A7 1108,CD40,11A7 -1108,CE20,11A7 1108,CE20,11A7 -1108,CF00,11A7 1108,CF00,11A7 -1108,CFE0,11A7 1108,CFE0,11A7 -1108,D0C0,11A7 1108,D0C0,11A7 -1108,D1A0,11A7 1108,D1A0,11A7 -1108,D280,11A7 1108,D280,11A7 -1108,D360,11A7 1108,D360,11A7 -1108,D440,11A7 1108,D440,11A7 -1108,D520,11A7 1108,D520,11A7 -1108,D600,11A7 1108,D600,11A7 -1108,D6E0,11A7 1108,D6E0,11A7 -1109,AC00,11A7 1109,AC00,11A7 -1109,ACE0,11A7 1109,ACE0,11A7 -1109,ADC0,11A7 1109,ADC0,11A7 -1109,AEA0,11A7 1109,AEA0,11A7 -1109,AF80,11A7 1109,AF80,11A7 -1109,B060,11A7 1109,B060,11A7 -1109,B140,11A7 1109,B140,11A7 -1109,B220,11A7 1109,B220,11A7 -1109,B300,11A7 1109,B300,11A7 -1109,B3E0,11A7 1109,B3E0,11A7 -1109,B4C0,11A7 1109,B4C0,11A7 -1109,B5A0,11A7 1109,B5A0,11A7 -1109,B680,11A7 1109,B680,11A7 -1109,B760,11A7 1109,B760,11A7 -1109,B840,11A7 1109,B840,11A7 -1109,B920,11A7 1109,B920,11A7 -1109,BA00,11A7 1109,BA00,11A7 -1109,BAE0,11A7 1109,BAE0,11A7 -1109,BBC0,11A7 1109,BBC0,11A7 -1109,BCA0,11A7 1109,BCA0,11A7 -1109,BD80,11A7 1109,BD80,11A7 -1109,BE60,11A7 1109,BE60,11A7 -1109,BF40,11A7 1109,BF40,11A7 -1109,C020,11A7 1109,C020,11A7 -1109,C100,11A7 1109,C100,11A7 -1109,C1E0,11A7 1109,C1E0,11A7 -1109,C2C0,11A7 1109,C2C0,11A7 -1109,C3A0,11A7 1109,C3A0,11A7 -1109,C480,11A7 1109,C480,11A7 -1109,C560,11A7 1109,C560,11A7 -1109,C640,11A7 1109,C640,11A7 -1109,C720,11A7 1109,C720,11A7 -1109,C800,11A7 1109,C800,11A7 -1109,C8E0,11A7 1109,C8E0,11A7 -1109,C9C0,11A7 1109,C9C0,11A7 -1109,CAA0,11A7 1109,CAA0,11A7 -1109,CB80,11A7 1109,CB80,11A7 -1109,CC60,11A7 1109,CC60,11A7 -1109,CD40,11A7 1109,CD40,11A7 -1109,CE20,11A7 1109,CE20,11A7 -1109,CF00,11A7 1109,CF00,11A7 -1109,CFE0,11A7 1109,CFE0,11A7 -1109,D0C0,11A7 1109,D0C0,11A7 -1109,D1A0,11A7 1109,D1A0,11A7 -1109,D280,11A7 1109,D280,11A7 -1109,D360,11A7 1109,D360,11A7 -1109,D440,11A7 1109,D440,11A7 -1109,D520,11A7 1109,D520,11A7 -1109,D600,11A7 1109,D600,11A7 -1109,D6E0,11A7 1109,D6E0,11A7 -110A,AC00,11A7 110A,AC00,11A7 -110A,ACE0,11A7 110A,ACE0,11A7 -110A,ADC0,11A7 110A,ADC0,11A7 -110A,AEA0,11A7 110A,AEA0,11A7 -110A,AF80,11A7 110A,AF80,11A7 -110A,B060,11A7 110A,B060,11A7 -110A,B140,11A7 110A,B140,11A7 -110A,B220,11A7 110A,B220,11A7 -110A,B300,11A7 110A,B300,11A7 -110A,B3E0,11A7 110A,B3E0,11A7 -110A,B4C0,11A7 110A,B4C0,11A7 -110A,B5A0,11A7 110A,B5A0,11A7 -110A,B680,11A7 110A,B680,11A7 -110A,B760,11A7 110A,B760,11A7 -110A,B840,11A7 110A,B840,11A7 -110A,B920,11A7 110A,B920,11A7 -110A,BA00,11A7 110A,BA00,11A7 -110A,BAE0,11A7 110A,BAE0,11A7 -110A,BBC0,11A7 110A,BBC0,11A7 -110A,BCA0,11A7 110A,BCA0,11A7 -110A,BD80,11A7 110A,BD80,11A7 -110A,BE60,11A7 110A,BE60,11A7 -110A,BF40,11A7 110A,BF40,11A7 -110A,C020,11A7 110A,C020,11A7 -110A,C100,11A7 110A,C100,11A7 -110A,C1E0,11A7 110A,C1E0,11A7 -110A,C2C0,11A7 110A,C2C0,11A7 -110A,C3A0,11A7 110A,C3A0,11A7 -110A,C480,11A7 110A,C480,11A7 -110A,C560,11A7 110A,C560,11A7 -110A,C640,11A7 110A,C640,11A7 -110A,C720,11A7 110A,C720,11A7 -110A,C800,11A7 110A,C800,11A7 -110A,C8E0,11A7 110A,C8E0,11A7 -110A,C9C0,11A7 110A,C9C0,11A7 -110A,CAA0,11A7 110A,CAA0,11A7 -110A,CB80,11A7 110A,CB80,11A7 -110A,CC60,11A7 110A,CC60,11A7 -110A,CD40,11A7 110A,CD40,11A7 -110A,CE20,11A7 110A,CE20,11A7 -110A,CF00,11A7 110A,CF00,11A7 -110A,CFE0,11A7 110A,CFE0,11A7 -110A,D0C0,11A7 110A,D0C0,11A7 -110A,D1A0,11A7 110A,D1A0,11A7 -110A,D280,11A7 110A,D280,11A7 -110A,D360,11A7 110A,D360,11A7 -110A,D440,11A7 110A,D440,11A7 -110A,D520,11A7 110A,D520,11A7 -110A,D600,11A7 110A,D600,11A7 -110A,D6E0,11A7 110A,D6E0,11A7 -110B,AC00,11A7 110B,AC00,11A7 -110B,ACE0,11A7 110B,ACE0,11A7 -110B,ADC0,11A7 110B,ADC0,11A7 -110B,AEA0,11A7 110B,AEA0,11A7 -110B,AF80,11A7 110B,AF80,11A7 -110B,B060,11A7 110B,B060,11A7 -110B,B140,11A7 110B,B140,11A7 -110B,B220,11A7 110B,B220,11A7 -110B,B300,11A7 110B,B300,11A7 -110B,B3E0,11A7 110B,B3E0,11A7 -110B,B4C0,11A7 110B,B4C0,11A7 -110B,B5A0,11A7 110B,B5A0,11A7 -110B,B680,11A7 110B,B680,11A7 -110B,B760,11A7 110B,B760,11A7 -110B,B840,11A7 110B,B840,11A7 -110B,B920,11A7 110B,B920,11A7 -110B,BA00,11A7 110B,BA00,11A7 -110B,BAE0,11A7 110B,BAE0,11A7 -110B,BBC0,11A7 110B,BBC0,11A7 -110B,BCA0,11A7 110B,BCA0,11A7 -110B,BD80,11A7 110B,BD80,11A7 -110B,BE60,11A7 110B,BE60,11A7 -110B,BF40,11A7 110B,BF40,11A7 -110B,C020,11A7 110B,C020,11A7 -110B,C100,11A7 110B,C100,11A7 -110B,C1E0,11A7 110B,C1E0,11A7 -110B,C2C0,11A7 110B,C2C0,11A7 -110B,C3A0,11A7 110B,C3A0,11A7 -110B,C480,11A7 110B,C480,11A7 -110B,C560,11A7 110B,C560,11A7 -110B,C640,11A7 110B,C640,11A7 -110B,C720,11A7 110B,C720,11A7 -110B,C800,11A7 110B,C800,11A7 -110B,C8E0,11A7 110B,C8E0,11A7 -110B,C9C0,11A7 110B,C9C0,11A7 -110B,CAA0,11A7 110B,CAA0,11A7 -110B,CB80,11A7 110B,CB80,11A7 -110B,CC60,11A7 110B,CC60,11A7 -110B,CD40,11A7 110B,CD40,11A7 -110B,CE20,11A7 110B,CE20,11A7 -110B,CF00,11A7 110B,CF00,11A7 -110B,CFE0,11A7 110B,CFE0,11A7 -110B,D0C0,11A7 110B,D0C0,11A7 -110B,D1A0,11A7 110B,D1A0,11A7 -110B,D280,11A7 110B,D280,11A7 -110B,D360,11A7 110B,D360,11A7 -110B,D440,11A7 110B,D440,11A7 -110B,D520,11A7 110B,D520,11A7 -110B,D600,11A7 110B,D600,11A7 -110B,D6E0,11A7 110B,D6E0,11A7 -110C,AC00,11A7 110C,AC00,11A7 -110C,ACE0,11A7 110C,ACE0,11A7 -110C,ADC0,11A7 110C,ADC0,11A7 -110C,AEA0,11A7 110C,AEA0,11A7 -110C,AF80,11A7 110C,AF80,11A7 -110C,B060,11A7 110C,B060,11A7 -110C,B140,11A7 110C,B140,11A7 -110C,B220,11A7 110C,B220,11A7 -110C,B300,11A7 110C,B300,11A7 -110C,B3E0,11A7 110C,B3E0,11A7 -110C,B4C0,11A7 110C,B4C0,11A7 -110C,B5A0,11A7 110C,B5A0,11A7 -110C,B680,11A7 110C,B680,11A7 -110C,B760,11A7 110C,B760,11A7 -110C,B840,11A7 110C,B840,11A7 -110C,B920,11A7 110C,B920,11A7 -110C,BA00,11A7 110C,BA00,11A7 -110C,BAE0,11A7 110C,BAE0,11A7 -110C,BBC0,11A7 110C,BBC0,11A7 -110C,BCA0,11A7 110C,BCA0,11A7 -110C,BD80,11A7 110C,BD80,11A7 -110C,BE60,11A7 110C,BE60,11A7 -110C,BF40,11A7 110C,BF40,11A7 -110C,C020,11A7 110C,C020,11A7 -110C,C100,11A7 110C,C100,11A7 -110C,C1E0,11A7 110C,C1E0,11A7 -110C,C2C0,11A7 110C,C2C0,11A7 -110C,C3A0,11A7 110C,C3A0,11A7 -110C,C480,11A7 110C,C480,11A7 -110C,C560,11A7 110C,C560,11A7 -110C,C640,11A7 110C,C640,11A7 -110C,C720,11A7 110C,C720,11A7 -110C,C800,11A7 110C,C800,11A7 -110C,C8E0,11A7 110C,C8E0,11A7 -110C,C9C0,11A7 110C,C9C0,11A7 -110C,CAA0,11A7 110C,CAA0,11A7 -110C,CB80,11A7 110C,CB80,11A7 -110C,CC60,11A7 110C,CC60,11A7 -110C,CD40,11A7 110C,CD40,11A7 -110C,CE20,11A7 110C,CE20,11A7 -110C,CF00,11A7 110C,CF00,11A7 -110C,CFE0,11A7 110C,CFE0,11A7 -110C,D0C0,11A7 110C,D0C0,11A7 -110C,D1A0,11A7 110C,D1A0,11A7 -110C,D280,11A7 110C,D280,11A7 -110C,D360,11A7 110C,D360,11A7 -110C,D440,11A7 110C,D440,11A7 -110C,D520,11A7 110C,D520,11A7 -110C,D600,11A7 110C,D600,11A7 -110C,D6E0,11A7 110C,D6E0,11A7 -110D,AC00,11A7 110D,AC00,11A7 -110D,ACE0,11A7 110D,ACE0,11A7 -110D,ADC0,11A7 110D,ADC0,11A7 -110D,AEA0,11A7 110D,AEA0,11A7 -110D,AF80,11A7 110D,AF80,11A7 -110D,B060,11A7 110D,B060,11A7 -110D,B140,11A7 110D,B140,11A7 -110D,B220,11A7 110D,B220,11A7 -110D,B300,11A7 110D,B300,11A7 -110D,B3E0,11A7 110D,B3E0,11A7 -110D,B4C0,11A7 110D,B4C0,11A7 -110D,B5A0,11A7 110D,B5A0,11A7 -110D,B680,11A7 110D,B680,11A7 -110D,B760,11A7 110D,B760,11A7 -110D,B840,11A7 110D,B840,11A7 -110D,B920,11A7 110D,B920,11A7 -110D,BA00,11A7 110D,BA00,11A7 -110D,BAE0,11A7 110D,BAE0,11A7 -110D,BBC0,11A7 110D,BBC0,11A7 -110D,BCA0,11A7 110D,BCA0,11A7 -110D,BD80,11A7 110D,BD80,11A7 -110D,BE60,11A7 110D,BE60,11A7 -110D,BF40,11A7 110D,BF40,11A7 -110D,C020,11A7 110D,C020,11A7 -110D,C100,11A7 110D,C100,11A7 -110D,C1E0,11A7 110D,C1E0,11A7 -110D,C2C0,11A7 110D,C2C0,11A7 -110D,C3A0,11A7 110D,C3A0,11A7 -110D,C480,11A7 110D,C480,11A7 -110D,C560,11A7 110D,C560,11A7 -110D,C640,11A7 110D,C640,11A7 -110D,C720,11A7 110D,C720,11A7 -110D,C800,11A7 110D,C800,11A7 -110D,C8E0,11A7 110D,C8E0,11A7 -110D,C9C0,11A7 110D,C9C0,11A7 -110D,CAA0,11A7 110D,CAA0,11A7 -110D,CB80,11A7 110D,CB80,11A7 -110D,CC60,11A7 110D,CC60,11A7 -110D,CD40,11A7 110D,CD40,11A7 -110D,CE20,11A7 110D,CE20,11A7 -110D,CF00,11A7 110D,CF00,11A7 -110D,CFE0,11A7 110D,CFE0,11A7 -110D,D0C0,11A7 110D,D0C0,11A7 -110D,D1A0,11A7 110D,D1A0,11A7 -110D,D280,11A7 110D,D280,11A7 -110D,D360,11A7 110D,D360,11A7 -110D,D440,11A7 110D,D440,11A7 -110D,D520,11A7 110D,D520,11A7 -110D,D600,11A7 110D,D600,11A7 -110D,D6E0,11A7 110D,D6E0,11A7 -110E,AC00,11A7 110E,AC00,11A7 -110E,ACE0,11A7 110E,ACE0,11A7 -110E,ADC0,11A7 110E,ADC0,11A7 -110E,AEA0,11A7 110E,AEA0,11A7 -110E,AF80,11A7 110E,AF80,11A7 -110E,B060,11A7 110E,B060,11A7 -110E,B140,11A7 110E,B140,11A7 -110E,B220,11A7 110E,B220,11A7 -110E,B300,11A7 110E,B300,11A7 -110E,B3E0,11A7 110E,B3E0,11A7 -110E,B4C0,11A7 110E,B4C0,11A7 -110E,B5A0,11A7 110E,B5A0,11A7 -110E,B680,11A7 110E,B680,11A7 -110E,B760,11A7 110E,B760,11A7 -110E,B840,11A7 110E,B840,11A7 -110E,B920,11A7 110E,B920,11A7 -110E,BA00,11A7 110E,BA00,11A7 -110E,BAE0,11A7 110E,BAE0,11A7 -110E,BBC0,11A7 110E,BBC0,11A7 -110E,BCA0,11A7 110E,BCA0,11A7 -110E,BD80,11A7 110E,BD80,11A7 -110E,BE60,11A7 110E,BE60,11A7 -110E,BF40,11A7 110E,BF40,11A7 -110E,C020,11A7 110E,C020,11A7 -110E,C100,11A7 110E,C100,11A7 -110E,C1E0,11A7 110E,C1E0,11A7 -110E,C2C0,11A7 110E,C2C0,11A7 -110E,C3A0,11A7 110E,C3A0,11A7 -110E,C480,11A7 110E,C480,11A7 -110E,C560,11A7 110E,C560,11A7 -110E,C640,11A7 110E,C640,11A7 -110E,C720,11A7 110E,C720,11A7 -110E,C800,11A7 110E,C800,11A7 -110E,C8E0,11A7 110E,C8E0,11A7 -110E,C9C0,11A7 110E,C9C0,11A7 -110E,CAA0,11A7 110E,CAA0,11A7 -110E,CB80,11A7 110E,CB80,11A7 -110E,CC60,11A7 110E,CC60,11A7 -110E,CD40,11A7 110E,CD40,11A7 -110E,CE20,11A7 110E,CE20,11A7 -110E,CF00,11A7 110E,CF00,11A7 -110E,CFE0,11A7 110E,CFE0,11A7 -110E,D0C0,11A7 110E,D0C0,11A7 -110E,D1A0,11A7 110E,D1A0,11A7 -110E,D280,11A7 110E,D280,11A7 -110E,D360,11A7 110E,D360,11A7 -110E,D440,11A7 110E,D440,11A7 -110E,D520,11A7 110E,D520,11A7 -110E,D600,11A7 110E,D600,11A7 -110E,D6E0,11A7 110E,D6E0,11A7 -110F,AC00,11A7 110F,AC00,11A7 -110F,ACE0,11A7 110F,ACE0,11A7 -110F,ADC0,11A7 110F,ADC0,11A7 -110F,AEA0,11A7 110F,AEA0,11A7 -110F,AF80,11A7 110F,AF80,11A7 -110F,B060,11A7 110F,B060,11A7 -110F,B140,11A7 110F,B140,11A7 -110F,B220,11A7 110F,B220,11A7 -110F,B300,11A7 110F,B300,11A7 -110F,B3E0,11A7 110F,B3E0,11A7 -110F,B4C0,11A7 110F,B4C0,11A7 -110F,B5A0,11A7 110F,B5A0,11A7 -110F,B680,11A7 110F,B680,11A7 -110F,B760,11A7 110F,B760,11A7 -110F,B840,11A7 110F,B840,11A7 -110F,B920,11A7 110F,B920,11A7 -110F,BA00,11A7 110F,BA00,11A7 -110F,BAE0,11A7 110F,BAE0,11A7 -110F,BBC0,11A7 110F,BBC0,11A7 -110F,BCA0,11A7 110F,BCA0,11A7 -110F,BD80,11A7 110F,BD80,11A7 -110F,BE60,11A7 110F,BE60,11A7 -110F,BF40,11A7 110F,BF40,11A7 -110F,C020,11A7 110F,C020,11A7 -110F,C100,11A7 110F,C100,11A7 -110F,C1E0,11A7 110F,C1E0,11A7 -110F,C2C0,11A7 110F,C2C0,11A7 -110F,C3A0,11A7 110F,C3A0,11A7 -110F,C480,11A7 110F,C480,11A7 -110F,C560,11A7 110F,C560,11A7 -110F,C640,11A7 110F,C640,11A7 -110F,C720,11A7 110F,C720,11A7 -110F,C800,11A7 110F,C800,11A7 -110F,C8E0,11A7 110F,C8E0,11A7 -110F,C9C0,11A7 110F,C9C0,11A7 -110F,CAA0,11A7 110F,CAA0,11A7 -110F,CB80,11A7 110F,CB80,11A7 -110F,CC60,11A7 110F,CC60,11A7 -110F,CD40,11A7 110F,CD40,11A7 -110F,CE20,11A7 110F,CE20,11A7 -110F,CF00,11A7 110F,CF00,11A7 -110F,CFE0,11A7 110F,CFE0,11A7 -110F,D0C0,11A7 110F,D0C0,11A7 -110F,D1A0,11A7 110F,D1A0,11A7 -110F,D280,11A7 110F,D280,11A7 -110F,D360,11A7 110F,D360,11A7 -110F,D440,11A7 110F,D440,11A7 -110F,D520,11A7 110F,D520,11A7 -110F,D600,11A7 110F,D600,11A7 -110F,D6E0,11A7 110F,D6E0,11A7 -1110,AC00,11A7 1110,AC00,11A7 -1110,ACE0,11A7 1110,ACE0,11A7 -1110,ADC0,11A7 1110,ADC0,11A7 -1110,AEA0,11A7 1110,AEA0,11A7 -1110,AF80,11A7 1110,AF80,11A7 -1110,B060,11A7 1110,B060,11A7 -1110,B140,11A7 1110,B140,11A7 -1110,B220,11A7 1110,B220,11A7 -1110,B300,11A7 1110,B300,11A7 -1110,B3E0,11A7 1110,B3E0,11A7 -1110,B4C0,11A7 1110,B4C0,11A7 -1110,B5A0,11A7 1110,B5A0,11A7 -1110,B680,11A7 1110,B680,11A7 -1110,B760,11A7 1110,B760,11A7 -1110,B840,11A7 1110,B840,11A7 -1110,B920,11A7 1110,B920,11A7 -1110,BA00,11A7 1110,BA00,11A7 -1110,BAE0,11A7 1110,BAE0,11A7 -1110,BBC0,11A7 1110,BBC0,11A7 -1110,BCA0,11A7 1110,BCA0,11A7 -1110,BD80,11A7 1110,BD80,11A7 -1110,BE60,11A7 1110,BE60,11A7 -1110,BF40,11A7 1110,BF40,11A7 -1110,C020,11A7 1110,C020,11A7 -1110,C100,11A7 1110,C100,11A7 -1110,C1E0,11A7 1110,C1E0,11A7 -1110,C2C0,11A7 1110,C2C0,11A7 -1110,C3A0,11A7 1110,C3A0,11A7 -1110,C480,11A7 1110,C480,11A7 -1110,C560,11A7 1110,C560,11A7 -1110,C640,11A7 1110,C640,11A7 -1110,C720,11A7 1110,C720,11A7 -1110,C800,11A7 1110,C800,11A7 -1110,C8E0,11A7 1110,C8E0,11A7 -1110,C9C0,11A7 1110,C9C0,11A7 -1110,CAA0,11A7 1110,CAA0,11A7 -1110,CB80,11A7 1110,CB80,11A7 -1110,CC60,11A7 1110,CC60,11A7 -1110,CD40,11A7 1110,CD40,11A7 -1110,CE20,11A7 1110,CE20,11A7 -1110,CF00,11A7 1110,CF00,11A7 -1110,CFE0,11A7 1110,CFE0,11A7 -1110,D0C0,11A7 1110,D0C0,11A7 -1110,D1A0,11A7 1110,D1A0,11A7 -1110,D280,11A7 1110,D280,11A7 -1110,D360,11A7 1110,D360,11A7 -1110,D440,11A7 1110,D440,11A7 -1110,D520,11A7 1110,D520,11A7 -1110,D600,11A7 1110,D600,11A7 -1110,D6E0,11A7 1110,D6E0,11A7 -1111,AC00,11A7 1111,AC00,11A7 -1111,ACE0,11A7 1111,ACE0,11A7 -1111,ADC0,11A7 1111,ADC0,11A7 -1111,AEA0,11A7 1111,AEA0,11A7 -1111,AF80,11A7 1111,AF80,11A7 -1111,B060,11A7 1111,B060,11A7 -1111,B140,11A7 1111,B140,11A7 -1111,B220,11A7 1111,B220,11A7 -1111,B300,11A7 1111,B300,11A7 -1111,B3E0,11A7 1111,B3E0,11A7 -1111,B4C0,11A7 1111,B4C0,11A7 -1111,B5A0,11A7 1111,B5A0,11A7 -1111,B680,11A7 1111,B680,11A7 -1111,B760,11A7 1111,B760,11A7 -1111,B840,11A7 1111,B840,11A7 -1111,B920,11A7 1111,B920,11A7 -1111,BA00,11A7 1111,BA00,11A7 -1111,BAE0,11A7 1111,BAE0,11A7 -1111,BBC0,11A7 1111,BBC0,11A7 -1111,BCA0,11A7 1111,BCA0,11A7 -1111,BD80,11A7 1111,BD80,11A7 -1111,BE60,11A7 1111,BE60,11A7 -1111,BF40,11A7 1111,BF40,11A7 -1111,C020,11A7 1111,C020,11A7 -1111,C100,11A7 1111,C100,11A7 -1111,C1E0,11A7 1111,C1E0,11A7 -1111,C2C0,11A7 1111,C2C0,11A7 -1111,C3A0,11A7 1111,C3A0,11A7 -1111,C480,11A7 1111,C480,11A7 -1111,C560,11A7 1111,C560,11A7 -1111,C640,11A7 1111,C640,11A7 -1111,C720,11A7 1111,C720,11A7 -1111,C800,11A7 1111,C800,11A7 -1111,C8E0,11A7 1111,C8E0,11A7 -1111,C9C0,11A7 1111,C9C0,11A7 -1111,CAA0,11A7 1111,CAA0,11A7 -1111,CB80,11A7 1111,CB80,11A7 -1111,CC60,11A7 1111,CC60,11A7 -1111,CD40,11A7 1111,CD40,11A7 -1111,CE20,11A7 1111,CE20,11A7 -1111,CF00,11A7 1111,CF00,11A7 -1111,CFE0,11A7 1111,CFE0,11A7 -1111,D0C0,11A7 1111,D0C0,11A7 -1111,D1A0,11A7 1111,D1A0,11A7 -1111,D280,11A7 1111,D280,11A7 -1111,D360,11A7 1111,D360,11A7 -1111,D440,11A7 1111,D440,11A7 -1111,D520,11A7 1111,D520,11A7 -1111,D600,11A7 1111,D600,11A7 -1111,D6E0,11A7 1111,D6E0,11A7 -1112,AC00,11A7 1112,AC00,11A7 -1112,ACE0,11A7 1112,ACE0,11A7 -1112,ADC0,11A7 1112,ADC0,11A7 -1112,AEA0,11A7 1112,AEA0,11A7 -1112,AF80,11A7 1112,AF80,11A7 -1112,B060,11A7 1112,B060,11A7 -1112,B140,11A7 1112,B140,11A7 -1112,B220,11A7 1112,B220,11A7 -1112,B300,11A7 1112,B300,11A7 -1112,B3E0,11A7 1112,B3E0,11A7 -1112,B4C0,11A7 1112,B4C0,11A7 -1112,B5A0,11A7 1112,B5A0,11A7 -1112,B680,11A7 1112,B680,11A7 -1112,B760,11A7 1112,B760,11A7 -1112,B840,11A7 1112,B840,11A7 -1112,B920,11A7 1112,B920,11A7 -1112,BA00,11A7 1112,BA00,11A7 -1112,BAE0,11A7 1112,BAE0,11A7 -1112,BBC0,11A7 1112,BBC0,11A7 -1112,BCA0,11A7 1112,BCA0,11A7 -1112,BD80,11A7 1112,BD80,11A7 -1112,BE60,11A7 1112,BE60,11A7 -1112,BF40,11A7 1112,BF40,11A7 -1112,C020,11A7 1112,C020,11A7 -1112,C100,11A7 1112,C100,11A7 -1112,C1E0,11A7 1112,C1E0,11A7 -1112,C2C0,11A7 1112,C2C0,11A7 -1112,C3A0,11A7 1112,C3A0,11A7 -1112,C480,11A7 1112,C480,11A7 -1112,C560,11A7 1112,C560,11A7 -1112,C640,11A7 1112,C640,11A7 -1112,C720,11A7 1112,C720,11A7 -1112,C800,11A7 1112,C800,11A7 -1112,C8E0,11A7 1112,C8E0,11A7 -1112,C9C0,11A7 1112,C9C0,11A7 -1112,CAA0,11A7 1112,CAA0,11A7 -1112,CB80,11A7 1112,CB80,11A7 -1112,CC60,11A7 1112,CC60,11A7 -1112,CD40,11A7 1112,CD40,11A7 -1112,CE20,11A7 1112,CE20,11A7 -1112,CF00,11A7 1112,CF00,11A7 -1112,CFE0,11A7 1112,CFE0,11A7 -1112,D0C0,11A7 1112,D0C0,11A7 -1112,D1A0,11A7 1112,D1A0,11A7 -1112,D280,11A7 1112,D280,11A7 -1112,D360,11A7 1112,D360,11A7 -1112,D440,11A7 1112,D440,11A7 -1112,D520,11A7 1112,D520,11A7 -1112,D600,11A7 1112,D600,11A7 -1112,D6E0,11A7 1112,D6E0,11A7 -AC00,11A7 AC00,11A7 -1100,1161,11A7 AC00,11A7 -1100,1162,11A7 AC1C,11A7 -1100,1163,11A7 AC38,11A7 -1100,1164,11A7 AC54,11A7 -1100,1165,11A7 AC70,11A7 -1101,1161,11A7 AE4C,11A7 -1101,1162,11A7 AE68,11A7 -1101,1163,11A7 AE84,11A7 -1101,1164,11A7 AEA0,11A7 -1101,1165,11A7 AEBC,11A7 -1102,1161,11A7 B098,11A7 -1102,1162,11A7 B0B4,11A7 -1102,1163,11A7 B0D0,11A7 -1102,1164,11A7 B0EC,11A7 -1102,1165,11A7 B108,11A7 -1103,1161,11A7 B2E4,11A7 -1103,1162,11A7 B300,11A7 -1103,1163,11A7 B31C,11A7 -1103,1164,11A7 B338,11A7 -1103,1165,11A7 B354,11A7 -1104,1161,11A7 B530,11A7 -1104,1162,11A7 B54C,11A7 -1104,1163,11A7 B568,11A7 -1104,1164,11A7 B584,11A7 -1104,1165,11A7 B5A0,11A7 -1105,1161,11A7 B77C,11A7 -1105,1162,11A7 B798,11A7 -1105,1163,11A7 B7B4,11A7 -1105,1164,11A7 B7D0,11A7 -1105,1165,11A7 B7EC,11A7 -1100,1166,11A7 AC8C,11A7 -1100,1167,11A7 ACA8,11A7 -1100,1168,11A7 ACC4,11A7 -1100,1169,11A7 ACE0,11A7 -1100,116A,11A7 ACFC,11A7 -1100,116B,11A7 AD18,11A7 -1100,116C,11A7 AD34,11A7 -1100,116D,11A7 AD50,11A7 -1100,116E,11A7 AD6C,11A7 -1100,116F,11A7 AD88,11A7 -1100,1170,11A7 ADA4,11A7 -1100,1171,11A7 ADC0,11A7 -1100,1172,11A7 ADDC,11A7 -1100,1173,11A7 ADF8,11A7 -1100,1174,11A7 AE14,11A7 -1100,1175,11A7 AE30,11A7 diff --git a/tools/unicode_parity/probe.exs b/tools/unicode_parity/probe.exs index ad2d84a6..114ad617 100644 --- a/tools/unicode_parity/probe.exs +++ b/tools/unicode_parity/probe.exs @@ -17,9 +17,7 @@ # extpict.txt the Extended_Pictographic set # trim.txt what String.trim/1 strips # lookback.txt what a GB11 emoji run may be separated from its ZWJ by -# ccc.txt canonical combining class, for NFC parity -# nfc_strings.txt whole strings, with OTP's NFC of each -# clusters.txt the same strings, split into graphemes +# clusters.txt whole strings, split into graphemes # version.txt the Elixir and OTP versions these came from # # Run `python3 edges.py` FIRST: it writes out/range_edges.txt from the range @@ -87,32 +85,18 @@ lookback = File.write!("out/lookback.txt", lookback <> "\n") -# --- 5. normalisation -------------------------------------------------------- -# `sanitize_name` normalises to NFC twice and stakes step-lookup identity on -# Apollo and Lightning agreeing on the normal form. Nothing above can see that: -# the canonical combining class is not a break class, so a codepoint can have -# the right break class and still normalise differently. Emit every codepoint -# whose ccc is non-zero, plus every one whose NFC form differs from itself. -ccc = - codepoints - |> Enum.map(fn cp -> - {cp, :unicode_util.lookup(cp)[:ccc] || 0} - end) - |> Enum.reject(fn {_, c} -> c == 0 end) - |> Enum.map_join("\n", fn {cp, c} -> "#{hex.(cp)} #{c}" end) - -File.write!("out/ccc.txt", ccc <> "\n") - -# Per-codepoint checks cannot see the composition rule at all: OTP's NFC -# deviates from the spec only at three characters or more, so a whole-string -# comparison is the only thing that can catch it. +# --- 5. the whole-string corpus ---------------------------------------------- +# Per-codepoint checks cannot see the clusterer's rules: the bucket sweep above +# buckets Hangul and regional indicators to "other", so the GB6-GB8 Hangul +# rules, the GB12/GB13 parity rule and the CR-LF rule are invisible to it. Only +# comparing whole strings, split into graphemes, can catch those. # # The shapes are built explicitly rather than sampled from a flat pool. A -# uniform pool is almost all filler — precomposed Hangul and CJK that -# normalise trivially — and the shapes that actually discriminate this -# implementation from the standard library turn up at about 1e-6, so a mutant -# restoring a known bug survives. Each block below is a shape that is known to -# separate them, or a shape a name can realistically contain. +# uniform pool is almost all filler — precomposed Hangul and CJK that cluster +# trivially — and the shapes that actually exercise a boundary rule turn up at +# about 1e-6, so a mutant restoring a known bug survives. Each block below is a +# shape that is known to reach a rule, or a shape a name can realistically +# contain. bases = [0x41, 0x61, 0x4F, 0x45, 0x55, 0x0995, 0x0B95, 0x0D15, 0x0D9A, 0x0C95, 0x0E01, 0x0915] marks = [0x0300, 0x0301, 0x0302, 0x0303, 0x0308, 0x030C, 0x0327, 0x0323, 0x0331, 0x0316, 0x0345] @@ -132,8 +116,7 @@ lvt_syllables = Enum.take_every(for(s <- 0xAC00..0xD7A3, rem(s - 0xAC00, 28) != # What follows the pair. "Nothing" was the only case the corpus had. # U+11A7 is deliberately included: it sits one below the trailing-consonant -# range and OTP deletes it after an LV syllable or an L+V pair. Starting the -# trailers at U+11A8 made that mechanism invisible. +# range, so starting the trailers at U+11A8 never steps across that edge. trailers = [[], [0x61], [0x0301], [0x11A7], [0x11A8], [0x11FF], [0x1161], [0xAC00], [0x0020, 0x62]] two_part_vowel_marks = [0x0CC0, 0x09CB, 0x0BCA, 0x0D4A, 0x0DDC, 0x1B40, 0x0CC7, 0x0D4C] @@ -151,7 +134,7 @@ range_edges = regional = [0x1F1E6, 0x1F1EB, 0x1F1F7, 0x1F1FF] pictographs = [0x00A9, 0x2764, 0x1F469, 0x1F4BB, 0x1F3F4] ascii_words = [~c"Fetch Data", ~c"step-1", ~c"a_b c", ~c"Verifier letat"] -lag_ccc = [0x10EFD, 0x11F41, 0x1E08F, 0x1E4EC, 0x1E4EE] +late_marks = [0x10EFD, 0x11F41, 0x1E08F, 0x1E4EC, 0x1E4EE] shapes = # base + mark + class-zero Extend + mark: the shape OTP and the spec differ @@ -164,10 +147,8 @@ shapes = (for [b, v1, v2] <- two_part_vowels, tail <- [[], [0x0301], [0x200C], [0x200C, 0x0301]], do: [b, v1, v2] ++ tail) ++ - # The two halves of a two-part vowel SEPARATED by a class-zero character. - # This is the shape the `previous_ccc == 0` clause in `_compose` exists for, - # and the corpus did not contain it — so deleting that clause left the - # harness green. Every mutation that survives points at a missing shape. + # The two halves of a two-part vowel SEPARATED by a class-zero character, + # which is a GB9/GB9a boundary question as well as a normalisation one. (for [_b, v1, v2] <- two_part_vowels, z <- zero_extend, do: [v1, z, v2]) ++ (for [b, v1, v2] <- two_part_vowels, z <- zero_extend, do: [b, v1, z, v2]) ++ (for [b, v1, v2] <- two_part_vowels, z <- zero_extend, m <- [0x0301, 0x0323], @@ -175,21 +156,19 @@ shapes = # SARA AM, which decomposes (for b <- [0x0E01, 0x0EA1], v <- [0x0E33, 0x0EB3], tail <- [[], [0x0301], [0x200C]], do: [b, v] ++ tail) ++ - # the codepoints whose combining class Python's tables predate - (for b <- bases, l <- lag_ccc, m <- marks, do: [b, l, m]) ++ - (for b <- bases, m <- marks, l <- lag_ccc, do: [b, m, l]) ++ + # the codepoints assigned after the Unicode version Python's tables carry + (for b <- bases, l <- late_marks, m <- marks, do: [b, l, m]) ++ + (for b <- bases, m <- marks, l <- late_marks, do: [b, m, l]) ++ # Prepend, regional indicators and ZWJ sequences, with marks attached (for p <- prepends, b <- bases, m <- marks, do: [p, b, m]) ++ (for a <- regional, b <- regional, m <- marks, do: [a, b, m]) ++ (for a <- pictographs, b <- pictographs, m <- marks, do: [a, 0x200D, b, m]) ++ - # Hangul: L + precomposed syllable, and L L V adjacency. Jamo have a - # combining class of zero, so a composition rule that reaches back past a - # class-zero character rewrites Korean names into different ones. The corpus - # had no Hangul at all and could not see it. + # Hangul: L + precomposed syllable, and L L V adjacency, for GB6-GB8. The + # corpus had no Hangul at all and could not see any of those rules. # Sampling four syllables here is how a 29,893-row gap read as 949. LV - # (no trailing consonant) and LVT (with one) decompose to different lengths, - # and what follows the pair matters too, so all three axes are swept rather - # than sampled on one and fixed on the others. + # (no trailing consonant) and LVT (with one) behave differently, and what + # follows the pair matters too, so all three axes are swept rather than + # sampled on one and fixed on the others. (for l <- 0x1100..0x115F, sy <- lv_syllables, do: [l, sy]) ++ (for l <- 0x1100..0x115F, sy <- lvt_syllables, do: [l, sy]) ++ (for l <- 0x1100..0x1112, sy <- Enum.take_every(lv_syllables, 2), t <- trailers, do: [l, sy | t]) ++ @@ -243,21 +222,10 @@ shapes = Enum.map(ascii_words, & &1) ++ (for w <- ascii_words, m <- marks, do: w ++ [m]) -nfc_pairs = - Enum.map_join(shapes, "\n", fn cps -> - input = List.to_string(cps) - output = :unicode.characters_to_nfc_binary(input) - - Enum.map_join(cps, ",", hex) <> - "\t" <> Enum.map_join(:unicode.characters_to_list(output), ",", hex) - end) - -File.write!("out/nfc_strings.txt", nfc_pairs <> "\n") - -# Cluster boundaries for the same corpus. `check.py` compared six things and -# not one of them was a cluster boundary — the clusterer was checked only -# through per-codepoint break classes, which cannot see the regional-indicator -# parity rule or the CR-LF rule at all. +# Cluster boundaries over that corpus. `check.py` compared six things and not +# one of them was a cluster boundary — the clusterer was checked only through +# per-codepoint break classes, which cannot see the regional-indicator parity +# rule or the CR-LF rule at all. clusters = Enum.map_join(shapes, "\n", fn cps -> input = List.to_string(cps) @@ -274,11 +242,11 @@ clusters = File.write!("out/clusters.txt", clusters <> "\n") -IO.puts("nfc corpus rows: #{length(shapes)}") +IO.puts("corpus rows: #{length(shapes)}") File.write!( "out/version.txt", "elixir #{System.version()}\notp #{System.otp_release()}\n" ) -IO.puts("wrote out/{classmap,extpict,trim,lookback,ccc,nfc_strings,clusters,version}.txt") +IO.puts("wrote out/{classmap,extpict,trim,lookback,clusters,version}.txt") From b3f01ff640fde577deffdf088d8d3786f9a2185e Mon Sep 17 00:00:00 2001 From: hanna-paasivirta Date: Tue, 1 Sep 2026 18:02:53 +0100 Subject: [PATCH 3/3] Correct the parity harness list in the readme --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 13206098..a08e04d8 100644 --- a/README.md +++ b/README.md @@ -194,11 +194,12 @@ is to agree with Elixir, not with the spec. `tools/unicode_parity` is the harness that checks it. Run `python3 edges.py`, then `elixir probe.exs`, then `python3 check.py` with the Elixir version Lightning runs; `--tables` -prints the literals to paste back into `name_rules`. It checks seven things: -every codepoint's break class, every codepoint's canonical combining class, the -`Extended_Pictographic` set, the trim set, what a GB11 emoji run may be -separated from its joiner by, cluster boundaries over a generated corpus, and -NFC over the same corpus. +prints the literals to paste back into `name_rules`. It checks five things: +every codepoint's break class, the `Extended_Pictographic` set, the trim set, +what a GB11 emoji run may be separated from its joiner by, and cluster +boundaries over a generated corpus. Normalisation is not among them: +`normalize_nfc` is the standard library's, so there is no table of ours to +check against Elixir. `Extended_Pictographic` needs its own check because it is *not* a break class, so a per-codepoint sweep cannot see it — an over-broad set there silently