From 37e42aafc46253b70a0b8a821569e89dd15260ac Mon Sep 17 00:00:00 2001 From: Erik Date: Thu, 3 Sep 2026 14:43:14 +0200 Subject: [PATCH] =?UTF-8?q?docs(render):=20resolve=20#458=20=E2=80=94=20th?= =?UTF-8?q?e=20a9c9=20doorway=20admission=20is=20a=200.5=20%=20edge-plane?= =?UTF-8?q?=20precision=20boundary=20(AD-118)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two live cdb captures on the paired 2013 client at the Holtburg doorway: the blockset template (every Render::block_check call of one frame — 2,601 resident blocks x 2 exit views) proves retail tests a9c9 at ring slot 25,46 and returns PARTIALLY then OUTSIDE; the blockcheck template dumps its four corner interval vectors (0 0 0 0 300.4|310.2 and 0 0 0 1001 ..., slab 75..330). acdream's replay at the same P pose reproduces the sentinel pattern, the four edge planes and both verdicts, drawing a9c9 once, with clip heights 298.8/308.5 m — a 0.5 % plane difference (about 0.35 px of projected door-vertex position). At the fixture pose that margin is what flips the south-west corner from inside to outside on the fourth edge plane, so retail's four-corner unanimity test says OUTSIDE where ours says PartiallyInside. Not fixable bit-exactly short of D3D's x87 transform; the KnownFailure row stays with its comment rewritten, the register carries AD-118, and the first filtered capture's silent miss (cdb sign-extends poi() inside .if; use dwo()) is noted in the template. Co-Authored-By: Claude Fable 5.1 --- docs/ISSUES.md | 28 +- .../retail-divergence-register.md | 1 + .../2026-09-01-overhaul/oh-capture/README.md | 1 + .../holtburg-doorway-still.blockcheck.log | 124 + .../holtburg-doorway-still.blockset.log | 10934 ++++++++++++++++ .../Walk/WalkTraceConformanceTests.cs | 15 + .../oh/oh-capture-blockcheck.cdb.template | 7 +- .../oh/oh-capture-blockset.cdb.template | 37 + 8 files changed, 11145 insertions(+), 2 deletions(-) create mode 100644 docs/research/2026-09-01-overhaul/oh-capture/holtburg-doorway-still.blockcheck.log create mode 100644 docs/research/2026-09-01-overhaul/oh-capture/holtburg-doorway-still.blockset.log create mode 100644 tools/walk-oracle/oh/oh-capture-blockset.cdb.template diff --git a/docs/ISSUES.md b/docs/ISSUES.md index 1cdbcc4b..74dc1a7c 100644 --- a/docs/ISSUES.md +++ b/docs/ISSUES.md @@ -41,7 +41,7 @@ remain closed. See ## #458 — Walk admits land block `a9c9` at holtburg-doorway-still that retail does not draw -**Status:** OPEN — found 2026-09-03 by the S3 chunk 1 eight-kind transcript conformance (the gate's first real walk catch). +**Status:** RESOLVED 2026-09-03 — a PRECISION BOUNDARY, not a walk defect (register row AD-118; the KnownFailure row is kept on purpose — see the resolution below). Found 2026-09-03 by the S3 chunk 1 eight-kind transcript conformance (the gate's first real walk catch). **Severity:** MEDIUM (retail-order exactness; one far land cell drawn that retail skips — no known visible artifact) **Component:** `WalkLandscape.CheckBlocks` / `LandCellCheck` block-level visibility at a LOD-ring boundary @@ -99,6 +99,32 @@ pose against the decomp (the per-view union, the block MinZ/MaxZ clip heights, t exit-view edge planes, not the cell test. Resolve in the S3 review round or an S3 chunk 5; remove the KnownFailure trait in the same commit. +**Resolution (2026-09-03 afternoon, lead + owner, two live cdb captures on the paired 2013 +client at a NEARBY doorway pose — `docs/research/2026-09-01-overhaul/oh-capture/ +holtburg-doorway-still.blockset.log` and `.blockcheck.log`, templates +`tools/walk-oracle/oh/oh-capture-blockset.cdb.template` / `oh-capture-blockcheck.cdb.template`):** +(a) Retail DOES test `a9c9` — `draw_check_blocks` calls `Render::block_check` for ring slot +gx=25 gy=46 (`did=a9c9ffff`) twice a frame, once per surviving exit view (2,601 resident +blocks × 2 views = 5,202 calls + 477 from the second caller @0x00505243). The first +filtered capture printed nothing because cdb sign-extends a 32-bit `poi()` inside `.if`; +`dwo()` fixed it (template note). (b) At the afternoon pose retail returned PARTIALLY +(1) in view 1 and OUTSIDE (0) in view 2 with the four corner interval vectors +`bound[0..4] = 0 0 0 0 300.4|310.2` (view 1) and `0 0 0 1001 300.4|310.2` (view 2), z slab +75..330 — and acdream's replay at the SAME `P` pose (a throwaway test, deleted) produced +the SAME sentinel pattern, the SAME four edge planes, the SAME verdicts (1 then 0) and ONE +`LC:a9c9` token, with clip heights 298.81/308.49 m vs retail's 300.4/310.2 m: a 0.5 % +difference in the doorway's fourth edge plane (its slope ratio 0.05042 vs 0.05104 — about +0.35 px of projected door-vertex position at 720p). (c) At the FIXTURE pose (frame 2 of the +morning walk capture) acdream's replay has that fourth plane classify three block corners +OUTSIDE (1001) and the south-west corner INSIDE (0): `block_plane_check` → PartiallyInside +→ the block draws. Retail's plane, 0.5 % away, puts the last corner outside too → OUTSIDE → +no `LC`. One far LOD block, one corner, one plane, at a boundary. The morning z-range and +structural notes above stand (slab and loop shape match). No bit-exact fix exists short of +reproducing D3D's x87 projection and `copy_view`'s float rounding; the conformance row stays +`Status=KnownFailure` with its doc comment rewritten to this finding, and the register +carries it as AD-118. The two look-in-flood divergences (2)/(3) above are the pre-existing +FW1 near-win gate state and remain tracked by `WalkLookInGateSweepTests` (skipped). + ## #457 — Two App tests pass only in Release (IL-offset pins fail under Debug) **Status:** OPEN — found 2026-09-03 during the S3 chunk 3 re-review; pre-existing at `dffd7055` (before chunk 3), not a campaign regression. diff --git a/docs/architecture/retail-divergence-register.md b/docs/architecture/retail-divergence-register.md index 5754ac98..3a171ffe 100644 --- a/docs/architecture/retail-divergence-register.md +++ b/docs/architecture/retail-divergence-register.md @@ -214,6 +214,7 @@ readiness/requeue adaptation. See | AD-102 | **Filed 2026-08-15 at Campaign CC slice CC4 (the Heritage page's Viamontian button and the Town page's Sanamar button).** Retail gates BOTH controls behind `CPlayerSystem::AccountHasThroneOfDestiny`: `gmCGHeritagePage::ListenToElementMessage @ 0x00483860` shows `MakeToDWarningDialog` instead of selecting Viamontian (element `0x100003c3`) for a non-ToD account, and `gmCGTownPage::ListenToElementMessage @ 0x0047c480` does the same for Sanamar (element `0x1000040b`, `startArea` index 3 — also the reason `CharGenState::RandomizeStartArea`'s ToD-aware `RandInt(3 or 4)` bound exists). acdream's `ChargenOptions` (CC1) carries no account/DLC-ownership signal anywhere in the model, so both controls ship WITHOUT the gate — every installed heritage/town in `Options.HeritagesById`/`Options.StarterAreas` is always selectable, matching what a ToD-owning account would see. | `src/AcDream.App/UI/Layout/CharacterCreationHeritagePage.cs` (`HeritageByButtonId[0x100003C3u]`); `src/AcDream.App/UI/Layout/CharacterCreationTownPage.cs` (`StartAreaByButtonId[0x1000040Bu]`, `Randomize`) | ACE's server-side `CharacterCreate` handler never checks ToD ownership either (the field is purely a retail-client UI gate), so accepting the selection unconditionally never produces a request the emulator would reject; adding an account-ownership model to CC1's DAT-only `ChargenOptions` is out of this slice's scope and would need its own design (where does the "ToD owned" bit come from — account service, launcher config, a new env flag?). | None observable against ACE. A future retail-parity gate that specifically checks "does a non-ToD account get warned off Viamontian/Sanamar" will fail until an account-ownership signal exists to gate on. | `gmCGHeritagePage::ListenToElementMessage @ 0x00483860`; `gmCGTownPage::ListenToElementMessage @ 0x0047c480`; `gmCGTownPage::SetTown @ 0x0047c360`; `CharGenState::RandomizeStartArea` (DoRandom case 4, `RandInt(hasToD ? 4 : 3)`) | | AD-99 | **Filed 2026-08-15 at Campaign LA gate round 2 finding 1 (character-select Exit button).** On a confirmed Exit, acdream closes the client through the existing graceful window-close path (`d.Window.Close`, the same seam `GameplayInputCommandController`'s in-world Escape fallback already uses) instead of retail's real post-confirm behavior: `RecvNotice_CloseDialog`'s case-1 arm queues UI mode `0x10000009`, which `gmEpilogueUI::Register` claims — a brief epilogue/farewell screen — before the process actually terminates. The confirmation dialog itself (`MakeConfirmExitDialog`, its exact `ID_CharacterManagement_ConfirmExit` text, and the `m_confirmExitDialogContext != 0` re-entry guard) IS ported faithfully; only the post-confirm destination differs, the same shape as AD-74's Options-panel exit. | `src/AcDream.App/UI/Layout/CharacterManagementUiController.cs` (`RequestExit`); `src/AcDream.App/UI/RetailUiRuntime.cs` (`CharacterSelectionRuntimeBindings.RequestExit`); `src/AcDream.App/Composition/InteractionRetainedUiComposition.cs` (`d.Window.Close` binding) | acdream has no `gmEpilogueUI` port (out of scope this round); reusing the ONE existing graceful-shutdown seam keeps `disconnected`/`exited` status events firing through `GameWindow.OnClosing` → `CompleteShutdown` rather than inventing a second shutdown path, per explicit direction for this finding. | A user confirming Exit sees the window close immediately instead of retail's brief epilogue screen; a future feature wanting to reproduce that screen (or an intermediate "logged off, returned to character select" state) has no seam yet — same gap class as AD-44. | `gmCharacterManagementUI::MakeConfirmExitDialog @0x004ed250`; `RecvNotice_CloseDialog @0x004ed760` case 1; `gmEpilogueUI::Register(0x10000009)` @0x0047a680; `gmCharacterManagementUI::OnAction @0x004ed410` (Escape key, unported — button-only this round) | | AD-113 | **Filed 2026-08-25 at Campaign CT slice CT-GF1 (client-wide retained-UI ancestor clip).** Porting retail's `UIRegion::DrawHere @0x0069FA30` ancestor-clip intersection (an element's screen rect is intersected against the FULL inherited clip-rect chain and the subtree is skipped when the intersection is empty — the `var_24` gate @0x0069FB8E) as `UiElement.ClipsChildren`'s new client-wide default (true, threaded through the pre-existing `UiRenderContext.PushClip`/`PopClip`) needed one deliberate opt-out: retail spawns a menu's dropdown popup as a SEPARATE top-level region (`UIElement_Menu::MakePopup`), clipped only by the screen, while acdream's `UiMenu` draws its popup INLINE from the owning button in a second traversal (`OnDrawOverlay`, pre-existing, "regardless of this element's position in the tree" by its own doc comment). Without an escape, the new ancestor clip would wrongly cut off a popup that legitimately extends outside its own (possibly short) owning window — e.g. a channel dropdown opened upward past a short chat window's top edge. `UiElement.ExpandsClipForPopup` (default false) resets the accumulated clip to the full CANVAS rect (0,0,ScreenSize) — SCREEN-clipped, not truly unbounded, matching retail's own popup region (`UIElement_Menu::MakePopup` spawns a top-level region bounded by the screen) — for exactly the `OnDrawOverlay` call of an opted-in element (`UiRenderContext.PushClipUnbounded`, sharing the existing clip stack; corrected from an earlier `null`/unbounded clip at the CT-GF1 fix round); `UiMenu` overrides it true, paired with `ClipsChildren => false` so its own out-of-bounds `OnHitTest` union (the popup occupies `ly < 0` or `ly >= Height` depending on open direction) stays reachable through the same early-bounds gate that now defaults on for every other element. | `src/AcDream.App/UI/UiElement.cs` (`ClipsChildren`, `ExpandsClipForPopup`, `DrawOverlays`); `src/AcDream.App/UI/UiRenderContext.cs` (`PushClipUnbounded`); `src/AcDream.App/UI/UiMenu.cs` (the two overrides) | The popup is the ONLY overlay-drawing widget in the tree today (grep-confirmed: exactly one `OnDrawOverlay` override client-wide), and it already renders on top of the whole UI by construction (the overlay pass beats even rect backgrounds), so exempting it from the ancestor clip matches its existing "regardless of tree position" contract rather than introducing new behavior. | A future `OnDrawOverlay` override that is NOT a screen-anchored popup (e.g. an in-place highlight meant to stay window-clipped) would silently escape every ancestor's clip if it left `ExpandsClipForPopup` at its default; the opt-in default direction makes that the exception rather than the rule, but a widget that WANTS window-clipped overlay content has no dedicated seam beyond simply not overriding the escape. | `UIRegion::DrawHere @0x0069FA30`; `UIElement_Menu::MakePopup`; the register's own AP-201 retirement note (the FIRST `ClipsChildren`/`PushClip` port, for `UiScrollablePanel`'s viewport) | +| AD-118 | **Filed 2026-09-03 at Campaign OVERHAUL v2 S3 (docs/ISSUES.md #458, resolved).** The walk's portal-view EDGE PLANES are built from acdream's own float projection (`WalkCopyView` on `IWalkRayCaster`'s unprojected rays; the replay context's `Matrix4x4` view-proj), while retail builds them in `Render::copy_view @0x0054dfc0` from D3D-transformed screen points under x87 arithmetic. The planes agree to about 0.5 % (measured live at the Holtburg doorway: the fourth door-edge plane's clip height at the ring-21 block `a9c9` is 300.4/310.2 m in retail vs 298.8/308.5 m here — a slope ratio of 0.05104 vs 0.05042, roughly 0.35 px of projected door-vertex position at 720p), which is invisible everywhere except at a block/cell corner that sits within that margin of a plane: there `Render::block_check`'s four-corner unanimity test can flip PartiallyInside↔Outside for a far LOD block (one corner inside for us, outside for retail), admitting or skipping a whole distant land block retail decides the other way. | `src/AcDream.App/Rendering/Walk/WalkCopyView.cs` (per-edge plane build); `src/AcDream.App/Rendering/Walk/WalkVisibilityMath.cs` (`FillClipHeights`, `CornerPlaneCheck`, `BlockCheck`); `tests/AcDream.App.Tests/Rendering/Walk/WalkTraceReplay.cs` (the replay's projection) | Bit-exact agreement would require reproducing D3D's x87 vertex transform and `copy_view`'s exact rounding order; the algorithm, sentinels, loop shape, z slab padding and verdict logic are all ported verbatim and reproduce three of four capture poses exactly at the eight-kind transcript level. | A land block at ≥ 20 rings whose corner lies within ~0.5 % of a doorway edge plane may be drawn where retail skips it (or vice versa) — one far, low-LOD block, no known visible artifact; the `WalkTraceConformanceTests.Oh_doorway_still_first_frame_diff` row stays `KnownFailure` as the standing example. | `Render::copy_view @0x0054dfc0`; `Render::get_clip_height @0x0054cff0`; `Render::block_check @0x0054dc50`; `LScape::draw_check_blocks @0x00505f80` (the `if (esi_3 != 0)` residency gate and the per-view `block_check` call @0x005061df); captures `docs/research/2026-09-01-overhaul/oh-capture/holtburg-doorway-still.blockcheck.log` / `.blockset.log` | --- diff --git a/docs/research/2026-09-01-overhaul/oh-capture/README.md b/docs/research/2026-09-01-overhaul/oh-capture/README.md index bbc41f03..45abf3aa 100644 --- a/docs/research/2026-09-01-overhaul/oh-capture/README.md +++ b/docs/research/2026-09-01-overhaul/oh-capture/README.md @@ -12,6 +12,7 @@ capture is the detach frame and carries no events — never count it. | `holtburg-doorway-still` | interior `a9b4013f`, ov=2 | walk / parts / alphadepth | | `terrace-edge` | outdoor `f418000b` (14 buildings, identical to FW0) | walk / parts / alphadepth | | `foundry-deep` | interior `a9b40176`, ov=1 | walk / parts / alphadepth | +| `holtburg-doorway-still` #458 follow-up (2026-09-03 afternoon, a NEARBY pose — its own `P` line, not the walk capture's) | interior `a9b4013f`, ov=2 | `blockset` (every `Render::block_check` call of one frame: 2,601 blocks × 2 views + the return codes; `oh-capture-blockset.cdb.template`) / `blockcheck` (block `a9c9` only: the four corner interval vectors, z slab 75..330, ret 1 then 0; `oh-capture-blockcheck.cdb.template`) | `oh-recon.log` is the offset/breakpoint recon that PASSED before the poses. Per-pose counts and observations: `../s3-walk-ownership-map.md` §6b. diff --git a/docs/research/2026-09-01-overhaul/oh-capture/holtburg-doorway-still.blockcheck.log b/docs/research/2026-09-01-overhaul/oh-capture/holtburg-doorway-still.blockcheck.log new file mode 100644 index 00000000..5508395f --- /dev/null +++ b/docs/research/2026-09-01-overhaul/oh-capture/holtburg-doorway-still.blockcheck.log @@ -0,0 +1,124 @@ +Opened log file 'C:/Users/erikn/source/repos/acdream/.claude/worktrees/peaceful-blackburn-5333f0/logs/oh-capture/holtburg-doorway-still.blockcheck.log' +0:018> .sympath C:\Users\erikn\source\repos\acdream\refs +Symbol search path is: C:\Users\erikn\source\repos\acdream\refs +Expanded Symbol search path is: c:\users\erikn\source\repos\acdream\refs + +************* Path validation summary ************** +Response Time (ms) Location +OK C:\Users\erikn\source\repos\acdream\refs +0:018> .symopt+ 0x40 +Symbol options are 0xB0367: + 0x00000001 - SYMOPT_CASE_INSENSITIVE + 0x00000002 - SYMOPT_UNDNAME + 0x00000004 - SYMOPT_DEFERRED_LOADS + 0x00000020 - SYMOPT_OMAP_FIND_NEAREST + 0x00000040 - SYMOPT_LOAD_ANYTHING + 0x00000100 - SYMOPT_NO_UNQUALIFIED_LOADS + 0x00000200 - SYMOPT_FAIL_CRITICAL_ERRORS + 0x00010000 - SYMOPT_AUTO_PUBLICS + 0x00020000 - SYMOPT_NO_IMAGE_SEARCH + 0x00080000 - SYMOPT_NO_PROMPTS +0:018> .reload /f acclient.exe +0:018> r $t0 = 0 +0:018> r $t8 = 0 +0:018> bp 00453aa0 "r $t0 = @$t0 + 1; .printf \"F %d\\n\", @$t0; .printf \"P %08x %08x %08x %08x %08x %08x %08x %08x\\n\", poi(0081ef00+4), poi(0081ef00+0x3c), poi(0081ef00+0x40), poi(0081ef00+0x44), poi(0081ef00+8), poi(0081ef00+0xc), poi(0081ef00+0x10), poi(0081ef00+0x14); .if (@$t0 < 0n2) { gc }" +0:018> * NOTE (2026-09-03, first run): `poi(...) == 0xa9c9ffff` never matched ? cdb +0:018> * sign-extends the 32-bit read inside `.if`, so the equality is false for any +0:018> * DID with the top bit set. `dwo(...)` reads an unsigned dword; the blockset +0:018> * template proved the register facts (did=a9c9ffff at gx=25 gy=46, twice a +0:018> * frame for the two doorway views). +0:018> bp 0054dc50 ".if (dwo(@esi+0x28) == 0xa9c9ffff) { r $t8 = 1; .printf \"BC did=%08x gx=%d gy=%d max=%08x min=%08x\\n\", dwo(@esi+0x28), @ebx, @ebp, dwo(@esp+0x14), dwo(@esp+0x18); .printf \"W0\"; dd poi(@esp+4) L20; .printf \"W1\"; dd poi(@esp+8) L20; .printf \"E0\"; dd poi(@esp+0xc) L20; .printf \"E1\"; dd poi(@esp+0x10) L20 }; gc" +0:018> bp 005061e9 ".if (@$t8 == 1) { .printf \"BR ret=%d\\n\", @eax; r $t8 = 0 }; gc" +0:018> g +F 1 +P a9b4013f 430542ff 415c0def 42c0a8f8 bf7bf267 3e13e94a 3c745f23 bdd02083 +BC did=a9c9ffff gx=25 gy=46 max=43a50000 min=42960000 +W017c59818 00000000 00000000 00000000 00000000 +17c59828 43963738 00000000 03000000 00000000 +17c59838 02000000 04030201 06090704 090e0a06 +17c59848 0c120e08 0f17110a 131c150c 1621190e +17c59858 19251c10 1c2b2012 1f2f2314 23332615 +17c59868 27392a18 2a3f2f1a 2d43321c 3148351e +17c59878 334d3920 37523d22 3b584124 3e5b4426 +17c59888 41614828 45654b2a 47694e2b 496c502c +W117c59898 00000000 00000000 00000000 00000000 +17c598a8 439b1786 00000000 537c5c33 537c5c33 +17c598b8 537c5c33 537c5c33 527a5a32 51795a32 +17c598c8 50765731 4e73552f 4c70532e 496c502c +17c598d8 47694e2b 45654b2a 41614828 3e5c4426 +17c598e8 3b584124 37523d22 344e3a20 3148351e +17c598f8 2d43321c 2a3f2f1a 27392a18 24352716 +17c59908 20302414 1c2b2012 19251c10 1621190e +E017c57e18 00000000 00000000 00000000 00000000 +17c57e28 43963738 00000000 5818005c 00561700 +17c57e38 16005916 5716005a 004d1700 16003c17 +17c57e48 3b18003a 003b1700 16004116 5417004e +17c57e58 00571600 14005615 4e150054 00401300 +17c57e68 0e003411 230a002d 00160700 01000201 +17c57e78 09030004 000f0400 08001806 2e090024 +17c57e88 00380b00 0c00410c 530d004a 005c1100 +E117c57e98 00000000 00000000 00000000 00000000 +17c57ea8 439b1786 00000000 04007e04 8008007f +17c57eb8 00800c00 13007f10 8010007f 00801200 +17c57ec8 1d008018 7a1e007f 00782300 1e006d23 +17c57ed8 4d1c005a 00471a00 1a00471a 50190048 +17c57ee8 00591900 19005f19 60160062 00591600 +17c57ef8 15005516 4f160053 00461700 16003a16 +17c57f08 3b17003a 003f1600 18004917 5f180056 +BR ret=1 +BC did=a9c9ffff gx=25 gy=46 max=43a50000 min=42960000 +W017c59818 00000000 00000000 00000000 447a4000 +17c59828 4396371f 00000000 03000000 00000000 +17c59838 02000000 04030201 06090704 090e0a06 +17c59848 0c120e08 0f17110a 131c150c 1621190e +17c59858 19251c10 1c2b2012 1f2f2314 23332615 +17c59868 27392a18 2a3f2f1a 2d43321c 3148351e +17c59878 334d3920 37523d22 3b584124 3e5b4426 +17c59888 41614828 45654b2a 47694e2b 496c502c +W117c59898 00000000 00000000 00000000 447a4000 +17c598a8 439b176b 00000000 537c5c33 537c5c33 +17c598b8 537c5c33 537c5c33 527a5a32 51795a32 +17c598c8 50765731 4e73552f 4c70532e 496c502c +17c598d8 47694e2b 45654b2a 41614828 3e5c4426 +17c598e8 3b584124 37523d22 344e3a20 3148351e +17c598f8 2d43321c 2a3f2f1a 27392a18 24352716 +17c59908 20302414 1c2b2012 19251c10 1621190e +E017c57e18 00000000 00000000 00000000 447a4000 +17c57e28 4396371e 00000000 5818005c 00561700 +17c57e38 16005916 5716005a 004d1700 16003c17 +17c57e48 3b18003a 003b1700 16004116 5417004e +17c57e58 00571600 14005615 4e150054 00401300 +17c57e68 0e003411 230a002d 00160700 01000201 +17c57e78 09030004 000f0400 08001806 2e090024 +17c57e88 00380b00 0c00410c 530d004a 005c1100 +E117c57e98 00000000 00000000 00000000 447a4000 +17c57ea8 439b176a 00000000 04007e04 8008007f +17c57eb8 00800c00 13007f10 8010007f 00801200 +17c57ec8 1d008018 7a1e007f 00782300 1e006d23 +17c57ed8 4d1c005a 00471a00 1a00471a 50190048 +17c57ee8 00591900 19005f19 60160062 00591600 +17c57ef8 15005516 4f160053 00461700 16003a16 +17c57f08 3b17003a 003f1600 18004917 5f180056 +BR ret=0 +F 2 +P a9b4013f 430542ff 415c0def 42c0a8f8 bf7bf267 3e13e94a 3c745f23 bdd02083 +eax=27948130 ebx=00000009 ecx=00a566d8 edx=3e900471 esi=00a566d8 edi=009a09b0 +eip=00453aa0 esp=001afe84 ebp=001aff74 iopl=0 nv up ei pl nz na pe nc +cs=0023 ss=002b ds=002b es=002b fs=0053 gs=002b efl=00200206 +acclient!SmartBox::RenderNormalMode: +00453aa0 a130f38600 mov eax,dword ptr [acclient!RenderDevice::render_device (0086f330)] ds:002b:0086f330=00a64b88 +0:000> .echo ===DETACHING=== +===DETACHING=== +0:000> qd +quit: +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\atlmfc.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\concurrency.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\cpp_rest.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\ObjectiveC.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\stl.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\Windows.Data.Json.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\Windows.Devices.Geolocation.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\Windows.Devices.Sensors.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\Windows.Media.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\windows.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\winrt.natvis' diff --git a/docs/research/2026-09-01-overhaul/oh-capture/holtburg-doorway-still.blockset.log b/docs/research/2026-09-01-overhaul/oh-capture/holtburg-doorway-still.blockset.log new file mode 100644 index 00000000..f2b222d7 --- /dev/null +++ b/docs/research/2026-09-01-overhaul/oh-capture/holtburg-doorway-still.blockset.log @@ -0,0 +1,10934 @@ +Opened log file 'C:/Users/erikn/source/repos/acdream/.claude/worktrees/peaceful-blackburn-5333f0/logs/oh-capture/holtburg-doorway-still.blockset.log' +0:018> .sympath C:\Users\erikn\source\repos\acdream\refs +Symbol search path is: C:\Users\erikn\source\repos\acdream\refs +Expanded Symbol search path is: c:\users\erikn\source\repos\acdream\refs + +************* Path validation summary ************** +Response Time (ms) Location +OK C:\Users\erikn\source\repos\acdream\refs +0:018> .symopt+ 0x40 +Symbol options are 0xB0367: + 0x00000001 - SYMOPT_CASE_INSENSITIVE + 0x00000002 - SYMOPT_UNDNAME + 0x00000004 - SYMOPT_DEFERRED_LOADS + 0x00000020 - SYMOPT_OMAP_FIND_NEAREST + 0x00000040 - SYMOPT_LOAD_ANYTHING + 0x00000100 - SYMOPT_NO_UNQUALIFIED_LOADS + 0x00000200 - SYMOPT_FAIL_CRITICAL_ERRORS + 0x00010000 - SYMOPT_AUTO_PUBLICS + 0x00020000 - SYMOPT_NO_IMAGE_SEARCH + 0x00080000 - SYMOPT_NO_PROMPTS +0:018> .reload /f acclient.exe +0:018> r $t0 = 0 +0:018> r $t9 = 0 +0:018> bp 00453aa0 "r $t0 = @$t0 + 1; .printf \"N %d\\n\", @$t9; r $t9 = 0; .printf \"F %d\\n\", @$t0; .printf \"P %08x %08x %08x %08x %08x %08x %08x %08x\\n\", poi(0081ef00+4), poi(0081ef00+0x3c), poi(0081ef00+0x40), poi(0081ef00+0x44), poi(0081ef00+8), poi(0081ef00+0xc), poi(0081ef00+0x10), poi(0081ef00+0x14); .if (@$t0 < 0n2) { gc }" +0:018> bp 0054dc50 "r $t9 = @$t9 + 1; .printf \"BC did=%08x gx=%d gy=%d esi=%08x\\n\", poi(@esi+0x28), @ebx, @ebp, @esi; gc" +0:018> bp 005061e9 ".printf \"BR ret=%d\\n\", @eax; gc" +0:018> g +N 0 +F 1 +P a9b4013f 43054394 415c1175 42c0a8ff bf7bef69 3e13e789 3c756ee5 bdd107f7 +BC did=909bffff gx=0 gy=0 esi=1c63cac8 +BR ret=0 +BC did=909cffff gx=0 gy=1 esi=1c63e808 +BR ret=0 +BC did=909dffff gx=0 gy=2 esi=1c63de48 +BR ret=0 +BC did=909effff gx=0 gy=3 esi=1c63fa50 +BR ret=0 +BC did=909fffff gx=0 gy=4 esi=1c63daa0 +BR ret=0 +BC did=90a0ffff gx=0 gy=5 esi=1c63e6d0 +BR ret=0 +BC did=90a1ffff gx=0 gy=6 esi=1c63d830 +BR ret=0 +BC did=90a2ffff gx=0 gy=7 esi=1c63f300 +BR ret=0 +BC did=90a3ffff gx=0 gy=8 esi=1c63d968 +BR ret=0 +BC did=90a4ffff gx=0 gy=9 esi=1c63f918 +BR ret=0 +BC did=90a5ffff gx=0 gy=10 esi=1c63dd10 +BR ret=0 +BC did=90a6ffff gx=0 gy=11 esi=1c63e940 +BR ret=0 +BC did=90a7ffff gx=0 gy=12 esi=1c63e598 +BR ret=0 +BC did=90a8ffff gx=0 gy=13 esi=1c63e0b8 +BR ret=0 +BC did=90a9ffff gx=0 gy=14 esi=1c63fb88 +BR ret=0 +BC did=90aaffff gx=0 gy=15 esi=1c63ef58 +BR ret=0 +BC did=90abffff gx=0 gy=16 esi=1c63ea78 +BR ret=0 +BC did=90acffff gx=0 gy=17 esi=1c63e460 +BR ret=0 +BC did=90adffff gx=0 gy=18 esi=1c63f438 +BR ret=0 +BC did=90aeffff gx=0 gy=19 esi=1c63e1f0 +BR ret=0 +BC did=90afffff gx=0 gy=20 esi=1c63e328 +BR ret=0 +BC did=90b0ffff gx=0 gy=21 esi=1c63d5c0 +BR ret=0 +BC did=90b1ffff gx=0 gy=22 esi=1c63f6a8 +BR ret=0 +BC did=90b2ffff gx=0 gy=23 esi=1c63ebb0 +BR ret=0 +BC did=90b3ffff gx=0 gy=24 esi=1c63dbd8 +BR ret=0 +BC did=90b4ffff gx=0 gy=25 esi=1c63ece8 +BR ret=0 +BC did=90b5ffff gx=0 gy=26 esi=1c63f1c8 +BR ret=0 +BC did=90b6ffff gx=0 gy=27 esi=1c63ee20 +BR ret=0 +BC did=90b7ffff gx=0 gy=28 esi=1c63d6f8 +BR ret=0 +BC did=90b8ffff gx=0 gy=29 esi=1c63f090 +BR ret=0 +BC did=90b9ffff gx=0 gy=30 esi=1c63f570 +BR ret=0 +BC did=90baffff gx=0 gy=31 esi=1c63df80 +BR ret=0 +BC did=90bbffff gx=0 gy=32 esi=1c63f7e0 +BR ret=0 +BC did=90bcffff gx=0 gy=33 esi=1c63ff30 +BR ret=0 +BC did=90bdffff gx=0 gy=34 esi=1c6418c8 +BR ret=0 +BC did=90beffff gx=0 gy=35 esi=1c641a00 +BR ret=0 +BC did=90bfffff gx=0 gy=36 esi=1c6408f0 +BR ret=0 +BC did=90c0ffff gx=0 gy=37 esi=1c642018 +BR ret=0 +BC did=90c1ffff gx=0 gy=38 esi=1c6401a0 +BR ret=0 +BC did=90c2ffff gx=0 gy=39 esi=1c640f08 +BR ret=0 +BC did=90c3ffff gx=0 gy=40 esi=1c640068 +BR ret=0 +BC did=90c4ffff gx=0 gy=41 esi=1c641790 +BR ret=0 +BC did=90c5ffff gx=0 gy=42 esi=1c640dd0 +BR ret=0 +BC did=90c6ffff gx=0 gy=43 esi=1c641b38 +BR ret=0 +BC did=90c7ffff gx=0 gy=44 esi=1c641040 +BR ret=0 +BC did=90c8ffff gx=0 gy=45 esi=1c640548 +BR ret=0 +BC did=90c9ffff gx=0 gy=46 esi=1c6402d8 +BR ret=0 +BC did=90caffff gx=0 gy=47 esi=1c641658 +BR ret=0 +BC did=90cbffff gx=0 gy=48 esi=1c641178 +BR ret=0 +BC did=90ccffff gx=0 gy=49 esi=1c641c70 +BR ret=0 +BC did=90cdffff gx=0 gy=50 esi=1c640410 +BR ret=0 +BC did=919bffff gx=1 gy=0 esi=1c6412b0 +BR ret=0 +BC did=919cffff gx=1 gy=1 esi=1c63fcc0 +BR ret=0 +BC did=919dffff gx=1 gy=2 esi=1c641da8 +BR ret=0 +BC did=919effff gx=1 gy=3 esi=1c641ee0 +BR ret=0 +BC did=919fffff gx=1 gy=4 esi=1c640a28 +BR ret=0 +BC did=91a0ffff gx=1 gy=5 esi=1c640b60 +BR ret=0 +BC did=91a1ffff gx=1 gy=6 esi=1c642150 +BR ret=0 +BC did=91a2ffff gx=1 gy=7 esi=1c63fdf8 +BR ret=0 +BC did=91a3ffff gx=1 gy=8 esi=1c640680 +BR ret=0 +BC did=91a4ffff gx=1 gy=9 esi=1c6413e8 +BR ret=0 +BC did=91a5ffff gx=1 gy=10 esi=1c640c98 +BR ret=0 +BC did=91a6ffff gx=1 gy=11 esi=1c641520 +BR ret=0 +BC did=91a7ffff gx=1 gy=12 esi=1c642288 +BR ret=0 +BC did=91a8ffff gx=1 gy=13 esi=1c6407b8 +BR ret=0 +BC did=91a9ffff gx=1 gy=14 esi=1c6423c0 +BR ret=0 +BC did=91aaffff gx=1 gy=15 esi=1c6424f8 +BR ret=0 +BC did=91abffff gx=1 gy=16 esi=1c642630 +BR ret=0 +BC did=91acffff gx=1 gy=17 esi=1c623148 +BR ret=0 +BC did=91adffff gx=1 gy=18 esi=1c624d50 +BR ret=0 +BC did=91aeffff gx=1 gy=19 esi=1c623c40 +BR ret=0 +BC did=91afffff gx=1 gy=20 esi=1c624600 +BR ret=0 +BC did=91b0ffff gx=1 gy=21 esi=1c6244c8 +BR ret=0 +BC did=91b1ffff gx=1 gy=22 esi=1c624c18 +BR ret=0 +BC did=91b2ffff gx=1 gy=23 esi=1c622da0 +BR ret=0 +BC did=91b3ffff gx=1 gy=24 esi=1c623b08 +BR ret=0 +BC did=91b4ffff gx=1 gy=25 esi=1c622c68 +BR ret=0 +BC did=91b5ffff gx=1 gy=26 esi=1c624390 +BR ret=0 +BC did=91b6ffff gx=1 gy=27 esi=1c6239d0 +BR ret=0 +BC did=91b7ffff gx=1 gy=28 esi=1c624738 +BR ret=0 +BC did=91b8ffff gx=1 gy=29 esi=1c623d78 +BR ret=0 +BC did=91b9ffff gx=1 gy=30 esi=1c623eb0 +BR ret=0 +BC did=91baffff gx=1 gy=31 esi=1c624e88 +BR ret=0 +BC did=91bbffff gx=1 gy=32 esi=1c623760 +BR ret=0 +BC did=91bcffff gx=1 gy=33 esi=1c6228c0 +BR ret=0 +BC did=91bdffff gx=1 gy=34 esi=1c624120 +BR ret=0 +BC did=91beffff gx=1 gy=35 esi=1c6249a8 +BR ret=0 +BC did=91bfffff gx=1 gy=36 esi=1c624870 +BR ret=0 +BC did=91c0ffff gx=1 gy=37 esi=1c623280 +BR ret=0 +BC did=91c1ffff gx=1 gy=38 esi=1c623fe8 +BR ret=0 +BC did=91c2ffff gx=1 gy=39 esi=1c624ae0 +BR ret=0 +BC did=91c3ffff gx=1 gy=40 esi=1c623010 +BR ret=0 +BC did=91c4ffff gx=1 gy=41 esi=1c624258 +BR ret=0 +BC did=91c5ffff gx=1 gy=42 esi=1c6229f8 +BR ret=0 +BC did=91c6ffff gx=1 gy=43 esi=1c622b30 +BR ret=0 +BC did=91c7ffff gx=1 gy=44 esi=1c6234f0 +BR ret=0 +BC did=91c8ffff gx=1 gy=45 esi=1c622ed8 +BR ret=0 +BC did=91c9ffff gx=1 gy=46 esi=1c6233b8 +BR ret=0 +BC did=91caffff gx=1 gy=47 esi=1c623628 +BR ret=0 +BC did=91cbffff gx=1 gy=48 esi=1c623898 +BR ret=0 +BC did=91ccffff gx=1 gy=49 esi=1c626478 +BR ret=0 +BC did=91cdffff gx=1 gy=50 esi=1c625368 +BR ret=0 +BC did=929bffff gx=2 gy=0 esi=1c6270a8 +BR ret=0 +BC did=929cffff gx=2 gy=1 esi=1c625e60 +BR ret=0 +BC did=929dffff gx=2 gy=2 esi=1c6265b0 +BR ret=0 +BC did=929effff gx=2 gy=3 esi=1c626820 +BR ret=0 +BC did=929fffff gx=2 gy=4 esi=1c6250f8 +BR ret=0 +BC did=92a0ffff gx=2 gy=5 esi=1c6266e8 +BR ret=0 +BC did=92a1ffff gx=2 gy=6 esi=1c625d28 +BR ret=0 +BC did=92a2ffff gx=2 gy=7 esi=1c627588 +BR ret=0 +BC did=92a3ffff gx=2 gy=8 esi=1c625848 +BR ret=0 +BC did=92a4ffff gx=2 gy=9 esi=1c626a90 +BR ret=0 +BC did=92a5ffff gx=2 gy=10 esi=1c626f70 +BR ret=0 +BC did=92a6ffff gx=2 gy=11 esi=1c625710 +BR ret=0 +BC did=92a7ffff gx=2 gy=12 esi=1c626958 +BR ret=0 +BC did=92a8ffff gx=2 gy=13 esi=1c625bf0 +BR ret=0 +BC did=92a9ffff gx=2 gy=14 esi=1c625230 +BR ret=0 +BC did=92aaffff gx=2 gy=15 esi=1c625f98 +BR ret=0 +BC did=92abffff gx=2 gy=16 esi=1c626d00 +BR ret=0 +BC did=92acffff gx=2 gy=17 esi=1c625980 +BR ret=0 +BC did=92adffff gx=2 gy=18 esi=1c6254a0 +BR ret=0 +BC did=92aeffff gx=2 gy=19 esi=1c624fc0 +BR ret=0 +BC did=92afffff gx=2 gy=20 esi=1c625ab8 +BR ret=0 +BC did=92b0ffff gx=2 gy=21 esi=1c6255d8 +BR ret=0 +BC did=92b1ffff gx=2 gy=22 esi=1c626bc8 +BR ret=0 +BC did=92b2ffff gx=2 gy=23 esi=1c626e38 +BR ret=0 +BC did=92b3ffff gx=2 gy=24 esi=1c6271e0 +BR ret=0 +BC did=92b4ffff gx=2 gy=25 esi=1c6260d0 +BR ret=0 +BC did=92b5ffff gx=2 gy=26 esi=1c626208 +BR ret=0 +BC did=92b6ffff gx=2 gy=27 esi=1c627318 +BR ret=0 +BC did=92b7ffff gx=2 gy=28 esi=1c627450 +BR ret=0 +BC did=92b8ffff gx=2 gy=29 esi=1c626340 +BR ret=0 +BC did=92b9ffff gx=2 gy=30 esi=1c6281b8 +BR ret=0 +BC did=92baffff gx=2 gy=31 esi=1c627a68 +BR ret=0 +BC did=92bbffff gx=2 gy=32 esi=1c629190 +BR ret=0 +BC did=92bcffff gx=2 gy=33 esi=1c629c88 +BR ret=0 +BC did=92bdffff gx=2 gy=34 esi=1c628de8 +BR ret=0 +BC did=92beffff gx=2 gy=35 esi=1c6297a8 +BR ret=0 +BC did=92bfffff gx=2 gy=36 esi=1c628428 +BR ret=0 +BC did=92c0ffff gx=2 gy=37 esi=1c6277f8 +BR ret=0 +BC did=92c1ffff gx=2 gy=38 esi=1c627ba0 +BR ret=0 +BC did=92c2ffff gx=2 gy=39 esi=1c629b50 +BR ret=0 +BC did=92c3ffff gx=2 gy=40 esi=1c629670 +BR ret=0 +BC did=92c4ffff gx=2 gy=41 esi=1c628560 +BR ret=0 +BC did=92c5ffff gx=2 gy=42 esi=1c628f20 +BR ret=0 +BC did=92c6ffff gx=2 gy=43 esi=1c6276c0 +BR ret=0 +BC did=92c7ffff gx=2 gy=44 esi=1c629538 +BR ret=0 +BC did=92c8ffff gx=2 gy=45 esi=1c629400 +BR ret=0 +BC did=92c9ffff gx=2 gy=46 esi=1c627930 +BR ret=0 +BC did=92caffff gx=2 gy=47 esi=1c629a18 +BR ret=0 +BC did=92cbffff gx=2 gy=48 esi=1c627cd8 +BR ret=0 +BC did=92ccffff gx=2 gy=49 esi=1c629058 +BR ret=0 +BC did=92cdffff gx=2 gy=50 esi=1c628698 +BR ret=0 +BC did=939bffff gx=3 gy=0 esi=1c6282f0 +BR ret=0 +BC did=939cffff gx=3 gy=1 esi=1c6287d0 +BR ret=0 +BC did=939dffff gx=3 gy=2 esi=1c628908 +BR ret=0 +BC did=939effff gx=3 gy=3 esi=1c627e10 +BR ret=0 +BC did=939fffff gx=3 gy=4 esi=1c627f48 +BR ret=0 +BC did=93a0ffff gx=3 gy=5 esi=1c628a40 +BR ret=0 +BC did=93a1ffff gx=3 gy=6 esi=1c628080 +BR ret=0 +BC did=93a2ffff gx=3 gy=7 esi=1c628b78 +BR ret=0 +BC did=93a3ffff gx=3 gy=8 esi=1c628cb0 +BR ret=0 +BC did=93a4ffff gx=3 gy=9 esi=1c6292c8 +BR ret=0 +BC did=93a5ffff gx=3 gy=10 esi=1c6298e0 +BR ret=0 +BC did=93a6ffff gx=3 gy=11 esi=1c62ad98 +BR ret=0 +BC did=93a7ffff gx=3 gy=12 esi=1c62b140 +BR ret=0 +BC did=93a8ffff gx=3 gy=13 esi=1c62ac60 +BR ret=0 +BC did=93a9ffff gx=3 gy=14 esi=1c62a168 +BR ret=0 +BC did=93aaffff gx=3 gy=15 esi=1c62b4e8 +BR ret=0 +BC did=93abffff gx=3 gy=16 esi=1c62aed0 +BR ret=0 +BC did=93acffff gx=3 gy=17 esi=1c62b278 +BR ret=0 +BC did=93adffff gx=3 gy=18 esi=1c62bea8 +BR ret=0 +BC did=93aeffff gx=3 gy=19 esi=1c62b620 +BR ret=0 +BC did=93afffff gx=3 gy=20 esi=1c62b758 +BR ret=0 +BC did=93b0ffff gx=3 gy=21 esi=1c62b890 +BR ret=0 +BC did=93b1ffff gx=3 gy=22 esi=1c62b3b0 +BR ret=0 +BC did=93b2ffff gx=3 gy=23 esi=1c62a9f0 +BR ret=0 +BC did=93b3ffff gx=3 gy=24 esi=1c629dc0 +BR ret=0 +BC did=93b4ffff gx=3 gy=25 esi=1c62c118 +BR ret=0 +BC did=93b5ffff gx=3 gy=26 esi=1c62a030 +BR ret=0 +BC did=93b6ffff gx=3 gy=27 esi=1c62bd70 +BR ret=0 +BC did=93b7ffff gx=3 gy=28 esi=1c62ab28 +BR ret=0 +BC did=93b8ffff gx=3 gy=29 esi=1c62b008 +BR ret=0 +BC did=93b9ffff gx=3 gy=30 esi=1c62a648 +BR ret=0 +BC did=93baffff gx=3 gy=31 esi=1c62b9c8 +BR ret=0 +BC did=93bbffff gx=3 gy=32 esi=1c62a2a0 +BR ret=0 +BC did=93bcffff gx=3 gy=33 esi=1c62bb00 +BR ret=0 +BC did=93bdffff gx=3 gy=34 esi=1c62a3d8 +BR ret=0 +BC did=93beffff gx=3 gy=35 esi=1c62bc38 +BR ret=0 +BC did=93bfffff gx=3 gy=36 esi=1c62a510 +BR ret=0 +BC did=93c0ffff gx=3 gy=37 esi=1c62bfe0 +BR ret=0 +BC did=93c1ffff gx=3 gy=38 esi=1c62a780 +BR ret=0 +BC did=93c2ffff gx=3 gy=39 esi=1c62c250 +BR ret=0 +BC did=93c3ffff gx=3 gy=40 esi=1c62a8b8 +BR ret=0 +BC did=93c4ffff gx=3 gy=41 esi=1c62c388 +BR ret=0 +BC did=93c5ffff gx=3 gy=42 esi=1c629ef8 +BR ret=0 +BC did=93c6ffff gx=3 gy=43 esi=1c5265c8 +BR ret=0 +BC did=93c7ffff gx=3 gy=44 esi=1c524d68 +BR ret=0 +BC did=93c8ffff gx=3 gy=45 esi=15f19658 +BR ret=0 +BC did=93c9ffff gx=3 gy=46 esi=12d05788 +BR ret=0 +BC did=93caffff gx=3 gy=47 esi=1cdee930 +BR ret=0 +BC did=93cbffff gx=3 gy=48 esi=1cdefb78 +BR ret=0 +BC did=93ccffff gx=3 gy=49 esi=1cdef560 +BR ret=0 +BC did=93cdffff gx=3 gy=50 esi=1cdef698 +BR ret=0 +BC did=949bffff gx=4 gy=0 esi=1cdf0a18 +BR ret=0 +BC did=949cffff gx=4 gy=1 esi=1cdeea68 +BR ret=0 +BC did=949dffff gx=4 gy=2 esi=1cdf0538 +BR ret=0 +BC did=949effff gx=4 gy=3 esi=1cdeee10 +BR ret=0 +BC did=949fffff gx=4 gy=4 esi=1cdef908 +BR ret=0 +BC did=94a0ffff gx=4 gy=5 esi=1cdeeba0 +BR ret=0 +BC did=94a1ffff gx=4 gy=6 esi=1cdf0b50 +BR ret=0 +BC did=94a2ffff gx=4 gy=7 esi=1cdef7d0 +BR ret=0 +BC did=94a3ffff gx=4 gy=8 esi=1cdeecd8 +BR ret=0 +BC did=94a4ffff gx=4 gy=9 esi=1cdee7f8 +BR ret=0 +BC did=94a5ffff gx=4 gy=10 esi=1cdef428 +BR ret=0 +BC did=94a6ffff gx=4 gy=11 esi=1cdeef48 +BR ret=0 +BC did=94a7ffff gx=4 gy=12 esi=1cdee6c0 +BR ret=0 +BC did=94a8ffff gx=4 gy=13 esi=1cdf0400 +BR ret=0 +BC did=94a9ffff gx=4 gy=14 esi=1cdef080 +BR ret=0 +BC did=94aaffff gx=4 gy=15 esi=1cdefcb0 +BR ret=0 +BC did=94abffff gx=4 gy=16 esi=1cdefde8 +BR ret=0 +BC did=94acffff gx=4 gy=17 esi=1cdef1b8 +BR ret=0 +BC did=94adffff gx=4 gy=18 esi=1cdef2f0 +BR ret=0 +BC did=94aeffff gx=4 gy=19 esi=1cdefa40 +BR ret=0 +BC did=94afffff gx=4 gy=20 esi=1cdf0670 +BR ret=0 +BC did=94b0ffff gx=4 gy=21 esi=1cdf0190 +BR ret=0 +BC did=94b1ffff gx=4 gy=22 esi=1cdf02c8 +BR ret=0 +BC did=94b2ffff gx=4 gy=23 esi=1cdeff20 +BR ret=0 +BC did=94b3ffff gx=4 gy=24 esi=1cdf07a8 +BR ret=0 +BC did=94b4ffff gx=4 gy=25 esi=1cdf0058 +BR ret=0 +BC did=94b5ffff gx=4 gy=26 esi=1cdf0c88 +BR ret=0 +BC did=94b6ffff gx=4 gy=27 esi=1cdf08e0 +BR ret=0 +BC did=94b7ffff gx=4 gy=28 esi=1cdf2008 +BR ret=0 +BC did=94b8ffff gx=4 gy=29 esi=1cdf2d70 +BR ret=0 +BC did=94b9ffff gx=4 gy=30 esi=1cdf2278 +BR ret=0 +BC did=94baffff gx=4 gy=31 esi=1cdf1b28 +BR ret=0 +BC did=94bbffff gx=4 gy=32 esi=1cdf23b0 +BR ret=0 +BC did=94bcffff gx=4 gy=33 esi=1cdf24e8 +BR ret=0 +BC did=94bdffff gx=4 gy=34 esi=1cdf3118 +BR ret=0 +BC did=94beffff gx=4 gy=35 esi=1cdf2ea8 +BR ret=0 +BC did=94bfffff gx=4 gy=36 esi=1cdf18b8 +BR ret=0 +BC did=94c0ffff gx=4 gy=37 esi=1cdf1168 +BR ret=0 +BC did=94c1ffff gx=4 gy=38 esi=1cdf2620 +BR ret=0 +BC did=94c2ffff gx=4 gy=39 esi=1cdf2758 +BR ret=0 +BC did=94c3ffff gx=4 gy=40 esi=1cdf2890 +BR ret=0 +BC did=94c4ffff gx=4 gy=41 esi=1cdf1648 +BR ret=0 +BC did=94c5ffff gx=4 gy=42 esi=1cdf2fe0 +BR ret=0 +BC did=94c6ffff gx=4 gy=43 esi=1cdf1510 +BR ret=0 +BC did=94c7ffff gx=4 gy=44 esi=1cdf2140 +BR ret=0 +BC did=94c8ffff gx=4 gy=45 esi=1cdf1780 +BR ret=0 +BC did=94c9ffff gx=4 gy=46 esi=1cdf12a0 +BR ret=0 +BC did=94caffff gx=4 gy=47 esi=1cdf29c8 +BR ret=0 +BC did=94cbffff gx=4 gy=48 esi=1cdf2b00 +BR ret=0 +BC did=94ccffff gx=4 gy=49 esi=1cdf2c38 +BR ret=0 +BC did=94cdffff gx=4 gy=50 esi=1cdf19f0 +BR ret=0 +BC did=959bffff gx=5 gy=0 esi=1cdf3250 +BR ret=0 +BC did=959cffff gx=5 gy=1 esi=1cdf3388 +BR ret=0 +BC did=959dffff gx=5 gy=2 esi=1cdf13d8 +BR ret=0 +BC did=959effff gx=5 gy=3 esi=1cdf0dc0 +BR ret=0 +BC did=959fffff gx=5 gy=4 esi=1cdf1ed0 +BR ret=0 +BC did=95a0ffff gx=5 gy=5 esi=1cdf1c60 +BR ret=0 +BC did=95a1ffff gx=5 gy=6 esi=1cdf1d98 +BR ret=0 +BC did=95a2ffff gx=5 gy=7 esi=1cdf0ef8 +BR ret=0 +BC did=95a3ffff gx=5 gy=8 esi=1cdf1030 +BR ret=0 +BC did=95a4ffff gx=5 gy=9 esi=1cdf5470 +BR ret=0 +BC did=95a5ffff gx=5 gy=10 esi=1cdf4978 +BR ret=0 +BC did=95a6ffff gx=5 gy=11 esi=1cdf4228 +BR ret=0 +BC did=95a7ffff gx=5 gy=12 esi=1cdf4ab0 +BR ret=0 +BC did=95a8ffff gx=5 gy=13 esi=1cdf4498 +BR ret=0 +BC did=95a9ffff gx=5 gy=14 esi=1cdf5818 +BR ret=0 +BC did=95aaffff gx=5 gy=15 esi=1cdf3fb8 +BR ret=0 +BC did=95abffff gx=5 gy=16 esi=1cdf4840 +BR ret=0 +BC did=95acffff gx=5 gy=17 esi=1cdf40f0 +BR ret=0 +BC did=95adffff gx=5 gy=18 esi=1cdf5950 +BR ret=0 +BC did=95aeffff gx=5 gy=19 esi=1cdf45d0 +BR ret=0 +BC did=95afffff gx=5 gy=20 esi=1cdf3c10 +BR ret=0 +BC did=95b0ffff gx=5 gy=21 esi=1cdf3ad8 +BR ret=0 +BC did=95b1ffff gx=5 gy=22 esi=1cdf3730 +BR ret=0 +BC did=95b2ffff gx=5 gy=23 esi=1cdf4360 +BR ret=0 +BC did=95b3ffff gx=5 gy=24 esi=1cdf35f8 +BR ret=0 +BC did=95b4ffff gx=5 gy=25 esi=1cdf4be8 +BR ret=0 +BC did=95b5ffff gx=5 gy=26 esi=1cdf4d20 +BR ret=0 +BC did=95b6ffff gx=5 gy=27 esi=1cdf3d48 +BR ret=0 +BC did=95b7ffff gx=5 gy=28 esi=1cdf3e80 +BR ret=0 +BC did=95b8ffff gx=5 gy=29 esi=1cdf4f90 +BR ret=0 +BC did=95b9ffff gx=5 gy=30 esi=1cdf55a8 +BR ret=0 +BC did=95baffff gx=5 gy=31 esi=1cdf4708 +BR ret=0 +BC did=95bbffff gx=5 gy=32 esi=1cdf4e58 +BR ret=0 +BC did=95bcffff gx=5 gy=33 esi=1cdf50c8 +BR ret=0 +BC did=95bdffff gx=5 gy=34 esi=1cdf5338 +BR ret=0 +BC did=95beffff gx=5 gy=35 esi=1cdf5200 +BR ret=0 +BC did=95bfffff gx=5 gy=36 esi=1cdf56e0 +BR ret=0 +BC did=95c0ffff gx=5 gy=37 esi=1cdf5a88 +BR ret=0 +BC did=95c1ffff gx=5 gy=38 esi=1cdf39a0 +BR ret=0 +BC did=95c2ffff gx=5 gy=39 esi=1cdf34c0 +BR ret=0 +BC did=95c3ffff gx=5 gy=40 esi=1cdf3868 +BR ret=0 +BC did=95c4ffff gx=5 gy=41 esi=1cdf7420 +BR ret=0 +BC did=95c5ffff gx=5 gy=42 esi=1cdf7558 +BR ret=0 +BC did=95c6ffff gx=5 gy=43 esi=1cdf7690 +BR ret=0 +BC did=95c7ffff gx=5 gy=44 esi=1cdf7078 +BR ret=0 +BC did=95c8ffff gx=5 gy=45 esi=1cdf67f0 +BR ret=0 +BC did=95c9ffff gx=5 gy=46 esi=1cdf5bc0 +BR ret=0 +BC did=95caffff gx=5 gy=47 esi=1cdf8050 +BR ret=0 +BC did=95cbffff gx=5 gy=48 esi=1cdf7f18 +BR ret=0 +BC did=95ccffff gx=5 gy=49 esi=1cdf7b70 +BR ret=0 +BC did=95cdffff gx=5 gy=50 esi=1cdf6a60 +BR ret=0 +BC did=969bffff gx=6 gy=0 esi=1cdf8188 +BR ret=0 +BC did=969cffff gx=6 gy=1 esi=1cdf71b0 +BR ret=0 +BC did=969dffff gx=6 gy=2 esi=1cdf6b98 +BR ret=0 +BC did=969effff gx=6 gy=3 esi=1cdf5cf8 +BR ret=0 +BC did=969fffff gx=6 gy=4 esi=1cdf66b8 +BR ret=0 +BC did=96a0ffff gx=6 gy=5 esi=1cdf6f40 +BR ret=0 +BC did=96a1ffff gx=6 gy=6 esi=1cdf6928 +BR ret=0 +BC did=96a2ffff gx=6 gy=7 esi=1cdf5e30 +BR ret=0 +BC did=96a3ffff gx=6 gy=8 esi=1cdf6cd0 +BR ret=0 +BC did=96a4ffff gx=6 gy=9 esi=1cdf6310 +BR ret=0 +BC did=96a5ffff gx=6 gy=10 esi=1cdf61d8 +BR ret=0 +BC did=96a6ffff gx=6 gy=11 esi=1cdf5f68 +BR ret=0 +BC did=96a7ffff gx=6 gy=12 esi=1cdf6e08 +BR ret=0 +BC did=96a8ffff gx=6 gy=13 esi=1cdf60a0 +BR ret=0 +BC did=96a9ffff gx=6 gy=14 esi=1cdf6448 +BR ret=0 +BC did=96aaffff gx=6 gy=15 esi=1cdf72e8 +BR ret=0 +BC did=96abffff gx=6 gy=16 esi=1cdf77c8 +BR ret=0 +BC did=96acffff gx=6 gy=17 esi=1cdf6580 +BR ret=0 +BC did=96adffff gx=6 gy=18 esi=1cdf7900 +BR ret=0 +BC did=96aeffff gx=6 gy=19 esi=1cdf7a38 +BR ret=0 +BC did=96afffff gx=6 gy=20 esi=1cdf7ca8 +BR ret=0 +BC did=96b0ffff gx=6 gy=21 esi=1cdf7de0 +BR ret=0 +BC did=96b1ffff gx=6 gy=22 esi=1cdf98b0 +BR ret=0 +BC did=96b2ffff gx=6 gy=23 esi=1cdf8a10 +BR ret=0 +BC did=96b3ffff gx=6 gy=24 esi=1cdf8b48 +BR ret=0 +BC did=96b4ffff gx=6 gy=25 esi=1cdf9d90 +BR ret=0 +BC did=96b5ffff gx=6 gy=26 esi=1cdfa270 +BR ret=0 +BC did=96b6ffff gx=6 gy=27 esi=1cdf8c80 +BR ret=0 +BC did=96b7ffff gx=6 gy=28 esi=1cdfa618 +BR ret=0 +BC did=96b8ffff gx=6 gy=29 esi=1cdfa3a8 +BR ret=0 +BC did=96b9ffff gx=6 gy=30 esi=1cdf8ef0 +BR ret=0 +BC did=96baffff gx=6 gy=31 esi=1cdf93d0 +BR ret=0 +BC did=96bbffff gx=6 gy=32 esi=1cdf8db8 +BR ret=0 +BC did=96bcffff gx=6 gy=33 esi=1cdf9028 +BR ret=0 +BC did=96bdffff gx=6 gy=34 esi=1cdf99e8 +BR ret=0 +BC did=96beffff gx=6 gy=35 esi=1cdf9298 +BR ret=0 +BC did=96bfffff gx=6 gy=36 esi=1cdfa750 +BR ret=0 +BC did=96c0ffff gx=6 gy=37 esi=1cdf9160 +BR ret=0 +BC did=96c1ffff gx=6 gy=38 esi=1cdf9ec8 +BR ret=0 +BC did=96c2ffff gx=6 gy=39 esi=1cdf9508 +BR ret=0 +BC did=96c3ffff gx=6 gy=40 esi=1cdfa4e0 +BR ret=0 +BC did=96c4ffff gx=6 gy=41 esi=1cdf9640 +BR ret=0 +BC did=96c5ffff gx=6 gy=42 esi=1cdfa888 +BR ret=0 +BC did=96c6ffff gx=6 gy=43 esi=1cdf9778 +BR ret=0 +BC did=96c7ffff gx=6 gy=44 esi=1cdf82c0 +BR ret=0 +BC did=96c8ffff gx=6 gy=45 esi=1cdf9b20 +BR ret=0 +BC did=96c9ffff gx=6 gy=46 esi=1cdf9c58 +BR ret=0 +BC did=96caffff gx=6 gy=47 esi=1cdfa000 +BR ret=0 +BC did=96cbffff gx=6 gy=48 esi=1cdf87a0 +BR ret=0 +BC did=96ccffff gx=6 gy=49 esi=1cdfa138 +BR ret=0 +BC did=96cdffff gx=6 gy=50 esi=1cdf83f8 +BR ret=0 +BC did=979bffff gx=7 gy=0 esi=1cdf8530 +BR ret=0 +BC did=979cffff gx=7 gy=1 esi=1cdf8668 +BR ret=0 +BC did=979dffff gx=7 gy=2 esi=1cdf88d8 +BR ret=0 +BC did=979effff gx=7 gy=3 esi=1cdfa9c0 +BR ret=0 +BC did=979fffff gx=7 gy=4 esi=1cdfc838 +BR ret=0 +BC did=97a0ffff gx=7 gy=5 esi=1cdfbfb0 +BR ret=0 +BC did=97a1ffff gx=7 gy=6 esi=1cdfb728 +BR ret=0 +BC did=97a2ffff gx=7 gy=7 esi=1cdfb860 +BR ret=0 +BC did=97a3ffff gx=7 gy=8 esi=1cdfc5c8 +BR ret=0 +BC did=97a4ffff gx=7 gy=9 esi=1cdfc970 +BR ret=0 +BC did=97a5ffff gx=7 gy=10 esi=1cdfcbe0 +BR ret=0 +BC did=97a6ffff gx=7 gy=11 esi=1cdfc0e8 +BR ret=0 +BC did=97a7ffff gx=7 gy=12 esi=1cdfb998 +BR ret=0 +BC did=97a8ffff gx=7 gy=13 esi=1cdfcd18 +BR ret=0 +BC did=97a9ffff gx=7 gy=14 esi=1cdfb5f0 +BR ret=0 +BC did=97aaffff gx=7 gy=15 esi=1cdfaaf8 +BR ret=0 +BC did=97abffff gx=7 gy=16 esi=1cdfbad0 +BR ret=0 +BC did=97acffff gx=7 gy=17 esi=1cdfc700 +BR ret=0 +BC did=97adffff gx=7 gy=18 esi=1cdfb380 +BR ret=0 +BC did=97aeffff gx=7 gy=19 esi=1cdfaea0 +BR ret=0 +BC did=97afffff gx=7 gy=20 esi=1cdfcaa8 +BR ret=0 +BC did=97b0ffff gx=7 gy=21 esi=1cdfb248 +BR ret=0 +BC did=97b1ffff gx=7 gy=22 esi=1cdfb4b8 +BR ret=0 +BC did=97b2ffff gx=7 gy=23 esi=1cdfac30 +BR ret=0 +BC did=97b3ffff gx=7 gy=24 esi=1cdfbe78 +BR ret=0 +BC did=97b4ffff gx=7 gy=25 esi=1cdfad68 +BR ret=0 +BC did=97b5ffff gx=7 gy=26 esi=1cdfce50 +BR ret=0 +BC did=97b6ffff gx=7 gy=27 esi=1cdfcf88 +BR ret=0 +BC did=97b7ffff gx=7 gy=28 esi=1cdfbc08 +BR ret=0 +BC did=97b8ffff gx=7 gy=29 esi=1cdfc220 +BR ret=0 +BC did=97b9ffff gx=7 gy=30 esi=1cdfbd40 +BR ret=0 +BC did=97baffff gx=7 gy=31 esi=1cdfafd8 +BR ret=0 +BC did=97bbffff gx=7 gy=32 esi=1cdfb110 +BR ret=0 +BC did=97bcffff gx=7 gy=33 esi=1cdfc358 +BR ret=0 +BC did=97bdffff gx=7 gy=34 esi=1cdfc490 +BR ret=0 +BC did=97beffff gx=7 gy=35 esi=1cdfecc8 +BR ret=0 +BC did=97bfffff gx=7 gy=36 esi=1cdfdf60 +BR ret=0 +BC did=97c0ffff gx=7 gy=37 esi=1cdff070 +BR ret=0 +BC did=97c1ffff gx=7 gy=38 esi=1cdfda80 +BR ret=0 +BC did=97c2ffff gx=7 gy=39 esi=1cdff550 +BR ret=0 +BC did=97c3ffff gx=7 gy=40 esi=1cdfd5a0 +BR ret=0 +BC did=97c4ffff gx=7 gy=41 esi=1cdff688 +BR ret=0 +BC did=97c5ffff gx=7 gy=42 esi=1cdff1a8 +BR ret=0 +BC did=97c6ffff gx=7 gy=43 esi=1cdfde28 +BR ret=0 +BC did=97c7ffff gx=7 gy=44 esi=1cdfe920 +BR ret=0 +BC did=97c8ffff gx=7 gy=45 esi=1cdfd0c0 +BR ret=0 +BC did=97c9ffff gx=7 gy=46 esi=1cdfef38 +BR ret=0 +BC did=97caffff gx=7 gy=47 esi=1cdff2e0 +BR ret=0 +BC did=97cbffff gx=7 gy=48 esi=1cdfeb90 +BR ret=0 +BC did=97ccffff gx=7 gy=49 esi=1cdfd1f8 +BR ret=0 +BC did=97cdffff gx=7 gy=50 esi=1cdff418 +BR ret=0 +BC did=989bffff gx=8 gy=0 esi=1cdfd468 +BR ret=0 +BC did=989cffff gx=8 gy=1 esi=1cdfd6d8 +BR ret=0 +BC did=989dffff gx=8 gy=2 esi=1cdfee00 +BR ret=0 +BC did=989effff gx=8 gy=3 esi=1cdfd330 +BR ret=0 +BC did=989fffff gx=8 gy=4 esi=1cdfe7e8 +BR ret=0 +BC did=98a0ffff gx=8 gy=5 esi=1cdfd810 +BR ret=0 +BC did=98a1ffff gx=8 gy=6 esi=1cdfd948 +BR ret=0 +BC did=98a2ffff gx=8 gy=7 esi=1cdfdbb8 +BR ret=0 +BC did=98a3ffff gx=8 gy=8 esi=1cdfdcf0 +BR ret=0 +BC did=98a4ffff gx=8 gy=9 esi=1cdfe098 +BR ret=0 +BC did=98a5ffff gx=8 gy=10 esi=1cdfe1d0 +BR ret=0 +BC did=98a6ffff gx=8 gy=11 esi=1cdfea58 +BR ret=0 +BC did=98a7ffff gx=8 gy=12 esi=1cdfe308 +BR ret=0 +BC did=98a8ffff gx=8 gy=13 esi=1cdfe440 +BR ret=0 +BC did=98a9ffff gx=8 gy=14 esi=1cdfe578 +BR ret=0 +BC did=98aaffff gx=8 gy=15 esi=1cdfe6b0 +BR ret=0 +BC did=98abffff gx=8 gy=16 esi=1ce00048 +BR ret=0 +BC did=98acffff gx=8 gy=17 esi=1ce01c50 +BR ret=0 +BC did=98adffff gx=8 gy=18 esi=1ce002b8 +BR ret=0 +BC did=98aeffff gx=8 gy=19 esi=1ce00180 +BR ret=0 +BC did=98afffff gx=8 gy=20 esi=1ce01158 +BR ret=0 +BC did=98b0ffff gx=8 gy=21 esi=1cdffb68 +BR ret=0 +BC did=98b1ffff gx=8 gy=22 esi=1ce003f0 +BR ret=0 +BC did=98b2ffff gx=8 gy=23 esi=1ce00528 +BR ret=0 +BC did=98b3ffff gx=8 gy=24 esi=1cdfff10 +BR ret=0 +BC did=98b4ffff gx=8 gy=25 esi=1ce00db0 +BR ret=0 +BC did=98b5ffff gx=8 gy=26 esi=1ce00660 +BR ret=0 +BC did=98b6ffff gx=8 gy=27 esi=1ce00798 +BR ret=0 +BC did=98b7ffff gx=8 gy=28 esi=1ce013c8 +BR ret=0 +BC did=98b8ffff gx=8 gy=29 esi=1ce008d0 +BR ret=0 +BC did=98b9ffff gx=8 gy=30 esi=1ce00a08 +BR ret=0 +BC did=98baffff gx=8 gy=31 esi=1ce00b40 +BR ret=0 +BC did=98bbffff gx=8 gy=32 esi=1ce01638 +BR ret=0 +BC did=98bcffff gx=8 gy=33 esi=1ce00c78 +BR ret=0 +BC did=98bdffff gx=8 gy=34 esi=1ce00ee8 +BR ret=0 +BC did=98beffff gx=8 gy=35 esi=1cdffca0 +BR ret=0 +BC did=98bfffff gx=8 gy=36 esi=1ce01020 +BR ret=0 +BC did=98c0ffff gx=8 gy=37 esi=1ce01290 +BR ret=0 +BC did=98c1ffff gx=8 gy=38 esi=1ce01500 +BR ret=0 +BC did=98c2ffff gx=8 gy=39 esi=1ce01770 +BR ret=0 +BC did=98c3ffff gx=8 gy=40 esi=1ce018a8 +BR ret=0 +BC did=98c4ffff gx=8 gy=41 esi=1ce019e0 +BR ret=0 +BC did=98c5ffff gx=8 gy=42 esi=1ce01b18 +BR ret=0 +BC did=98c6ffff gx=8 gy=43 esi=1cdffdd8 +BR ret=0 +BC did=98c7ffff gx=8 gy=44 esi=1ce01d88 +BR ret=0 +BC did=98c8ffff gx=8 gy=45 esi=1cdff7c0 +BR ret=0 +BC did=98c9ffff gx=8 gy=46 esi=1cdff8f8 +BR ret=0 +BC did=98caffff gx=8 gy=47 esi=1cdffa30 +BR ret=0 +BC did=98cbffff gx=8 gy=48 esi=1ce02fd0 +BR ret=0 +BC did=98ccffff gx=8 gy=49 esi=1ce02610 +BR ret=0 +BC did=98cdffff gx=8 gy=50 esi=1ce03108 +BR ret=0 +BC did=999bffff gx=9 gy=0 esi=1ce02748 +BR ret=0 +BC did=999cffff gx=9 gy=1 esi=1ce03e70 +BR ret=0 +BC did=999dffff gx=9 gy=2 esi=1ce03990 +BR ret=0 +BC did=999effff gx=9 gy=3 esi=1ce03c00 +BR ret=0 +BC did=999fffff gx=9 gy=4 esi=1ce03ac8 +BR ret=0 +BC did=99a0ffff gx=9 gy=5 esi=1ce02d60 +BR ret=0 +BC did=99a1ffff gx=9 gy=6 esi=1ce02af0 +BR ret=0 +BC did=99a2ffff gx=9 gy=7 esi=1ce02880 +BR ret=0 +BC did=99a3ffff gx=9 gy=8 esi=1ce03d38 +BR ret=0 +BC did=99a4ffff gx=9 gy=9 esi=1ce02c28 +BR ret=0 +BC did=99a5ffff gx=9 gy=10 esi=1ce02268 +BR ret=0 +BC did=99a6ffff gx=9 gy=11 esi=1ce02e98 +BR ret=0 +BC did=99a7ffff gx=9 gy=12 esi=1ce03240 +BR ret=0 +BC did=99a8ffff gx=9 gy=13 esi=1ce04350 +BR ret=0 +BC did=99a9ffff gx=9 gy=14 esi=1ce03378 +BR ret=0 +BC did=99aaffff gx=9 gy=15 esi=1ce04488 +BR ret=0 +BC did=99abffff gx=9 gy=16 esi=1ce03720 +BR ret=0 +BC did=99acffff gx=9 gy=17 esi=1ce03fa8 +BR ret=0 +BC did=99adffff gx=9 gy=18 esi=1ce040e0 +BR ret=0 +BC did=99aeffff gx=9 gy=19 esi=1ce029b8 +BR ret=0 +BC did=99afffff gx=9 gy=20 esi=1ce035e8 +BR ret=0 +BC did=99b0ffff gx=9 gy=21 esi=1ce04218 +BR ret=0 +BC did=99b1ffff gx=9 gy=22 esi=1ce034b0 +BR ret=0 +BC did=99b2ffff gx=9 gy=23 esi=1ce03858 +BR ret=0 +BC did=99b3ffff gx=9 gy=24 esi=1ce01ec0 +BR ret=0 +BC did=99b4ffff gx=9 gy=25 esi=1ce01ff8 +BR ret=0 +BC did=99b5ffff gx=9 gy=26 esi=1ce023a0 +BR ret=0 +BC did=99b6ffff gx=9 gy=27 esi=1ce02130 +BR ret=0 +BC did=99b7ffff gx=9 gy=28 esi=1ce024d8 +BR ret=0 +BC did=99b8ffff gx=9 gy=29 esi=1ce04d10 +BR ret=0 +BC did=99b9ffff gx=9 gy=30 esi=1ce056d0 +BR ret=0 +BC did=99baffff gx=9 gy=31 esi=1ce05e20 +BR ret=0 +BC did=99bbffff gx=9 gy=32 esi=1ce066a8 +BR ret=0 +BC did=99bcffff gx=9 gy=33 esi=1ce05f58 +BR ret=0 +BC did=99bdffff gx=9 gy=34 esi=1ce06090 +BR ret=0 +BC did=99beffff gx=9 gy=35 esi=1ce061c8 +BR ret=0 +BC did=99bfffff gx=9 gy=36 esi=1ce05808 +BR ret=0 +BC did=99c0ffff gx=9 gy=37 esi=1ce051f0 +BR ret=0 +BC did=99c1ffff gx=9 gy=38 esi=1ce045c0 +BR ret=0 +BC did=99c2ffff gx=9 gy=39 esi=1ce06a50 +BR ret=0 +BC did=99c3ffff gx=9 gy=40 esi=1ce06918 +BR ret=0 +BC did=99c4ffff gx=9 gy=41 esi=1ce06570 +BR ret=0 +BC did=99c5ffff gx=9 gy=42 esi=1ce05328 +BR ret=0 +BC did=99c6ffff gx=9 gy=43 esi=1ce046f8 +BR ret=0 +BC did=99c7ffff gx=9 gy=44 esi=1ce067e0 +BR ret=0 +BC did=99c8ffff gx=9 gy=45 esi=1ce06b88 +BR ret=0 +BC did=99c9ffff gx=9 gy=46 esi=1ce05a78 +BR ret=0 +BC did=99caffff gx=9 gy=47 esi=1ce04830 +BR ret=0 +BC did=99cbffff gx=9 gy=48 esi=1ce05940 +BR ret=0 +BC did=99ccffff gx=9 gy=49 esi=1ce04968 +BR ret=0 +BC did=99cdffff gx=9 gy=50 esi=1ce04aa0 +BR ret=0 +BC did=9a9bffff gx=10 gy=0 esi=1ce04bd8 +BR ret=0 +BC did=9a9cffff gx=10 gy=1 esi=1ce06300 +BR ret=0 +BC did=9a9dffff gx=10 gy=2 esi=1ce04e48 +BR ret=0 +BC did=9a9effff gx=10 gy=3 esi=1ce04f80 +BR ret=0 +BC did=9a9fffff gx=10 gy=4 esi=1ce050b8 +BR ret=0 +BC did=9aa0ffff gx=10 gy=5 esi=1ce05460 +BR ret=0 +BC did=9aa1ffff gx=10 gy=6 esi=1ce05598 +BR ret=0 +BC did=9aa2ffff gx=10 gy=7 esi=1ce05bb0 +BR ret=0 +BC did=9aa3ffff gx=10 gy=8 esi=1ce05ce8 +BR ret=0 +BC did=9aa4ffff gx=10 gy=9 esi=1ce06438 +BR ret=0 +BC did=9aa5ffff gx=10 gy=10 esi=1ce07548 +BR ret=0 +BC did=9aa6ffff gx=10 gy=11 esi=1ce07068 +BR ret=0 +BC did=9aa7ffff gx=10 gy=12 esi=1ce08da8 +BR ret=0 +BC did=9aa8ffff gx=10 gy=13 esi=1ce08790 +BR ret=0 +BC did=9aa9ffff gx=10 gy=14 esi=1ce07680 +BR ret=0 +BC did=9aaaffff gx=10 gy=15 esi=1ce07b60 +BR ret=0 +BC did=9aabffff gx=10 gy=16 esi=1ce06f30 +BR ret=0 +BC did=9aacffff gx=10 gy=17 esi=1ce08a00 +BR ret=0 +BC did=9aadffff gx=10 gy=18 esi=1ce082b0 +BR ret=0 +BC did=9aaeffff gx=10 gy=19 esi=1ce083e8 +BR ret=0 +BC did=9aafffff gx=10 gy=20 esi=1ce07c98 +BR ret=0 +BC did=9ab0ffff gx=10 gy=21 esi=1ce071a0 +BR ret=0 +BC did=9ab1ffff gx=10 gy=22 esi=1ce08658 +BR ret=0 +BC did=9ab2ffff gx=10 gy=23 esi=1ce088c8 +BR ret=0 +BC did=9ab3ffff gx=10 gy=24 esi=1ce072d8 +BR ret=0 +BC did=9ab4ffff gx=10 gy=25 esi=1ce078f0 +BR ret=0 +BC did=9ab5ffff gx=10 gy=26 esi=1ce077b8 +BR ret=0 +BC did=9ab6ffff gx=10 gy=27 esi=1ce07410 +BR ret=0 +BC did=9ab7ffff gx=10 gy=28 esi=1ce08ee0 +BR ret=0 +BC did=9ab8ffff gx=10 gy=29 esi=1ce09018 +BR ret=0 +BC did=9ab9ffff gx=10 gy=30 esi=1ce07a28 +BR ret=0 +BC did=9abaffff gx=10 gy=31 esi=1ce07dd0 +BR ret=0 +BC did=9abbffff gx=10 gy=32 esi=1ce08520 +BR ret=0 +BC did=9abcffff gx=10 gy=33 esi=1ce09150 +BR ret=0 +BC did=9abdffff gx=10 gy=34 esi=1ce08b38 +BR ret=0 +BC did=9abeffff gx=10 gy=35 esi=1ce08c70 +BR ret=0 +BC did=9abfffff gx=10 gy=36 esi=1ce09288 +BR ret=0 +BC did=9ac0ffff gx=10 gy=37 esi=1ce06cc0 +BR ret=0 +BC did=9ac1ffff gx=10 gy=38 esi=1ce06df8 +BR ret=0 +BC did=9ac2ffff gx=10 gy=39 esi=1ce07f08 +BR ret=0 +BC did=9ac3ffff gx=10 gy=40 esi=1ce08040 +BR ret=0 +BC did=9ac4ffff gx=10 gy=41 esi=1ce08178 +BR ret=0 +BC did=9ac5ffff gx=10 gy=42 esi=1ce0b370 +BR ret=0 +BC did=9ac6ffff gx=10 gy=43 esi=1ce0a128 +BR ret=0 +BC did=9ac7ffff gx=10 gy=44 esi=1ce0ac20 +BR ret=0 +BC did=9ac8ffff gx=10 gy=45 esi=1ce0b850 +BR ret=0 +BC did=9ac9ffff gx=10 gy=46 esi=1ce0a740 +BR ret=0 +BC did=9acaffff gx=10 gy=47 esi=1ce0b4a8 +BR ret=0 +BC did=9acbffff gx=10 gy=48 esi=1ce093c0 +BR ret=0 +BC did=9accffff gx=10 gy=49 esi=1ce09768 +BR ret=0 +BC did=9acdffff gx=10 gy=50 esi=1ce094f8 +BR ret=0 +BC did=9b9bffff gx=11 gy=0 esi=1ce0aae8 +BR ret=0 +BC did=9b9cffff gx=11 gy=1 esi=1ce0a398 +BR ret=0 +BC did=9b9dffff gx=11 gy=2 esi=1ce0a260 +BR ret=0 +BC did=9b9effff gx=11 gy=3 esi=1ce0ad58 +BR ret=0 +BC did=9b9fffff gx=11 gy=4 esi=1ce0ae90 +BR ret=0 +BC did=9ba0ffff gx=11 gy=5 esi=1ce09ff0 +BR ret=0 +BC did=9ba1ffff gx=11 gy=6 esi=1ce09630 +BR ret=0 +BC did=9ba2ffff gx=11 gy=7 esi=1ce0a4d0 +BR ret=0 +BC did=9ba3ffff gx=11 gy=8 esi=1ce0b100 +BR ret=0 +BC did=9ba4ffff gx=11 gy=9 esi=1ce09d80 +BR ret=0 +BC did=9ba5ffff gx=11 gy=10 esi=1ce0a608 +BR ret=0 +BC did=9ba6ffff gx=11 gy=11 esi=1ce0b238 +BR ret=0 +BC did=9ba7ffff gx=11 gy=12 esi=1ce0a878 +BR ret=0 +BC did=9ba8ffff gx=11 gy=13 esi=1ce098a0 +BR ret=0 +BC did=9ba9ffff gx=11 gy=14 esi=1ce0a9b0 +BR ret=0 +BC did=9baaffff gx=11 gy=15 esi=1ce0b988 +BR ret=0 +BC did=9babffff gx=11 gy=16 esi=1ce099d8 +BR ret=0 +BC did=9bacffff gx=11 gy=17 esi=1ce0b5e0 +BR ret=0 +BC did=9badffff gx=11 gy=18 esi=1ce0b718 +BR ret=0 +BC did=9baeffff gx=11 gy=19 esi=1ce0afc8 +BR ret=0 +BC did=9bafffff gx=11 gy=20 esi=1ce09b10 +BR ret=0 +BC did=9bb0ffff gx=11 gy=21 esi=1ce09c48 +BR ret=0 +BC did=9bb1ffff gx=11 gy=22 esi=1ce09eb8 +BR ret=0 +BC did=9bb2ffff gx=11 gy=23 esi=1ce0be68 +BR ret=0 +BC did=9bb3ffff gx=11 gy=24 esi=1ce0d590 +BR ret=0 +BC did=9bb4ffff gx=11 gy=25 esi=1ce0cbd0 +BR ret=0 +BC did=9bb5ffff gx=11 gy=26 esi=1ce0c210 +BR ret=0 +BC did=9bb6ffff gx=11 gy=27 esi=1ce0cd08 +BR ret=0 +BC did=9bb7ffff gx=11 gy=28 esi=1ce0c348 +BR ret=0 +BC did=9bb8ffff gx=11 gy=29 esi=1ce0bfa0 +BR ret=0 +BC did=9bb9ffff gx=11 gy=30 esi=1ce0d458 +BR ret=0 +BC did=9bbaffff gx=11 gy=31 esi=1ce0d1e8 +BR ret=0 +BC did=9bbbffff gx=11 gy=32 esi=1ce0d938 +BR ret=0 +BC did=9bbcffff gx=11 gy=33 esi=1ce0c480 +BR ret=0 +BC did=9bbdffff gx=11 gy=34 esi=1ce0d0b0 +BR ret=0 +BC did=9bbeffff gx=11 gy=35 esi=1ce0d6c8 +BR ret=0 +BC did=9bbfffff gx=11 gy=36 esi=1ce0ca98 +BR ret=0 +BC did=9bc0ffff gx=11 gy=37 esi=1ce0c0d8 +BR ret=0 +BC did=9bc1ffff gx=11 gy=38 esi=1ce0d800 +BR ret=0 +BC did=9bc2ffff gx=11 gy=39 esi=1ce0da70 +BR ret=0 +BC did=9bc3ffff gx=11 gy=40 esi=1ce0c5b8 +BR ret=0 +BC did=9bc4ffff gx=11 gy=41 esi=1ce0cf78 +BR ret=0 +BC did=9bc5ffff gx=11 gy=42 esi=1ce0bac0 +BR ret=0 +BC did=9bc6ffff gx=11 gy=43 esi=1ce0dba8 +BR ret=0 +BC did=9bc7ffff gx=11 gy=44 esi=1ce0c6f0 +BR ret=0 +BC did=9bc8ffff gx=11 gy=45 esi=1ce0dce0 +BR ret=0 +BC did=9bc9ffff gx=11 gy=46 esi=1ce0d320 +BR ret=0 +BC did=9bcaffff gx=11 gy=47 esi=1ce0c828 +BR ret=0 +BC did=9bcbffff gx=11 gy=48 esi=1ce0c960 +BR ret=0 +BC did=9bccffff gx=11 gy=49 esi=1ce0ce40 +BR ret=0 +BC did=9bcdffff gx=11 gy=50 esi=1ce0de18 +BR ret=0 +BC did=9c9bffff gx=12 gy=0 esi=1ce0df50 +BR ret=0 +BC did=9c9cffff gx=12 gy=1 esi=1ce0e088 +BR ret=0 +BC did=9c9dffff gx=12 gy=2 esi=1ce0bbf8 +BR ret=0 +BC did=9c9effff gx=12 gy=3 esi=1ce0bd30 +BR ret=0 +BC did=9c9fffff gx=12 gy=4 esi=1ce0fb58 +BR ret=0 +BC did=9ca0ffff gx=12 gy=5 esi=1ce0e6a0 +BR ret=0 +BC did=9ca1ffff gx=12 gy=6 esi=1ce0f2d0 +BR ret=0 +BC did=9ca2ffff gx=12 gy=7 esi=1ce0e430 +BR ret=0 +BC did=9ca3ffff gx=12 gy=8 esi=1ce0ff00 +BR ret=0 +BC did=9ca4ffff gx=12 gy=9 esi=1ce0e568 +BR ret=0 +BC did=9ca5ffff gx=12 gy=10 esi=1ce10038 +BR ret=0 +BC did=9ca6ffff gx=12 gy=11 esi=1ce0e910 +BR ret=0 +BC did=9ca7ffff gx=12 gy=12 esi=1ce0f408 +BR ret=0 +BC did=9ca8ffff gx=12 gy=13 esi=1ce0e7d8 +BR ret=0 +BC did=9ca9ffff gx=12 gy=14 esi=1ce0fdc8 +BR ret=0 +BC did=9caaffff gx=12 gy=15 esi=1ce103e0 +BR ret=0 +BC did=9cabffff gx=12 gy=16 esi=1ce0ea48 +BR ret=0 +BC did=9cacffff gx=12 gy=17 esi=1ce0e2f8 +BR ret=0 +BC did=9cadffff gx=12 gy=18 esi=1ce0eb80 +BR ret=0 +BC did=9caeffff gx=12 gy=19 esi=1ce0ecb8 +BR ret=0 +BC did=9cafffff gx=12 gy=20 esi=1ce10170 +BR ret=0 +BC did=9cb0ffff gx=12 gy=21 esi=1ce0edf0 +BR ret=0 +BC did=9cb1ffff gx=12 gy=22 esi=1ce0f7b0 +BR ret=0 +BC did=9cb2ffff gx=12 gy=23 esi=1ce0f060 +BR ret=0 +BC did=9cb3ffff gx=12 gy=24 esi=1ce0ef28 +BR ret=0 +BC did=9cb4ffff gx=12 gy=25 esi=1ce0f198 +BR ret=0 +BC did=9cb5ffff gx=12 gy=26 esi=1ce10788 +BR ret=0 +BC did=9cb6ffff gx=12 gy=27 esi=1ce0f540 +BR ret=0 +BC did=9cb7ffff gx=12 gy=28 esi=1ce0f678 +BR ret=0 +BC did=9cb8ffff gx=12 gy=29 esi=1ce0f8e8 +BR ret=0 +BC did=9cb9ffff gx=12 gy=30 esi=1ce0fa20 +BR ret=0 +BC did=9cbaffff gx=12 gy=31 esi=1ce10650 +BR ret=0 +BC did=9cbbffff gx=12 gy=32 esi=1ce102a8 +BR ret=0 +BC did=9cbcffff gx=12 gy=33 esi=1ce10518 +BR ret=0 +BC did=9cbdffff gx=12 gy=34 esi=1ce0e1c0 +BR ret=0 +BC did=9cbeffff gx=12 gy=35 esi=1ce0fc90 +BR ret=0 +BC did=9cbfffff gx=12 gy=36 esi=1ce11148 +BR ret=0 +BC did=9cc0ffff gx=12 gy=37 esi=1ce12870 +BR ret=0 +BC did=9cc1ffff gx=12 gy=38 esi=1ce129a8 +BR ret=0 +BC did=9cc2ffff gx=12 gy=39 esi=1ce12ae0 +BR ret=0 +BC did=9cc3ffff gx=12 gy=40 esi=1ce11280 +BR ret=0 +BC did=9cc4ffff gx=12 gy=41 esi=1ce10b30 +BR ret=0 +BC did=9cc5ffff gx=12 gy=42 esi=1ce12390 +BR ret=0 +BC did=9cc6ffff gx=12 gy=43 esi=1ce11010 +BR ret=0 +BC did=9cc7ffff gx=12 gy=44 esi=1ce113b8 +BR ret=0 +BC did=9cc8ffff gx=12 gy=45 esi=1ce12600 +BR ret=0 +BC did=9cc9ffff gx=12 gy=46 esi=1ce114f0 +BR ret=0 +BC did=9ccaffff gx=12 gy=47 esi=1ce10da0 +BR ret=0 +BC did=9ccbffff gx=12 gy=48 esi=1ce11628 +BR ret=0 +BC did=9cccffff gx=12 gy=49 esi=1ce119d0 +BR ret=0 +BC did=9ccdffff gx=12 gy=50 esi=1ce11b08 +BR ret=1 +BC did=9d9bffff gx=13 gy=0 esi=1ce12738 +BR ret=0 +BC did=9d9cffff gx=13 gy=1 esi=1ce11c40 +BR ret=0 +BC did=9d9dffff gx=13 gy=2 esi=1ce10ed8 +BR ret=0 +BC did=9d9effff gx=13 gy=3 esi=1ce11d78 +BR ret=0 +BC did=9d9fffff gx=13 gy=4 esi=1ce11760 +BR ret=0 +BC did=9da0ffff gx=13 gy=5 esi=1ce11898 +BR ret=0 +BC did=9da1ffff gx=13 gy=6 esi=1ce11eb0 +BR ret=0 +BC did=9da2ffff gx=13 gy=7 esi=1ce11fe8 +BR ret=0 +BC did=9da3ffff gx=13 gy=8 esi=1ce12120 +BR ret=0 +BC did=9da4ffff gx=13 gy=9 esi=1ce12c18 +BR ret=0 +BC did=9da5ffff gx=13 gy=10 esi=1ce12258 +BR ret=0 +BC did=9da6ffff gx=13 gy=11 esi=1ce124c8 +BR ret=0 +BC did=9da7ffff gx=13 gy=12 esi=1ce12d50 +BR ret=0 +BC did=9da8ffff gx=13 gy=13 esi=1ce12e88 +BR ret=0 +BC did=9da9ffff gx=13 gy=14 esi=1ce108c0 +BR ret=0 +BC did=9daaffff gx=13 gy=15 esi=1ce109f8 +BR ret=0 +BC did=9dabffff gx=13 gy=16 esi=1ce10c68 +BR ret=0 +BC did=9dacffff gx=13 gy=17 esi=1ce14f70 +BR ret=0 +BC did=9dadffff gx=13 gy=18 esi=1ce13bf0 +BR ret=0 +BC did=9daeffff gx=13 gy=19 esi=1ce151e0 +BR ret=0 +BC did=9dafffff gx=13 gy=20 esi=1ce150a8 +BR ret=0 +BC did=9db0ffff gx=13 gy=21 esi=1ce15318 +BR ret=0 +BC did=9db1ffff gx=13 gy=22 esi=1ce15450 +BR ret=0 +BC did=9db2ffff gx=13 gy=23 esi=1ce14478 +BR ret=0 +BC did=9db3ffff gx=13 gy=24 esi=1ce15588 +BR ret=0 +BC did=9db4ffff gx=13 gy=25 esi=1ce14340 +BR ret=0 +BC did=9db5ffff gx=13 gy=26 esi=1ce12fc0 +BR ret=0 +BC did=9db6ffff gx=13 gy=27 esi=1ce130f8 +BR ret=0 +BC did=9db7ffff gx=13 gy=28 esi=1ce13368 +BR ret=0 +BC did=9db8ffff gx=13 gy=29 esi=1ce13230 +BR ret=0 +BC did=9db9ffff gx=13 gy=30 esi=1ce146e8 +BR ret=0 +BC did=9dbaffff gx=13 gy=31 esi=1ce13710 +BR ret=0 +BC did=9dbbffff gx=13 gy=32 esi=1ce13d28 +BR ret=0 +BC did=9dbcffff gx=13 gy=33 esi=1ce13ab8 +BR ret=0 +BC did=9dbdffff gx=13 gy=34 esi=1ce13848 +BR ret=0 +BC did=9dbeffff gx=13 gy=35 esi=1ce14958 +BR ret=0 +BC did=9dbfffff gx=13 gy=36 esi=1ce145b0 +BR ret=0 +BC did=9dc0ffff gx=13 gy=37 esi=1ce13980 +BR ret=0 +BC did=9dc1ffff gx=13 gy=38 esi=1ce13e60 +BR ret=0 +BC did=9dc2ffff gx=13 gy=39 esi=1ce14820 +BR ret=0 +BC did=9dc3ffff gx=13 gy=40 esi=1ce134a0 +BR ret=0 +BC did=9dc4ffff gx=13 gy=41 esi=1ce13f98 +BR ret=0 +BC did=9dc5ffff gx=13 gy=42 esi=1ce140d0 +BR ret=0 +BC did=9dc6ffff gx=13 gy=43 esi=1ce14208 +BR ret=0 +BC did=9dc7ffff gx=13 gy=44 esi=1ce135d8 +BR ret=0 +BC did=9dc8ffff gx=13 gy=45 esi=1ce14a90 +BR ret=0 +BC did=9dc9ffff gx=13 gy=46 esi=1ce14bc8 +BR ret=0 +BC did=9dcaffff gx=13 gy=47 esi=1ce14d00 +BR ret=0 +BC did=9dcbffff gx=13 gy=48 esi=1ce14e38 +BR ret=1 +BC did=9dccffff gx=13 gy=49 esi=1ce16560 +BR ret=1 +BC did=9dcdffff gx=13 gy=50 esi=1ce17b50 +BR ret=1 +BC did=9e9bffff gx=14 gy=0 esi=1ce16f20 +BR ret=0 +BC did=9e9cffff gx=14 gy=1 esi=1ce16698 +BR ret=0 +BC did=9e9dffff gx=14 gy=2 esi=1ce17a18 +BR ret=0 +BC did=9e9effff gx=14 gy=3 esi=1ce161b8 +BR ret=0 +BC did=9e9fffff gx=14 gy=4 esi=1ce16a40 +BR ret=0 +BC did=9ea0ffff gx=14 gy=5 esi=1ce162f0 +BR ret=0 +BC did=9ea1ffff gx=14 gy=6 esi=1ce17c88 +BR ret=0 +BC did=9ea2ffff gx=14 gy=7 esi=1ce167d0 +BR ret=0 +BC did=9ea3ffff gx=14 gy=8 esi=1ce16cb0 +BR ret=0 +BC did=9ea4ffff gx=14 gy=9 esi=1ce16428 +BR ret=0 +BC did=9ea5ffff gx=14 gy=10 esi=1ce17190 +BR ret=0 +BC did=9ea6ffff gx=14 gy=11 esi=1ce16908 +BR ret=0 +BC did=9ea7ffff gx=14 gy=12 esi=1ce15f48 +BR ret=0 +BC did=9ea8ffff gx=14 gy=13 esi=1ce15a68 +BR ret=0 +BC did=9ea9ffff gx=14 gy=14 esi=1ce177a8 +BR ret=0 +BC did=9eaaffff gx=14 gy=15 esi=1ce16b78 +BR ret=0 +BC did=9eabffff gx=14 gy=16 esi=1ce15e10 +BR ret=0 +BC did=9eacffff gx=14 gy=17 esi=1ce16de8 +BR ret=0 +BC did=9eadffff gx=14 gy=18 esi=1ce17058 +BR ret=0 +BC did=9eaeffff gx=14 gy=19 esi=1ce178e0 +BR ret=0 +BC did=9eafffff gx=14 gy=20 esi=1ce172c8 +BR ret=0 +BC did=9eb0ffff gx=14 gy=21 esi=1ce17400 +BR ret=0 +BC did=9eb1ffff gx=14 gy=22 esi=1ce17538 +BR ret=0 +BC did=9eb2ffff gx=14 gy=23 esi=1ce156c0 +BR ret=0 +BC did=9eb3ffff gx=14 gy=24 esi=1ce157f8 +BR ret=0 +BC did=9eb4ffff gx=14 gy=25 esi=1ce15930 +BR ret=0 +BC did=9eb5ffff gx=14 gy=26 esi=1ce17670 +BR ret=0 +BC did=9eb6ffff gx=14 gy=27 esi=1ce15ba0 +BR ret=0 +BC did=9eb7ffff gx=14 gy=28 esi=1ce16080 +BR ret=0 +BC did=9eb8ffff gx=14 gy=29 esi=1ce15cd8 +BR ret=0 +BC did=9eb9ffff gx=14 gy=30 esi=1ce19890 +BR ret=0 +BC did=9ebaffff gx=14 gy=31 esi=1ce1a388 +BR ret=0 +BC did=9ebbffff gx=14 gy=32 esi=1ce19620 +BR ret=0 +BC did=9ebcffff gx=14 gy=33 esi=1ce19758 +BR ret=0 +BC did=9ebdffff gx=14 gy=34 esi=1ce18c60 +BR ret=0 +BC did=9ebeffff gx=14 gy=35 esi=1ce18ed0 +BR ret=0 +BC did=9ebfffff gx=14 gy=36 esi=1ce189f0 +BR ret=0 +BC did=9ec0ffff gx=14 gy=37 esi=1ce19d70 +BR ret=0 +BC did=9ec1ffff gx=14 gy=38 esi=1ce18d98 +BR ret=0 +BC did=9ec2ffff gx=14 gy=39 esi=1ce1a250 +BR ret=0 +BC did=9ec3ffff gx=14 gy=40 esi=1ce19140 +BR ret=0 +BC did=9ec4ffff gx=14 gy=41 esi=1ce17dc0 +BR ret=0 +BC did=9ec5ffff gx=14 gy=42 esi=1ce19008 +BR ret=0 +BC did=9ec6ffff gx=14 gy=43 esi=1ce17ef8 +BR ret=0 +BC did=9ec7ffff gx=14 gy=44 esi=1ce19ea8 +BR ret=0 +BC did=9ec8ffff gx=14 gy=45 esi=1ce199c8 +BR ret=0 +BC did=9ec9ffff gx=14 gy=46 esi=1ce18648 +BR ret=1 +BC did=9ecaffff gx=14 gy=47 esi=1ce19278 +BR ret=1 +BC did=9ecbffff gx=14 gy=48 esi=1ce19c38 +BR ret=1 +BC did=9eccffff gx=14 gy=49 esi=1ce18510 +BR ret=1 +BC did=9ecdffff gx=14 gy=50 esi=1ce193b0 +BR ret=1 +BC did=9f9bffff gx=15 gy=0 esi=1ce19b00 +BR ret=0 +BC did=9f9cffff gx=15 gy=1 esi=1ce18030 +BR ret=0 +BC did=9f9dffff gx=15 gy=2 esi=1ce18168 +BR ret=0 +BC did=9f9effff gx=15 gy=3 esi=1ce18b28 +BR ret=0 +BC did=9f9fffff gx=15 gy=4 esi=1ce19fe0 +BR ret=0 +BC did=9fa0ffff gx=15 gy=5 esi=1ce194e8 +BR ret=0 +BC did=9fa1ffff gx=15 gy=6 esi=1ce18780 +BR ret=0 +BC did=9fa2ffff gx=15 gy=7 esi=1ce182a0 +BR ret=0 +BC did=9fa3ffff gx=15 gy=8 esi=1ce183d8 +BR ret=0 +BC did=9fa4ffff gx=15 gy=9 esi=1ce1a118 +BR ret=0 +BC did=9fa5ffff gx=15 gy=10 esi=1ce188b8 +BR ret=0 +BC did=9fa6ffff gx=15 gy=11 esi=1ce1b708 +BR ret=0 +BC did=9fa7ffff gx=15 gy=12 esi=1ce1c950 +BR ret=0 +BC did=9fa8ffff gx=15 gy=13 esi=1ce1c338 +BR ret=0 +BC did=9fa9ffff gx=15 gy=14 esi=1ce1ac10 +BR ret=0 +BC did=9faaffff gx=15 gy=15 esi=1ce1c0c8 +BR ret=0 +BC did=9fabffff gx=15 gy=16 esi=1ce1b360 +BR ret=0 +BC did=9facffff gx=15 gy=17 esi=1ce1c470 +BR ret=0 +BC did=9fadffff gx=15 gy=18 esi=1ce1ae80 +BR ret=0 +BC did=9faeffff gx=15 gy=19 esi=1ce1ca88 +BR ret=0 +BC did=9fafffff gx=15 gy=20 esi=1ce1c200 +BR ret=0 +BC did=9fb0ffff gx=15 gy=21 esi=1ce1b840 +BR ret=0 +BC did=9fb1ffff gx=15 gy=22 esi=1ce1c5a8 +BR ret=0 +BC did=9fb2ffff gx=15 gy=23 esi=1ce1b978 +BR ret=0 +BC did=9fb3ffff gx=15 gy=24 esi=1ce1b228 +BR ret=0 +BC did=9fb4ffff gx=15 gy=25 esi=1ce1bab0 +BR ret=0 +BC did=9fb5ffff gx=15 gy=26 esi=1ce1ad48 +BR ret=0 +BC did=9fb6ffff gx=15 gy=27 esi=1ce1afb8 +BR ret=0 +BC did=9fb7ffff gx=15 gy=28 esi=1ce1a9a0 +BR ret=0 +BC did=9fb8ffff gx=15 gy=29 esi=1ce1b0f0 +BR ret=0 +BC did=9fb9ffff gx=15 gy=30 esi=1ce1bbe8 +BR ret=0 +BC did=9fbaffff gx=15 gy=31 esi=1ce1b498 +BR ret=0 +BC did=9fbbffff gx=15 gy=32 esi=1ce1a4c0 +BR ret=0 +BC did=9fbcffff gx=15 gy=33 esi=1ce1b5d0 +BR ret=0 +BC did=9fbdffff gx=15 gy=34 esi=1ce1bd20 +BR ret=0 +BC did=9fbeffff gx=15 gy=35 esi=1ce1a5f8 +BR ret=0 +BC did=9fbfffff gx=15 gy=36 esi=1ce1a730 +BR ret=0 +BC did=9fc0ffff gx=15 gy=37 esi=1ce1be58 +BR ret=0 +BC did=9fc1ffff gx=15 gy=38 esi=1ce1aad8 +BR ret=0 +BC did=9fc2ffff gx=15 gy=39 esi=1ce1bf90 +BR ret=0 +BC did=9fc3ffff gx=15 gy=40 esi=1ce1c6e0 +BR ret=0 +BC did=9fc4ffff gx=15 gy=41 esi=1ce1c818 +BR ret=0 +BC did=9fc5ffff gx=15 gy=42 esi=1ce1a868 +BR ret=0 +BC did=9fc6ffff gx=15 gy=43 esi=1ce1da60 +BR ret=0 +BC did=9fc7ffff gx=15 gy=44 esi=1ce1d1d8 +BR ret=1 +BC did=9fc8ffff gx=15 gy=45 esi=1ce1d0a0 +BR ret=1 +BC did=9fc9ffff gx=15 gy=46 esi=1ce1d7f0 +BR ret=1 +BC did=9fcaffff gx=15 gy=47 esi=1ce1db98 +BR ret=1 +BC did=9fcbffff gx=15 gy=48 esi=1ce1dcd0 +BR ret=1 +BC did=9fccffff gx=15 gy=49 esi=1ce1df40 +BR ret=1 +BC did=9fcdffff gx=15 gy=50 esi=1ce1d928 +BR ret=1 +BC did=a09bffff gx=16 gy=0 esi=1ce1ce30 +BR ret=0 +BC did=a09cffff gx=16 gy=1 esi=1ce1e7c8 +BR ret=0 +BC did=a09dffff gx=16 gy=2 esi=1ce1de08 +BR ret=0 +BC did=a09effff gx=16 gy=3 esi=1ce1d310 +BR ret=0 +BC did=a09fffff gx=16 gy=4 esi=1ce1e078 +BR ret=0 +BC did=a0a0ffff gx=16 gy=5 esi=1ce1d448 +BR ret=0 +BC did=a0a1ffff gx=16 gy=6 esi=1ce1e1b0 +BR ret=0 +BC did=a0a2ffff gx=16 gy=7 esi=1ce1e558 +BR ret=0 +BC did=a0a3ffff gx=16 gy=8 esi=1ce1e2e8 +BR ret=0 +BC did=a0a4ffff gx=16 gy=9 esi=1ce1ea38 +BR ret=0 +BC did=a0a5ffff gx=16 gy=10 esi=1ce1e420 +BR ret=0 +BC did=a0a6ffff gx=16 gy=11 esi=1ce1e690 +BR ret=0 +BC did=a0a7ffff gx=16 gy=12 esi=1ce1cf68 +BR ret=0 +BC did=a0a8ffff gx=16 gy=13 esi=1ce1e900 +BR ret=0 +BC did=a0a9ffff gx=16 gy=14 esi=1ce1eb70 +BR ret=0 +BC did=a0aaffff gx=16 gy=15 esi=1ce1ede0 +BR ret=0 +BC did=a0abffff gx=16 gy=16 esi=1ce1eca8 +BR ret=0 +BC did=a0acffff gx=16 gy=17 esi=1ce1f188 +BR ret=0 +BC did=a0adffff gx=16 gy=18 esi=1ce1ef18 +BR ret=0 +BC did=a0aeffff gx=16 gy=19 esi=1ce1f050 +BR ret=0 +BC did=a0afffff gx=16 gy=20 esi=1ce1cbc0 +BR ret=0 +BC did=a0b0ffff gx=16 gy=21 esi=1ce1ccf8 +BR ret=0 +BC did=a0b1ffff gx=16 gy=22 esi=1ce1d6b8 +BR ret=0 +BC did=a0b2ffff gx=16 gy=23 esi=1ce1d580 +BR ret=0 +BC did=a0b3ffff gx=16 gy=24 esi=1ce20c58 +BR ret=0 +BC did=a0b4ffff gx=16 gy=25 esi=1ce20ec8 +BR ret=0 +BC did=a0b5ffff gx=16 gy=26 esi=1ce1f7a0 +BR ret=0 +BC did=a0b6ffff gx=16 gy=27 esi=1ce20160 +BR ret=0 +BC did=a0b7ffff gx=16 gy=28 esi=1ce21750 +BR ret=0 +BC did=a0b8ffff gx=16 gy=29 esi=1ce1fdb8 +BR ret=0 +BC did=a0b9ffff gx=16 gy=30 esi=1ce1f668 +BR ret=0 +BC did=a0baffff gx=16 gy=31 esi=1ce1f8d8 +BR ret=0 +BC did=a0bbffff gx=16 gy=32 esi=1ce21888 +BR ret=0 +BC did=a0bcffff gx=16 gy=33 esi=1ce209e8 +BR ret=0 +BC did=a0bdffff gx=16 gy=34 esi=1ce1fef0 +BR ret=0 +BC did=a0beffff gx=16 gy=35 esi=1ce1fa10 +BR ret=0 +BC did=a0bfffff gx=16 gy=36 esi=1ce20508 +BR ret=0 +BC did=a0c0ffff gx=16 gy=37 esi=1ce20640 +BR ret=0 +BC did=a0c1ffff gx=16 gy=38 esi=1ce20d90 +BR ret=0 +BC did=a0c2ffff gx=16 gy=39 esi=1ce203d0 +BR ret=0 +BC did=a0c3ffff gx=16 gy=40 esi=1ce1fb48 +BR ret=0 +BC did=a0c4ffff gx=16 gy=41 esi=1ce20778 +BR ret=0 +BC did=a0c5ffff gx=16 gy=42 esi=1ce1fc80 +BR ret=1 +BC did=a0c6ffff gx=16 gy=43 esi=1ce208b0 +BR ret=1 +BC did=a0c7ffff gx=16 gy=44 esi=1ce21000 +BR ret=1 +BC did=a0c8ffff gx=16 gy=45 esi=1ce20b20 +BR ret=1 +BC did=a0c9ffff gx=16 gy=46 esi=1ce21138 +BR ret=1 +BC did=a0caffff gx=16 gy=47 esi=1ce20028 +BR ret=1 +BC did=a0cbffff gx=16 gy=48 esi=1ce21270 +BR ret=1 +BC did=a0ccffff gx=16 gy=49 esi=1ce213a8 +BR ret=1 +BC did=a0cdffff gx=16 gy=50 esi=1ce20298 +BR ret=1 +BC did=a19bffff gx=17 gy=0 esi=1ce214e0 +BR ret=0 +BC did=a19cffff gx=17 gy=1 esi=1ce21618 +BR ret=0 +BC did=a19dffff gx=17 gy=2 esi=1ce1f2c0 +BR ret=0 +BC did=a19effff gx=17 gy=3 esi=1ce1f3f8 +BR ret=0 +BC did=a19fffff gx=17 gy=4 esi=1ce1f530 +BR ret=0 +BC did=a1a0ffff gx=17 gy=5 esi=1ce22ad0 +BR ret=0 +BC did=a1a1ffff gx=17 gy=6 esi=1ce21ea0 +BR ret=0 +BC did=a1a2ffff gx=17 gy=7 esi=1ce22e78 +BR ret=0 +BC did=a1a3ffff gx=17 gy=8 esi=1ce22998 +BR ret=0 +BC did=a1a4ffff gx=17 gy=9 esi=1ce22110 +BR ret=0 +BC did=a1a5ffff gx=17 gy=10 esi=1ce21fd8 +BR ret=0 +BC did=a1a6ffff gx=17 gy=11 esi=1ce22c08 +BR ret=0 +BC did=a1a7ffff gx=17 gy=12 esi=1ce22248 +BR ret=0 +BC did=a1a8ffff gx=17 gy=13 esi=1ce224b8 +BR ret=0 +BC did=a1a9ffff gx=17 gy=14 esi=1ce21af8 +BR ret=0 +BC did=a1aaffff gx=17 gy=15 esi=1ce22380 +BR ret=0 +BC did=a1abffff gx=17 gy=16 esi=1ce22d40 +BR ret=0 +BC did=a1acffff gx=17 gy=17 esi=1ce21d68 +BR ret=0 +BC did=a1adffff gx=17 gy=18 esi=1ce219c0 +BR ret=0 +BC did=a1aeffff gx=17 gy=19 esi=1ce225f0 +BR ret=0 +BC did=a1afffff gx=17 gy=20 esi=1ce21c30 +BR ret=0 +BC did=a1b0ffff gx=17 gy=21 esi=1ce22728 +BR ret=0 +BC did=a1b1ffff gx=17 gy=22 esi=1ce22860 +BR ret=0 +BC did=a1b2ffff gx=17 gy=23 esi=1cde4100 +BR ret=0 +BC did=a1b3ffff gx=17 gy=24 esi=1cde39b0 +BR ret=0 +BC did=a1b4ffff gx=17 gy=25 esi=1cde34d0 +BR ret=0 +BC did=a1b5ffff gx=17 gy=26 esi=1cde3128 +BR ret=0 +BC did=a1b6ffff gx=17 gy=27 esi=1cde45e0 +BR ret=0 +BC did=a1b7ffff gx=17 gy=28 esi=1cde3740 +BR ret=0 +BC did=a1b8ffff gx=17 gy=29 esi=1cde2eb8 +BR ret=0 +BC did=a1b9ffff gx=17 gy=30 esi=1cde4850 +BR ret=0 +BC did=a1baffff gx=17 gy=31 esi=1cde3608 +BR ret=0 +BC did=a1bbffff gx=17 gy=32 esi=1cde2c48 +BR ret=0 +BC did=a1bcffff gx=17 gy=33 esi=1cde4988 +BR ret=0 +BC did=a1bdffff gx=17 gy=34 esi=1cde2630 +BR ret=0 +BC did=a1beffff gx=17 gy=35 esi=1cde3260 +BR ret=0 +BC did=a1bfffff gx=17 gy=36 esi=1cde4718 +BR ret=0 +BC did=a1c0ffff gx=17 gy=37 esi=1cde3c20 +BR ret=0 +BC did=a1c1ffff gx=17 gy=38 esi=1cde28a0 +BR ret=0 +BC did=a1c2ffff gx=17 gy=39 esi=1cde3878 +BR ret=0 +BC did=a1c3ffff gx=17 gy=40 esi=1cde2ff0 +BR ret=1 +BC did=a1c4ffff gx=17 gy=41 esi=1cde4370 +BR ret=1 +BC did=a1c5ffff gx=17 gy=42 esi=1cde3ae8 +BR ret=1 +BC did=a1c6ffff gx=17 gy=43 esi=1cde3d58 +BR ret=1 +BC did=a1c7ffff gx=17 gy=44 esi=1cde3e90 +BR ret=2 +BC did=a1c8ffff gx=17 gy=45 esi=1cde3398 +BR ret=2 +BC did=a1c9ffff gx=17 gy=46 esi=1cde23c0 +BR ret=1 +BC did=a1caffff gx=17 gy=47 esi=1cde3fc8 +BR ret=1 +BC did=a1cbffff gx=17 gy=48 esi=1cde24f8 +BR ret=1 +BC did=a1ccffff gx=17 gy=49 esi=1cde4238 +BR ret=1 +BC did=a1cdffff gx=17 gy=50 esi=1cde44a8 +BR ret=1 +BC did=a29bffff gx=18 gy=0 esi=1cde2768 +BR ret=0 +BC did=a29cffff gx=18 gy=1 esi=1cde2d80 +BR ret=0 +BC did=a29dffff gx=18 gy=2 esi=1cde29d8 +BR ret=0 +BC did=a29effff gx=18 gy=3 esi=1cde2b10 +BR ret=0 +BC did=a29fffff gx=18 gy=4 esi=1cde6800 +BR ret=0 +BC did=a2a0ffff gx=18 gy=5 esi=1cde66c8 +BR ret=0 +BC did=a2a1ffff gx=18 gy=6 esi=1cde56f0 +BR ret=0 +BC did=a2a2ffff gx=18 gy=7 esi=1cde5d08 +BR ret=0 +BC did=a2a3ffff gx=18 gy=8 esi=1cde5e40 +BR ret=0 +BC did=a2a4ffff gx=18 gy=9 esi=1cde5bd0 +BR ret=0 +BC did=a2a5ffff gx=18 gy=10 esi=1cde6ce0 +BR ret=0 +BC did=a2a6ffff gx=18 gy=11 esi=1cde5960 +BR ret=0 +BC did=a2a7ffff gx=18 gy=12 esi=1cde4ac0 +BR ret=0 +BC did=a2a8ffff gx=18 gy=13 esi=1cde5210 +BR ret=0 +BC did=a2a9ffff gx=18 gy=14 esi=1cde5828 +BR ret=0 +BC did=a2aaffff gx=18 gy=15 esi=1cde55b8 +BR ret=0 +BC did=a2abffff gx=18 gy=16 esi=1cde5f78 +BR ret=0 +BC did=a2acffff gx=18 gy=17 esi=1cde6938 +BR ret=0 +BC did=a2adffff gx=18 gy=18 esi=1cde5a98 +BR ret=0 +BC did=a2aeffff gx=18 gy=19 esi=1cde60b0 +BR ret=0 +BC did=a2afffff gx=18 gy=20 esi=1cde4d30 +BR ret=0 +BC did=a2b0ffff gx=18 gy=21 esi=1cde61e8 +BR ret=0 +BC did=a2b1ffff gx=18 gy=22 esi=1cde4bf8 +BR ret=0 +BC did=a2b2ffff gx=18 gy=23 esi=1cde4e68 +BR ret=0 +BC did=a2b3ffff gx=18 gy=24 esi=1cde5348 +BR ret=0 +BC did=a2b4ffff gx=18 gy=25 esi=1cde6320 +BR ret=0 +BC did=a2b5ffff gx=18 gy=26 esi=1cde6458 +BR ret=0 +BC did=a2b6ffff gx=18 gy=27 esi=1cde4fa0 +BR ret=0 +BC did=a2b7ffff gx=18 gy=28 esi=1cde6590 +BR ret=0 +BC did=a2b8ffff gx=18 gy=29 esi=1cde50d8 +BR ret=0 +BC did=a2b9ffff gx=18 gy=30 esi=1cde5480 +BR ret=0 +BC did=a2baffff gx=18 gy=31 esi=1cde6a70 +BR ret=0 +BC did=a2bbffff gx=18 gy=32 esi=1cde6ba8 +BR ret=0 +BC did=a2bcffff gx=18 gy=33 esi=1cde6e18 +BR ret=0 +BC did=a2bdffff gx=18 gy=34 esi=1cde6f50 +BR ret=0 +BC did=a2beffff gx=18 gy=35 esi=1cde7088 +BR ret=0 +BC did=a2bfffff gx=18 gy=36 esi=1cde7f28 +BR ret=0 +BC did=a2c0ffff gx=18 gy=37 esi=1cde7430 +BR ret=0 +BC did=a2c1ffff gx=18 gy=38 esi=1cde7df0 +BR ret=1 +BC did=a2c2ffff gx=18 gy=39 esi=1cde8f00 +BR ret=1 +BC did=a2c3ffff gx=18 gy=40 esi=1cde9170 +BR ret=1 +BC did=a2c4ffff gx=18 gy=41 esi=1cde9038 +BR ret=1 +BC did=a2c5ffff gx=18 gy=42 esi=1cde8a20 +BR ret=1 +BC did=a2c6ffff gx=18 gy=43 esi=1cde9650 +BR ret=1 +BC did=a2c7ffff gx=18 gy=44 esi=1cde7b80 +BR ret=2 +BC did=a2c8ffff gx=18 gy=45 esi=1cde92a8 +BR ret=1 +BC did=a2c9ffff gx=18 gy=46 esi=1cde7a48 +BR ret=1 +BC did=a2caffff gx=18 gy=47 esi=1cde76a0 +BR ret=1 +BC did=a2cbffff gx=18 gy=48 esi=1cde93e0 +BR ret=2 +BC did=a2ccffff gx=18 gy=49 esi=1cde77d8 +BR ret=1 +BC did=a2cdffff gx=18 gy=50 esi=1cde72f8 +BR ret=1 +BC did=a39bffff gx=19 gy=0 esi=1cde87b0 +BR ret=0 +BC did=a39cffff gx=19 gy=1 esi=1cde9518 +BR ret=0 +BC did=a39dffff gx=19 gy=2 esi=1cde82d0 +BR ret=0 +BC did=a39effff gx=19 gy=3 esi=1cde8198 +BR ret=0 +BC did=a39fffff gx=19 gy=4 esi=1cde9788 +BR ret=0 +BC did=a3a0ffff gx=19 gy=5 esi=1cde88e8 +BR ret=0 +BC did=a3a1ffff gx=19 gy=6 esi=1cde71c0 +BR ret=0 +BC did=a3a2ffff gx=19 gy=7 esi=1cde8060 +BR ret=0 +BC did=a3a3ffff gx=19 gy=8 esi=1cde7cb8 +BR ret=0 +BC did=a3a4ffff gx=19 gy=9 esi=1cde8dc8 +BR ret=0 +BC did=a3a5ffff gx=19 gy=10 esi=1cde7568 +BR ret=0 +BC did=a3a6ffff gx=19 gy=11 esi=1cde7910 +BR ret=0 +BC did=a3a7ffff gx=19 gy=12 esi=1cde8408 +BR ret=0 +BC did=a3a8ffff gx=19 gy=13 esi=1cde8540 +BR ret=0 +BC did=a3a9ffff gx=19 gy=14 esi=1cde8678 +BR ret=0 +BC did=a3aaffff gx=19 gy=15 esi=1cde8b58 +BR ret=0 +BC did=a3abffff gx=19 gy=16 esi=1cde8c90 +BR ret=0 +BC did=a3acffff gx=19 gy=17 esi=1cdeb390 +BR ret=0 +BC did=a3adffff gx=19 gy=18 esi=1cdeb738 +BR ret=0 +BC did=a3aeffff gx=19 gy=19 esi=1cdeb600 +BR ret=0 +BC did=a3afffff gx=19 gy=20 esi=1cdeafe8 +BR ret=0 +BC did=a3b0ffff gx=19 gy=21 esi=1cde9c68 +BR ret=0 +BC did=a3b1ffff gx=19 gy=22 esi=1cdeaeb0 +BR ret=0 +BC did=a3b2ffff gx=19 gy=23 esi=1cdea628 +BR ret=0 +BC did=a3b3ffff gx=19 gy=24 esi=1cdeb4c8 +BR ret=0 +BC did=a3b4ffff gx=19 gy=25 esi=1cdebc18 +BR ret=0 +BC did=a3b5ffff gx=19 gy=26 esi=1cde9ed8 +BR ret=0 +BC did=a3b6ffff gx=19 gy=27 esi=1cde9da0 +BR ret=0 +BC did=a3b7ffff gx=19 gy=28 esi=1cdea4f0 +BR ret=0 +BC did=a3b8ffff gx=19 gy=29 esi=1cdea760 +BR ret=0 +BC did=a3b9ffff gx=19 gy=30 esi=1cdea898 +BR ret=0 +BC did=a3baffff gx=19 gy=31 esi=1cdeac40 +BR ret=0 +BC did=a3bbffff gx=19 gy=32 esi=1cdea9d0 +BR ret=0 +BC did=a3bcffff gx=19 gy=33 esi=1cdebae0 +BR ret=0 +BC did=a3bdffff gx=19 gy=34 esi=1cdebe88 +BR ret=0 +BC did=a3beffff gx=19 gy=35 esi=1cdead78 +BR ret=0 +BC did=a3bfffff gx=19 gy=36 esi=1cdeab08 +BR ret=1 +BC did=a3c0ffff gx=19 gy=37 esi=1cde99f8 +BR ret=1 +BC did=a3c1ffff gx=19 gy=38 esi=1cdeb120 +BR ret=1 +BC did=a3c2ffff gx=19 gy=39 esi=1cdea010 +BR ret=1 +BC did=a3c3ffff gx=19 gy=40 esi=1cdea148 +BR ret=1 +BC did=a3c4ffff gx=19 gy=41 esi=1cde98c0 +BR ret=1 +BC did=a3c5ffff gx=19 gy=42 esi=1cdeb258 +BR ret=1 +BC did=a3c6ffff gx=19 gy=43 esi=1cdea280 +BR ret=1 +BC did=a3c7ffff gx=19 gy=44 esi=1cdeb870 +BR ret=1 +BC did=a3c8ffff gx=19 gy=45 esi=1cdea3b8 +BR ret=2 +BC did=a3c9ffff gx=19 gy=46 esi=1cdeb9a8 +BR ret=1 +BC did=a3caffff gx=19 gy=47 esi=1cdebd50 +BR ret=1 +BC did=a3cbffff gx=19 gy=48 esi=1cde9b30 +BR ret=1 +BC did=a3ccffff gx=19 gy=49 esi=1cded5b0 +BR ret=1 +BC did=a3cdffff gx=19 gy=50 esi=1cdecd28 +BR ret=1 +BC did=a49bffff gx=20 gy=0 esi=1cdec710 +BR ret=0 +BC did=a49cffff gx=20 gy=1 esi=1cdecab8 +BR ret=0 +BC did=a49dffff gx=20 gy=2 esi=1cdedf70 +BR ret=0 +BC did=a49effff gx=20 gy=3 esi=1cdec230 +BR ret=0 +BC did=a49fffff gx=20 gy=4 esi=1cdec848 +BR ret=0 +BC did=a4a0ffff gx=20 gy=5 esi=1cdee0a8 +BR ret=0 +BC did=a4a1ffff gx=20 gy=6 esi=1cdee1e0 +BR ret=0 +BC did=a4a2ffff gx=20 gy=7 esi=1cdec980 +BR ret=0 +BC did=a4a3ffff gx=20 gy=8 esi=1cdee588 +BR ret=0 +BC did=a4a4ffff gx=20 gy=9 esi=1cdee318 +BR ret=0 +BC did=a4a5ffff gx=20 gy=10 esi=1cdec368 +BR ret=0 +BC did=a4a6ffff gx=20 gy=11 esi=1cdebfc0 +BR ret=0 +BC did=a4a7ffff gx=20 gy=12 esi=1cded6e8 +BR ret=0 +BC did=a4a8ffff gx=20 gy=13 esi=1cdece60 +BR ret=0 +BC did=a4a9ffff gx=20 gy=14 esi=1cdecbf0 +BR ret=0 +BC did=a4aaffff gx=20 gy=15 esi=1cdecf98 +BR ret=0 +BC did=a4abffff gx=20 gy=16 esi=1cded958 +BR ret=0 +BC did=a4acffff gx=20 gy=17 esi=1cded340 +BR ret=0 +BC did=a4adffff gx=20 gy=18 esi=1cded820 +BR ret=0 +BC did=a4aeffff gx=20 gy=19 esi=1cded0d0 +BR ret=0 +BC did=a4afffff gx=20 gy=20 esi=1cded208 +BR ret=0 +BC did=a4b0ffff gx=20 gy=21 esi=1cdec0f8 +BR ret=0 +BC did=a4b1ffff gx=20 gy=22 esi=1cdede38 +BR ret=0 +BC did=a4b2ffff gx=20 gy=23 esi=1cded478 +BR ret=0 +BC did=a4b3ffff gx=20 gy=24 esi=1cdeda90 +BR ret=0 +BC did=a4b4ffff gx=20 gy=25 esi=1cdec4a0 +BR ret=0 +BC did=a4b5ffff gx=20 gy=26 esi=1cdedbc8 +BR ret=0 +BC did=a4b6ffff gx=20 gy=27 esi=1cdedd00 +BR ret=0 +BC did=a4b7ffff gx=20 gy=28 esi=1cdee450 +BR ret=0 +BC did=a4b8ffff gx=20 gy=29 esi=1cdec5d8 +BR ret=0 +BC did=a4b9ffff gx=20 gy=30 esi=1ce76a78 +BR ret=0 +BC did=a4baffff gx=20 gy=31 esi=1ce76bb0 +BR ret=0 +BC did=a4bbffff gx=20 gy=32 esi=1ce75f80 +BR ret=0 +BC did=a4bcffff gx=20 gy=33 esi=1ce76940 +BR ret=0 +BC did=a4bdffff gx=20 gy=34 esi=1ce77a50 +BR ret=1 +BC did=a4beffff gx=20 gy=35 esi=1ce76ce8 +BR ret=1 +BC did=a4bfffff gx=20 gy=36 esi=1ce76460 +BR ret=1 +BC did=a4c0ffff gx=20 gy=37 esi=1ce76e20 +BR ret=1 +BC did=a4c1ffff gx=20 gy=38 esi=1ce781a0 +BR ret=1 +BC did=a4c2ffff gx=20 gy=39 esi=1ce77570 +BR ret=1 +BC did=a4c3ffff gx=20 gy=40 esi=1ce776a8 +BR ret=1 +BC did=a4c4ffff gx=20 gy=41 esi=1ce76f58 +BR ret=1 +BC did=a4c5ffff gx=20 gy=42 esi=1ce76598 +BR ret=1 +BC did=a4c6ffff gx=20 gy=43 esi=1ce777e0 +BR ret=1 +BC did=a4c7ffff gx=20 gy=44 esi=1ce782d8 +BR ret=1 +BC did=a4c8ffff gx=20 gy=45 esi=1ce78068 +BR ret=1 +BC did=a4c9ffff gx=20 gy=46 esi=1ce75d10 +BR ret=2 +BC did=a4caffff gx=20 gy=47 esi=1ce77090 +BR ret=1 +BC did=a4cbffff gx=20 gy=48 esi=1ce760b8 +BR ret=1 +BC did=a4ccffff gx=20 gy=49 esi=1ce77b88 +BR ret=1 +BC did=a4cdffff gx=20 gy=50 esi=1ce766d0 +BR ret=1 +BC did=a59bffff gx=21 gy=0 esi=1ce75e48 +BR ret=0 +BC did=a59cffff gx=21 gy=1 esi=1ce761f0 +BR ret=0 +BC did=a59dffff gx=21 gy=2 esi=1ce76328 +BR ret=0 +BC did=a59effff gx=21 gy=3 esi=1ce77918 +BR ret=0 +BC did=a59fffff gx=21 gy=4 esi=1ce771c8 +BR ret=0 +BC did=a5a0ffff gx=21 gy=5 esi=1ce77cc0 +BR ret=0 +BC did=a5a1ffff gx=21 gy=6 esi=1ce77df8 +BR ret=0 +BC did=a5a2ffff gx=21 gy=7 esi=1ce76808 +BR ret=0 +BC did=a5a3ffff gx=21 gy=8 esi=1ce77f30 +BR ret=0 +BC did=a5a4ffff gx=21 gy=9 esi=1ce77300 +BR ret=0 +BC did=a5a5ffff gx=21 gy=10 esi=1ce77438 +BR ret=0 +BC did=a5a6ffff gx=21 gy=11 esi=1ce7a630 +BR ret=0 +BC did=a5a7ffff gx=21 gy=12 esi=1ce78c98 +BR ret=0 +BC did=a5a8ffff gx=21 gy=13 esi=1ce79a00 +BR ret=0 +BC did=a5a9ffff gx=21 gy=14 esi=1ce7a768 +BR ret=0 +BC did=a5aaffff gx=21 gy=15 esi=1ce78dd0 +BR ret=0 +BC did=a5abffff gx=21 gy=16 esi=1ce7a8a0 +BR ret=0 +BC did=a5acffff gx=21 gy=17 esi=1ce79790 +BR ret=0 +BC did=a5adffff gx=21 gy=18 esi=1ce78f08 +BR ret=0 +BC did=a5aeffff gx=21 gy=19 esi=1ce7a9d8 +BR ret=0 +BC did=a5afffff gx=21 gy=20 esi=1ce79520 +BR ret=0 +BC did=a5b0ffff gx=21 gy=21 esi=1ce79da8 +BR ret=0 +BC did=a5b1ffff gx=21 gy=22 esi=1ce79178 +BR ret=0 +BC did=a5b2ffff gx=21 gy=23 esi=1ce78b60 +BR ret=0 +BC did=a5b3ffff gx=21 gy=24 esi=1ce79b38 +BR ret=0 +BC did=a5b4ffff gx=21 gy=25 esi=1ce79040 +BR ret=0 +BC did=a5b5ffff gx=21 gy=26 esi=1ce79c70 +BR ret=0 +BC did=a5b6ffff gx=21 gy=27 esi=1ce78410 +BR ret=0 +BC did=a5b7ffff gx=21 gy=28 esi=1ce798c8 +BR ret=0 +BC did=a5b8ffff gx=21 gy=29 esi=1ce78548 +BR ret=0 +BC did=a5b9ffff gx=21 gy=30 esi=1ce79658 +BR ret=0 +BC did=a5baffff gx=21 gy=31 esi=1ce787b8 +BR ret=0 +BC did=a5bbffff gx=21 gy=32 esi=1ce792b0 +BR ret=1 +BC did=a5bcffff gx=21 gy=33 esi=1ce793e8 +BR ret=1 +BC did=a5bdffff gx=21 gy=34 esi=1ce79ee0 +BR ret=1 +BC did=a5beffff gx=21 gy=35 esi=1ce7a018 +BR ret=1 +BC did=a5bfffff gx=21 gy=36 esi=1ce7a150 +BR ret=1 +BC did=a5c0ffff gx=21 gy=37 esi=1ce788f0 +BR ret=1 +BC did=a5c1ffff gx=21 gy=38 esi=1ce7a4f8 +BR ret=1 +BC did=a5c2ffff gx=21 gy=39 esi=1ce7a288 +BR ret=1 +BC did=a5c3ffff gx=21 gy=40 esi=1ce7a3c0 +BR ret=1 +BC did=a5c4ffff gx=21 gy=41 esi=1ce78680 +BR ret=1 +BC did=a5c5ffff gx=21 gy=42 esi=1ce78a28 +BR ret=1 +BC did=a5c6ffff gx=21 gy=43 esi=1ce7b740 +BR ret=1 +BC did=a5c7ffff gx=21 gy=44 esi=1ce7b878 +BR ret=1 +BC did=a5c8ffff gx=21 gy=45 esi=1ce7cd30 +BR ret=1 +BC did=a5c9ffff gx=21 gy=46 esi=1ce7ad80 +BR ret=1 +BC did=a5caffff gx=21 gy=47 esi=1ce7ce68 +BR ret=2 +BC did=a5cbffff gx=21 gy=48 esi=1ce7b260 +BR ret=2 +BC did=a5ccffff gx=21 gy=49 esi=1ce7cfa0 +BR ret=2 +BC did=a5cdffff gx=21 gy=50 esi=1ce7c5e0 +BR ret=1 +BC did=a69bffff gx=22 gy=0 esi=1ce7d0d8 +BR ret=0 +BC did=a69cffff gx=22 gy=1 esi=1ce7b608 +BR ret=0 +BC did=a69dffff gx=22 gy=2 esi=1ce7c718 +BR ret=0 +BC did=a69effff gx=22 gy=3 esi=1ce7ab10 +BR ret=0 +BC did=a69fffff gx=22 gy=4 esi=1ce7b128 +BR ret=0 +BC did=a6a0ffff gx=22 gy=5 esi=1ce7ac48 +BR ret=0 +BC did=a6a1ffff gx=22 gy=6 esi=1ce7aeb8 +BR ret=0 +BC did=a6a2ffff gx=22 gy=7 esi=1ce7c100 +BR ret=0 +BC did=a6a3ffff gx=22 gy=8 esi=1ce7b398 +BR ret=0 +BC did=a6a4ffff gx=22 gy=9 esi=1ce7b4d0 +BR ret=0 +BC did=a6a5ffff gx=22 gy=10 esi=1ce7c850 +BR ret=0 +BC did=a6a6ffff gx=22 gy=11 esi=1ce7aff0 +BR ret=0 +BC did=a6a7ffff gx=22 gy=12 esi=1ce7c370 +BR ret=0 +BC did=a6a8ffff gx=22 gy=13 esi=1ce7b9b0 +BR ret=0 +BC did=a6a9ffff gx=22 gy=14 esi=1ce7bae8 +BR ret=0 +BC did=a6aaffff gx=22 gy=15 esi=1ce7bc20 +BR ret=0 +BC did=a6abffff gx=22 gy=16 esi=1ce7c988 +BR ret=0 +BC did=a6acffff gx=22 gy=17 esi=1ce7cac0 +BR ret=0 +BC did=a6adffff gx=22 gy=18 esi=1ce7cbf8 +BR ret=0 +BC did=a6aeffff gx=22 gy=19 esi=1ce7c4a8 +BR ret=0 +BC did=a6afffff gx=22 gy=20 esi=1ce7bd58 +BR ret=0 +BC did=a6b0ffff gx=22 gy=21 esi=1ce7be90 +BR ret=0 +BC did=a6b1ffff gx=22 gy=22 esi=1ce7bfc8 +BR ret=0 +BC did=a6b2ffff gx=22 gy=23 esi=1ce7c238 +BR ret=0 +BC did=a6b3ffff gx=22 gy=24 esi=1ce7f430 +BR ret=0 +BC did=a6b4ffff gx=22 gy=25 esi=1ce7da98 +BR ret=0 +BC did=a6b5ffff gx=22 gy=26 esi=1ce7ee18 +BR ret=0 +BC did=a6b6ffff gx=22 gy=27 esi=1ce7d210 +BR ret=0 +BC did=a6b7ffff gx=22 gy=28 esi=1ce7d960 +BR ret=0 +BC did=a6b8ffff gx=22 gy=29 esi=1ce7dbd0 +BR ret=0 +BC did=a6b9ffff gx=22 gy=30 esi=1ce7e6c8 +BR ret=1 +BC did=a6baffff gx=22 gy=31 esi=1ce7e800 +BR ret=1 +BC did=a6bbffff gx=22 gy=32 esi=1ce7ece0 +BR ret=1 +BC did=a6bcffff gx=22 gy=33 esi=1ce7dd08 +BR ret=1 +BC did=a6bdffff gx=22 gy=34 esi=1ce7f1c0 +BR ret=1 +BC did=a6beffff gx=22 gy=35 esi=1ce7d480 +BR ret=1 +BC did=a6bfffff gx=22 gy=36 esi=1ce7f568 +BR ret=1 +BC did=a6c0ffff gx=22 gy=37 esi=1ce7de40 +BR ret=1 +BC did=a6c1ffff gx=22 gy=38 esi=1ce7f6a0 +BR ret=1 +BC did=a6c2ffff gx=22 gy=39 esi=1ce7ef50 +BR ret=1 +BC did=a6c3ffff gx=22 gy=40 esi=1ce7f088 +BR ret=1 +BC did=a6c4ffff gx=22 gy=41 esi=1ce7d828 +BR ret=1 +BC did=a6c5ffff gx=22 gy=42 esi=1ce7f2f8 +BR ret=1 +BC did=a6c6ffff gx=22 gy=43 esi=1ce7df78 +BR ret=1 +BC did=a6c7ffff gx=22 gy=44 esi=1ce7f7d8 +BR ret=1 +BC did=a6c8ffff gx=22 gy=45 esi=1ce7d5b8 +BR ret=1 +BC did=a6c9ffff gx=22 gy=46 esi=1ce7e0b0 +BR ret=1 +BC did=a6caffff gx=22 gy=47 esi=1ce7e1e8 +BR ret=2 +BC did=a6cbffff gx=22 gy=48 esi=1ce7e320 +BR ret=2 +BC did=a6ccffff gx=22 gy=49 esi=1ce7eba8 +BR ret=2 +BC did=a6cdffff gx=22 gy=50 esi=1ce7e590 +BR ret=1 +BC did=a79bffff gx=23 gy=0 esi=1ce7e458 +BR ret=0 +BC did=a79cffff gx=23 gy=1 esi=1ce7e938 +BR ret=0 +BC did=a79dffff gx=23 gy=2 esi=1ce7d348 +BR ret=0 +BC did=a79effff gx=23 gy=3 esi=1ce7d6f0 +BR ret=0 +BC did=a79fffff gx=23 gy=4 esi=1ce7ea70 +BR ret=0 +BC did=a7a0ffff gx=23 gy=5 esi=1ce80060 +BR ret=0 +BC did=a7a1ffff gx=23 gy=6 esi=1ce812a8 +BR ret=0 +BC did=a7a2ffff gx=23 gy=7 esi=1ce7fcb8 +BR ret=0 +BC did=a7a3ffff gx=23 gy=8 esi=1ce80c90 +BR ret=0 +BC did=a7a4ffff gx=23 gy=9 esi=1ce80408 +BR ret=0 +BC did=a7a5ffff gx=23 gy=10 esi=1ce81170 +BR ret=0 +BC did=a7a6ffff gx=23 gy=11 esi=1ce80a20 +BR ret=0 +BC did=a7a7ffff gx=23 gy=12 esi=1ce80540 +BR ret=0 +BC did=a7a8ffff gx=23 gy=13 esi=1ce7f910 +BR ret=0 +BC did=a7a9ffff gx=23 gy=14 esi=1ce802d0 +BR ret=0 +BC did=a7aaffff gx=23 gy=15 esi=1ce7fb80 +BR ret=0 +BC did=a7abffff gx=23 gy=16 esi=1ce818c0 +BR ret=0 +BC did=a7acffff gx=23 gy=17 esi=1ce80678 +BR ret=0 +BC did=a7adffff gx=23 gy=18 esi=1ce7fa48 +BR ret=0 +BC did=a7aeffff gx=23 gy=19 esi=1ce80198 +BR ret=0 +BC did=a7afffff gx=23 gy=20 esi=1ce807b0 +BR ret=0 +BC did=a7b0ffff gx=23 gy=21 esi=1ce7fdf0 +BR ret=0 +BC did=a7b1ffff gx=23 gy=22 esi=1ce7ff28 +BR ret=0 +BC did=a7b2ffff gx=23 gy=23 esi=1ce808e8 +BR ret=0 +BC did=a7b3ffff gx=23 gy=24 esi=1ce81650 +BR ret=0 +BC did=a7b4ffff gx=23 gy=25 esi=1ce81518 +BR ret=0 +BC did=a7b5ffff gx=23 gy=26 esi=1ce80b58 +BR ret=0 +BC did=a7b6ffff gx=23 gy=27 esi=1ce80dc8 +BR ret=0 +BC did=a7b7ffff gx=23 gy=28 esi=1ce80f00 +BR ret=1 +BC did=a7b8ffff gx=23 gy=29 esi=1ce81038 +BR ret=1 +BC did=a7b9ffff gx=23 gy=30 esi=1ce813e0 +BR ret=1 +BC did=a7baffff gx=23 gy=31 esi=1ce81788 +BR ret=1 +BC did=a7bbffff gx=23 gy=32 esi=1ce819f8 +BR ret=1 +BC did=a7bcffff gx=23 gy=33 esi=1ce81b30 +BR ret=1 +BC did=a7bdffff gx=23 gy=34 esi=1ce81c68 +BR ret=1 +BC did=a7beffff gx=23 gy=35 esi=1ce81da0 +BR ret=1 +BC did=a7bfffff gx=23 gy=36 esi=1ce81ed8 +BR ret=1 +BC did=a7c0ffff gx=23 gy=37 esi=1ce844a0 +BR ret=1 +BC did=a7c1ffff gx=23 gy=38 esi=1ce83870 +BR ret=1 +BC did=a7c2ffff gx=23 gy=39 esi=1ce839a8 +BR ret=1 +BC did=a7c3ffff gx=23 gy=40 esi=1ce82eb0 +BR ret=1 +BC did=a7c4ffff gx=23 gy=41 esi=1ce82898 +BR ret=1 +BC did=a7c5ffff gx=23 gy=42 esi=1ce83258 +BR ret=1 +BC did=a7c6ffff gx=23 gy=43 esi=1ce82010 +BR ret=1 +BC did=a7c7ffff gx=23 gy=44 esi=1ce834c8 +BR ret=1 +BC did=a7c8ffff gx=23 gy=45 esi=1ce83600 +BR ret=1 +BC did=a7c9ffff gx=23 gy=46 esi=1ce845d8 +BR ret=1 +BC did=a7caffff gx=23 gy=47 esi=1ce83e88 +BR ret=2 +BC did=a7cbffff gx=23 gy=48 esi=1ce82760 +BR ret=2 +BC did=a7ccffff gx=23 gy=49 esi=1ce83738 +BR ret=2 +BC did=a7cdffff gx=23 gy=50 esi=1ce83ae0 +BR ret=2 +BC did=a89bffff gx=24 gy=0 esi=1ce82fe8 +BR ret=0 +BC did=a89cffff gx=24 gy=1 esi=1ce82280 +BR ret=0 +BC did=a89dffff gx=24 gy=2 esi=1ce82d78 +BR ret=0 +BC did=a89effff gx=24 gy=3 esi=1ce84230 +BR ret=0 +BC did=a89fffff gx=24 gy=4 esi=1ce823b8 +BR ret=0 +BC did=a8a0ffff gx=24 gy=5 esi=1ce83c18 +BR ret=0 +BC did=a8a1ffff gx=24 gy=6 esi=1ce829d0 +BR ret=0 +BC did=a8a2ffff gx=24 gy=7 esi=1ce82b08 +BR ret=0 +BC did=a8a3ffff gx=24 gy=8 esi=1ce83d50 +BR ret=0 +BC did=a8a4ffff gx=24 gy=9 esi=1ce82148 +BR ret=0 +BC did=a8a5ffff gx=24 gy=10 esi=1ce83fc0 +BR ret=0 +BC did=a8a6ffff gx=24 gy=11 esi=1ce840f8 +BR ret=0 +BC did=a8a7ffff gx=24 gy=12 esi=1ce83120 +BR ret=0 +BC did=a8a8ffff gx=24 gy=13 esi=1ce82628 +BR ret=0 +BC did=a8a9ffff gx=24 gy=14 esi=1ce84368 +BR ret=0 +BC did=a8aaffff gx=24 gy=15 esi=1ce83390 +BR ret=0 +BC did=a8abffff gx=24 gy=16 esi=1ce824f0 +BR ret=0 +BC did=a8acffff gx=24 gy=17 esi=1ce82c40 +BR ret=0 +BC did=a8adffff gx=24 gy=18 esi=1ce85340 +BR ret=0 +BC did=a8aeffff gx=24 gy=19 esi=1ce84e60 +BR ret=0 +BC did=a8afffff gx=24 gy=20 esi=1ce856e8 +BR ret=0 +BC did=a8b0ffff gx=24 gy=21 esi=1ce86ba0 +BR ret=0 +BC did=a8b1ffff gx=24 gy=22 esi=1ce86930 +BR ret=0 +BC did=a8b2ffff gx=24 gy=23 esi=1ce85f70 +BR ret=0 +BC did=a8b3ffff gx=24 gy=24 esi=1ce86450 +BR ret=0 +BC did=a8b4ffff gx=24 gy=25 esi=1ce861e0 +BR ret=0 +BC did=a8b5ffff gx=24 gy=26 esi=1ce855b0 +BR ret=1 +BC did=a8b5ffff gx=0 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=0 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=0 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=0 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=0 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=0 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=0 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=0 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=1 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=1 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=1 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=1 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=1 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=1 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=1 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=1 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=2 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=2 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=2 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=2 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=2 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=2 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=2 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=2 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=3 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=3 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=3 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=3 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=3 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=3 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=3 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=3 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=4 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=4 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=4 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=4 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=4 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=4 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=4 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=4 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=5 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=5 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=5 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=5 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=5 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=5 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=5 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=5 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=6 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=6 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=6 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=6 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=6 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=6 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=6 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=6 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=7 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=7 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=7 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=7 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=7 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=7 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=7 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=7 gy=1768844 esi=1ce855b0 +BC did=a8b6ffff gx=24 gy=27 esi=1ce84f98 +BR ret=1 +BC did=a8b7ffff gx=24 gy=28 esi=1ce85958 +BR ret=1 +BC did=a8b8ffff gx=24 gy=29 esi=1ce850d0 +BR ret=1 +BC did=a8b9ffff gx=24 gy=30 esi=1ce85478 +BR ret=1 +BC did=a8baffff gx=24 gy=31 esi=1ce85208 +BR ret=1 +BC did=a8bbffff gx=24 gy=32 esi=1ce85820 +BR ret=1 +BC did=a8bcffff gx=24 gy=33 esi=1ce860a8 +BR ret=1 +BC did=a8bdffff gx=24 gy=34 esi=1ce85a90 +BR ret=1 +BC did=a8beffff gx=24 gy=35 esi=1ce85d00 +BR ret=1 +BC did=a8bfffff gx=24 gy=36 esi=1ce85bc8 +BR ret=1 +BC did=a8c0ffff gx=24 gy=37 esi=1ce85e38 +BR ret=1 +BC did=a8c1ffff gx=24 gy=38 esi=1ce86318 +BR ret=1 +BC did=a8c2ffff gx=24 gy=39 esi=1ce86588 +BR ret=1 +BC did=a8c3ffff gx=24 gy=40 esi=1ce866c0 +BR ret=1 +BC did=a8c4ffff gx=24 gy=41 esi=1ce867f8 +BR ret=1 +BC did=a8c5ffff gx=24 gy=42 esi=1ce86a68 +BR ret=1 +BC did=a8c6ffff gx=24 gy=43 esi=1ce86cd8 +BR ret=1 +BC did=a8c7ffff gx=24 gy=44 esi=1ce84710 +BR ret=1 +BC did=a8c8ffff gx=24 gy=45 esi=1ce84848 +BR ret=1 +BC did=a8c9ffff gx=24 gy=46 esi=1ce84980 +BR ret=1 +BC did=a8caffff gx=24 gy=47 esi=1ce84ab8 +BR ret=2 +BC did=a8cbffff gx=24 gy=48 esi=1ce84bf0 +BR ret=2 +BC did=a8ccffff gx=24 gy=49 esi=1ce84d28 +BR ret=2 +BC did=a8cdffff gx=24 gy=50 esi=1ce87698 +BR ret=2 +BC did=a99bffff gx=25 gy=0 esi=1ce87f20 +BR ret=0 +BC did=a99cffff gx=25 gy=1 esi=1ce887a8 +BR ret=0 +BC did=a99dffff gx=25 gy=2 esi=1ce888e0 +BR ret=0 +BC did=a99effff gx=25 gy=3 esi=1ce86f48 +BR ret=0 +BC did=a99fffff gx=25 gy=4 esi=1ce877d0 +BR ret=0 +BC did=a9a0ffff gx=25 gy=5 esi=1ce87908 +BR ret=0 +BC did=a9a1ffff gx=25 gy=6 esi=1ce88b50 +BR ret=0 +BC did=a9a2ffff gx=25 gy=7 esi=1ce88a18 +BR ret=0 +BC did=a9a3ffff gx=25 gy=8 esi=1ce893d8 +BR ret=0 +BC did=a9a4ffff gx=25 gy=9 esi=1ce88670 +BR ret=0 +BC did=a9a5ffff gx=25 gy=10 esi=1ce88c88 +BR ret=0 +BC did=a9a6ffff gx=25 gy=11 esi=1ce87b78 +BR ret=0 +BC did=a9a7ffff gx=25 gy=12 esi=1ce87428 +BR ret=0 +BC did=a9a8ffff gx=25 gy=13 esi=1ce88058 +BR ret=0 +BC did=a9a9ffff gx=25 gy=14 esi=1ce87560 +BR ret=0 +BC did=a9aaffff gx=25 gy=15 esi=1ce88400 +BR ret=0 +BC did=a9abffff gx=25 gy=16 esi=1ce89030 +BR ret=0 +BC did=a9acffff gx=25 gy=17 esi=1ce88ef8 +BR ret=0 +BC did=a9adffff gx=25 gy=18 esi=1ce87a40 +BR ret=0 +BC did=a9aeffff gx=25 gy=19 esi=1ce88dc0 +BR ret=0 +BC did=a9afffff gx=25 gy=20 esi=1ce88190 +BR ret=0 +BC did=a9b0ffff gx=25 gy=21 esi=1ce89168 +BR ret=0 +BC did=a9b1ffff gx=25 gy=22 esi=1ce892a0 +BR ret=0 +BC did=a9b2ffff gx=25 gy=23 esi=1ce87cb0 +BR ret=0 +BC did=a9b3ffff gx=25 gy=24 esi=1ce87de8 +BR ret=1 +BC did=a9b3ffff gx=0 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=0 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=0 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=0 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=0 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=0 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=0 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=0 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=1 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=1 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=1 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=1 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=1 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=1 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=1 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=1 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=2 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=2 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=2 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=2 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=2 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=2 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=2 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=2 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=3 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=3 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=3 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=3 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=3 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=3 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=3 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=3 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=4 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=4 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=4 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=4 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=4 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=4 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=4 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=4 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=5 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=5 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=5 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=5 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=5 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=5 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=5 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=5 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=6 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=6 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=6 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=6 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=6 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=6 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=6 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=6 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=7 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=7 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=7 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=7 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=7 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=7 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=7 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=7 gy=1768844 esi=1ce87de8 +BC did=a9b4ffff gx=25 gy=25 esi=1ce882c8 +BR ret=1 +BC did=a9b4ffff gx=0 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=0 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=0 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=0 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=0 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=0 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=0 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=0 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=1 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=1 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=1 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=1 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=1 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=1 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=1 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=1 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=2 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=2 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=2 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=2 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=2 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=2 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=2 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=2 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=3 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=3 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=3 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=3 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=3 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=3 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=3 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=3 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=4 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=4 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=4 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=4 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=4 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=4 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=4 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=4 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=5 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=5 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=5 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=5 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=5 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=5 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=5 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=5 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=6 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=6 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=6 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=6 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=6 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=6 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=6 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=6 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=7 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=7 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=7 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=7 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=7 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=7 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=7 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=7 gy=1768844 esi=1ce882c8 +BC did=a9b5ffff gx=25 gy=26 esi=1ce88538 +BR ret=1 +BC did=a9b5ffff gx=0 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=0 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=0 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=0 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=0 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=0 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=0 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=0 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=1 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=1 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=1 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=1 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=1 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=1 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=1 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=1 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=2 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=2 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=2 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=2 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=2 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=2 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=2 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=2 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=3 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=3 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=3 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=3 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=3 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=3 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=3 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=3 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=4 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=4 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=4 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=4 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=4 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=4 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=4 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=4 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=5 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=5 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=5 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=5 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=5 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=5 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=5 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=5 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=6 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=6 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=6 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=6 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=6 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=6 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=6 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=6 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=7 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=7 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=7 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=7 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=7 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=7 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=7 gy=1768844 esi=1ce88538 +BC did=a9b5ffff gx=7 gy=1768844 esi=1ce88538 +BC did=a9b6ffff gx=25 gy=27 esi=1ce86e10 +BR ret=1 +BC did=a9b7ffff gx=25 gy=28 esi=1ce87080 +BR ret=1 +BC did=a9b8ffff gx=25 gy=29 esi=1ce871b8 +BR ret=1 +BC did=a9b9ffff gx=25 gy=30 esi=1ce872f0 +BR ret=1 +BC did=a9baffff gx=25 gy=31 esi=1ce8b4c0 +BR ret=1 +BC did=a9bbffff gx=25 gy=32 esi=1ce8aea8 +BR ret=1 +BC did=a9bcffff gx=25 gy=33 esi=1ce8b9a0 +BR ret=1 +BC did=a9bdffff gx=25 gy=34 esi=1ce8b250 +BR ret=1 +BC did=a9beffff gx=25 gy=35 esi=1ce8ab00 +BR ret=1 +BC did=a9bfffff gx=25 gy=36 esi=1ce8b5f8 +BR ret=1 +BC did=a9c0ffff gx=25 gy=37 esi=1ce8b730 +BR ret=1 +BC did=a9c1ffff gx=25 gy=38 esi=1ce89d98 +BR ret=1 +BC did=a9c2ffff gx=25 gy=39 esi=1ce8ac38 +BR ret=1 +BC did=a9c3ffff gx=25 gy=40 esi=1ce8b868 +BR ret=1 +BC did=a9c4ffff gx=25 gy=41 esi=1ce89ed0 +BR ret=1 +BC did=a9c5ffff gx=25 gy=42 esi=1ce8bad8 +BR ret=1 +BC did=a9c6ffff gx=25 gy=43 esi=1ce89510 +BR ret=1 +BC did=a9c7ffff gx=25 gy=44 esi=1ce8a008 +BR ret=1 +BC did=a9c8ffff gx=25 gy=45 esi=1ce89648 +BR ret=1 +BC did=a9c9ffff gx=25 gy=46 esi=1ce8a620 +BR ret=1 +BC did=a9caffff gx=25 gy=47 esi=1ce8a140 +BR ret=2 +BC did=a9cbffff gx=25 gy=48 esi=1ce89780 +BR ret=2 +BC did=a9ccffff gx=25 gy=49 esi=1ce898b8 +BR ret=2 +BC did=a9cdffff gx=25 gy=50 esi=1ce8a278 +BR ret=2 +BC did=aa9bffff gx=26 gy=0 esi=1ce899f0 +BR ret=0 +BC did=aa9cffff gx=26 gy=1 esi=1ce8a3b0 +BR ret=0 +BC did=aa9dffff gx=26 gy=2 esi=1ce8b118 +BR ret=0 +BC did=aa9effff gx=26 gy=3 esi=1ce89b28 +BR ret=0 +BC did=aa9fffff gx=26 gy=4 esi=1ce8ad70 +BR ret=0 +BC did=aaa0ffff gx=26 gy=5 esi=1ce8a4e8 +BR ret=0 +BC did=aaa1ffff gx=26 gy=6 esi=1ce89c60 +BR ret=0 +BC did=aaa2ffff gx=26 gy=7 esi=1ce8a758 +BR ret=0 +BC did=aaa3ffff gx=26 gy=8 esi=1ce8a890 +BR ret=0 +BC did=aaa4ffff gx=26 gy=9 esi=1ce8b388 +BR ret=0 +BC did=aaa5ffff gx=26 gy=10 esi=1ce8a9c8 +BR ret=0 +BC did=aaa6ffff gx=26 gy=11 esi=1ce8afe0 +BR ret=0 +BC did=aaa7ffff gx=26 gy=12 esi=1ce8c498 +BR ret=0 +BC did=aaa8ffff gx=26 gy=13 esi=1ce8bfb8 +BR ret=0 +BC did=aaa9ffff gx=26 gy=14 esi=1ce8c840 +BR ret=0 +BC did=aaaaffff gx=26 gy=15 esi=1ce8c708 +BR ret=0 +BC did=aaabffff gx=26 gy=16 esi=1ce8c978 +BR ret=0 +BC did=aaacffff gx=26 gy=17 esi=1ce8cd20 +BR ret=0 +BC did=aaadffff gx=26 gy=18 esi=1ce8d470 +BR ret=0 +BC did=aaaeffff gx=26 gy=19 esi=1ce8c0f0 +BR ret=0 +BC did=aaafffff gx=26 gy=20 esi=1ce8d950 +BR ret=0 +BC did=aab0ffff gx=26 gy=21 esi=1ce8cab0 +BR ret=0 +BC did=aab1ffff gx=26 gy=22 esi=1ce8cbe8 +BR ret=0 +BC did=aab2ffff gx=26 gy=23 esi=1ce8c360 +BR ret=0 +BC did=aab3ffff gx=26 gy=24 esi=1ce8ce58 +BR ret=0 +BC did=aab4ffff gx=26 gy=25 esi=1ce8cf90 +BR ret=0 +BC did=aab5ffff gx=26 gy=26 esi=1ce8c228 +BR ret=0 +BC did=aab6ffff gx=26 gy=27 esi=1ce8d0c8 +BR ret=0 +BC did=aab7ffff gx=26 gy=28 esi=1ce8c5d0 +BR ret=0 +BC did=aab8ffff gx=26 gy=29 esi=1ce8d200 +BR ret=1 +BC did=aab9ffff gx=26 gy=30 esi=1ce8de30 +BR ret=1 +BC did=aabaffff gx=26 gy=31 esi=1ce8dcf8 +BR ret=1 +BC did=aabbffff gx=26 gy=32 esi=1ce8d338 +BR ret=1 +BC did=aabcffff gx=26 gy=33 esi=1ce8da88 +BR ret=1 +BC did=aabdffff gx=26 gy=34 esi=1ce8d5a8 +BR ret=1 +BC did=aabeffff gx=26 gy=35 esi=1ce8d818 +BR ret=1 +BC did=aabfffff gx=26 gy=36 esi=1ce8d6e0 +BR ret=1 +BC did=aac0ffff gx=26 gy=37 esi=1ce8dbc0 +BR ret=1 +BC did=aac1ffff gx=26 gy=38 esi=1ce8df68 +BR ret=1 +BC did=aac2ffff gx=26 gy=39 esi=1ce8e1d8 +BR ret=1 +BC did=aac3ffff gx=26 gy=40 esi=1ce8e0a0 +BR ret=1 +BC did=aac4ffff gx=26 gy=41 esi=1ce8bc10 +BR ret=1 +BC did=aac5ffff gx=26 gy=42 esi=1ce8bd48 +BR ret=1 +BC did=aac6ffff gx=26 gy=43 esi=1ce8be80 +BR ret=1 +BC did=aac7ffff gx=26 gy=44 esi=1ce90188 +BR ret=1 +BC did=aac8ffff gx=26 gy=45 esi=1ce902c0 +BR ret=1 +BC did=aac9ffff gx=26 gy=46 esi=1ce90050 +BR ret=1 +BC did=aacaffff gx=26 gy=47 esi=1ce8eb98 +BR ret=2 +BC did=aacbffff gx=26 gy=48 esi=1ce8e7f0 +BR ret=2 +BC did=aaccffff gx=26 gy=49 esi=1ce8f078 +BR ret=2 +BC did=aacdffff gx=26 gy=50 esi=1ce8f1b0 +BR ret=2 +BC did=ab9bffff gx=27 gy=0 esi=1ce8e580 +BR ret=0 +BC did=ab9cffff gx=27 gy=1 esi=1ce8ff18 +BR ret=0 +BC did=ab9dffff gx=27 gy=2 esi=1ce8f2e8 +BR ret=0 +BC did=ab9effff gx=27 gy=3 esi=1ce903f8 +BR ret=0 +BC did=ab9fffff gx=27 gy=4 esi=1ce8fca8 +BR ret=0 +BC did=aba0ffff gx=27 gy=5 esi=1ce907a0 +BR ret=0 +BC did=aba1ffff gx=27 gy=6 esi=1ce90530 +BR ret=0 +BC did=aba2ffff gx=27 gy=7 esi=1ce8f900 +BR ret=0 +BC did=aba3ffff gx=27 gy=8 esi=1ce90668 +BR ret=0 +BC did=aba4ffff gx=27 gy=9 esi=1ce908d8 +BR ret=0 +BC did=aba5ffff gx=27 gy=10 esi=1ce8ecd0 +BR ret=0 +BC did=aba6ffff gx=27 gy=11 esi=1ce8fa38 +BR ret=0 +BC did=aba7ffff gx=27 gy=12 esi=1ce8e310 +BR ret=0 +BC did=aba8ffff gx=27 gy=13 esi=1ce8ee08 +BR ret=0 +BC did=aba9ffff gx=27 gy=14 esi=1ce8e448 +BR ret=0 +BC did=abaaffff gx=27 gy=15 esi=1ce8e6b8 +BR ret=0 +BC did=ababffff gx=27 gy=16 esi=1ce8ef40 +BR ret=0 +BC did=abacffff gx=27 gy=17 esi=1ce8e928 +BR ret=0 +BC did=abadffff gx=27 gy=18 esi=1ce8f420 +BR ret=0 +BC did=abaeffff gx=27 gy=19 esi=1ce8fb70 +BR ret=0 +BC did=abafffff gx=27 gy=20 esi=1ce8ea60 +BR ret=0 +BC did=abb0ffff gx=27 gy=21 esi=1ce8fde0 +BR ret=0 +BC did=abb1ffff gx=27 gy=22 esi=1ce8f558 +BR ret=0 +BC did=abb2ffff gx=27 gy=23 esi=1ce8f690 +BR ret=0 +BC did=abb3ffff gx=27 gy=24 esi=1ce8f7c8 +BR ret=0 +BC did=abb4ffff gx=27 gy=25 esi=1ce92888 +BR ret=0 +BC did=abb5ffff gx=27 gy=26 esi=1ce92ea0 +BR ret=0 +BC did=abb6ffff gx=27 gy=27 esi=1ce92c30 +BR ret=0 +BC did=abb7ffff gx=27 gy=28 esi=1ce90b48 +BR ret=0 +BC did=abb8ffff gx=27 gy=29 esi=1ce91028 +BR ret=0 +BC did=abb9ffff gx=27 gy=30 esi=1ce90ef0 +BR ret=0 +BC did=abbaffff gx=27 gy=31 esi=1ce91640 +BR ret=0 +BC did=abbbffff gx=27 gy=32 esi=1ce92618 +BR ret=0 +BC did=abbcffff gx=27 gy=33 esi=1ce919e8 +BR ret=0 +BC did=abbdffff gx=27 gy=34 esi=1ce91160 +BR ret=0 +BC did=abbeffff gx=27 gy=35 esi=1ce91298 +BR ret=0 +BC did=abbfffff gx=27 gy=36 esi=1ce91d90 +BR ret=0 +BC did=abc0ffff gx=27 gy=37 esi=1ce923a8 +BR ret=0 +BC did=abc1ffff gx=27 gy=38 esi=1ce913d0 +BR ret=0 +BC did=abc2ffff gx=27 gy=39 esi=1ce91508 +BR ret=0 +BC did=abc3ffff gx=27 gy=40 esi=1ce929c0 +BR ret=0 +BC did=abc4ffff gx=27 gy=41 esi=1ce91778 +BR ret=0 +BC did=abc5ffff gx=27 gy=42 esi=1ce92750 +BR ret=0 +BC did=abc6ffff gx=27 gy=43 esi=1ce918b0 +BR ret=1 +BC did=abc7ffff gx=27 gy=44 esi=1ce92af8 +BR ret=1 +BC did=abc8ffff gx=27 gy=45 esi=1ce924e0 +BR ret=1 +BC did=abc9ffff gx=27 gy=46 esi=1ce92fd8 +BR ret=1 +BC did=abcaffff gx=27 gy=47 esi=1ce92d68 +BR ret=1 +BC did=abcbffff gx=27 gy=48 esi=1ce92000 +BR ret=1 +BC did=abccffff gx=27 gy=49 esi=1ce90a10 +BR ret=1 +BC did=abcdffff gx=27 gy=50 esi=1ce90c80 +BR ret=1 +BC did=ac9bffff gx=28 gy=0 esi=1ce91b20 +BR ret=0 +BC did=ac9cffff gx=28 gy=1 esi=1ce90db8 +BR ret=0 +BC did=ac9dffff gx=28 gy=2 esi=1ce91c58 +BR ret=0 +BC did=ac9effff gx=28 gy=3 esi=1ce91ec8 +BR ret=0 +BC did=ac9fffff gx=28 gy=4 esi=1ce92138 +BR ret=0 +BC did=aca0ffff gx=28 gy=5 esi=1ce92270 +BR ret=0 +BC did=aca1ffff gx=28 gy=6 esi=1ce93860 +BR ret=0 +BC did=aca2ffff gx=28 gy=7 esi=1ce94358 +BR ret=0 +BC did=aca3ffff gx=28 gy=8 esi=1ce93728 +BR ret=0 +BC did=aca4ffff gx=28 gy=9 esi=1ce94d18 +BR ret=0 +BC did=aca5ffff gx=28 gy=10 esi=1ce95330 +BR ret=0 +BC did=aca6ffff gx=28 gy=11 esi=1ce93998 +BR ret=0 +BC did=aca7ffff gx=28 gy=12 esi=1ce94aa8 +BR ret=0 +BC did=aca8ffff gx=28 gy=13 esi=1ce94490 +BR ret=0 +BC did=aca9ffff gx=28 gy=14 esi=1ce94700 +BR ret=0 +BC did=acaaffff gx=28 gy=15 esi=1ce93e78 +BR ret=0 +BC did=acabffff gx=28 gy=16 esi=1ce93ad0 +BR ret=0 +BC did=acacffff gx=28 gy=17 esi=1ce95468 +BR ret=0 +BC did=acadffff gx=28 gy=18 esi=1ce93c08 +BR ret=0 +BC did=acaeffff gx=28 gy=19 esi=1ce955a0 +BR ret=0 +BC did=acafffff gx=28 gy=20 esi=1ce94be0 +BR ret=0 +BC did=acb0ffff gx=28 gy=21 esi=1ce94970 +BR ret=0 +BC did=acb1ffff gx=28 gy=22 esi=1ce94e50 +BR ret=0 +BC did=acb2ffff gx=28 gy=23 esi=1ce94f88 +BR ret=0 +BC did=acb3ffff gx=28 gy=24 esi=1ce950c0 +BR ret=0 +BC did=acb4ffff gx=28 gy=25 esi=1ce93fb0 +BR ret=0 +BC did=acb5ffff gx=28 gy=26 esi=1ce93d40 +BR ret=0 +BC did=acb6ffff gx=28 gy=27 esi=1ce951f8 +BR ret=0 +BC did=acb7ffff gx=28 gy=28 esi=1ce956d8 +BR ret=0 +BC did=acb8ffff gx=28 gy=29 esi=1ce940e8 +BR ret=0 +BC did=acb9ffff gx=28 gy=30 esi=1ce93110 +BR ret=0 +BC did=acbaffff gx=28 gy=31 esi=1ce945c8 +BR ret=0 +BC did=acbbffff gx=28 gy=32 esi=1ce94838 +BR ret=0 +BC did=acbcffff gx=28 gy=33 esi=1ce94220 +BR ret=0 +BC did=acbdffff gx=28 gy=34 esi=1ce93248 +BR ret=0 +BC did=acbeffff gx=28 gy=35 esi=1ce93380 +BR ret=0 +BC did=acbfffff gx=28 gy=36 esi=1ce934b8 +BR ret=0 +BC did=acc0ffff gx=28 gy=37 esi=1ce935f0 +BR ret=0 +BC did=acc1ffff gx=28 gy=38 esi=1ce95f60 +BR ret=0 +BC did=acc2ffff gx=28 gy=39 esi=1ce96b90 +BR ret=0 +BC did=acc3ffff gx=28 gy=40 esi=1ce95948 +BR ret=0 +BC did=acc4ffff gx=28 gy=41 esi=1ce96578 +BR ret=0 +BC did=acc5ffff gx=28 gy=42 esi=1ce97a30 +BR ret=0 +BC did=acc6ffff gx=28 gy=43 esi=1ce96098 +BR ret=0 +BC did=acc7ffff gx=28 gy=44 esi=1ce97ca0 +BR ret=0 +BC did=acc8ffff gx=28 gy=45 esi=1ce978f8 +BR ret=0 +BC did=acc9ffff gx=28 gy=46 esi=1ce97550 +BR ret=0 +BC did=accaffff gx=28 gy=47 esi=1ce97418 +BR ret=0 +BC did=accbffff gx=28 gy=48 esi=1ce95810 +BR ret=0 +BC did=acccffff gx=28 gy=49 esi=1ce95cf0 +BR ret=0 +BC did=accdffff gx=28 gy=50 esi=1ce96a58 +BR ret=0 +BC did=ad9bffff gx=29 gy=0 esi=1ce96cc8 +BR ret=0 +BC did=ad9cffff gx=29 gy=1 esi=1ce977c0 +BR ret=0 +BC did=ad9dffff gx=29 gy=2 esi=1ce97688 +BR ret=0 +BC did=ad9effff gx=29 gy=3 esi=1ce97070 +BR ret=0 +BC did=ad9fffff gx=29 gy=4 esi=1ce95bb8 +BR ret=0 +BC did=ada0ffff gx=29 gy=5 esi=1ce971a8 +BR ret=0 +BC did=ada1ffff gx=29 gy=6 esi=1ce97b68 +BR ret=0 +BC did=ada2ffff gx=29 gy=7 esi=1ce95a80 +BR ret=0 +BC did=ada3ffff gx=29 gy=8 esi=1ce96e00 +BR ret=0 +BC did=ada4ffff gx=29 gy=9 esi=1ce961d0 +BR ret=0 +BC did=ada5ffff gx=29 gy=10 esi=1ce96308 +BR ret=0 +BC did=ada6ffff gx=29 gy=11 esi=1ce95e28 +BR ret=0 +BC did=ada7ffff gx=29 gy=12 esi=1ce97dd8 +BR ret=0 +BC did=ada8ffff gx=29 gy=13 esi=1ce972e0 +BR ret=0 +BC did=ada9ffff gx=29 gy=14 esi=1ce96440 +BR ret=0 +BC did=adaaffff gx=29 gy=15 esi=1ce966b0 +BR ret=0 +BC did=adabffff gx=29 gy=16 esi=1ce967e8 +BR ret=0 +BC did=adacffff gx=29 gy=17 esi=1ce96920 +BR ret=0 +BC did=adadffff gx=29 gy=18 esi=1ce96f38 +BR ret=0 +BC did=adaeffff gx=29 gy=19 esi=1ce99500 +BR ret=0 +BC did=adafffff gx=29 gy=20 esi=1ce9a130 +BR ret=0 +BC did=adb0ffff gx=29 gy=21 esi=1ce99ff8 +BR ret=0 +BC did=adb1ffff gx=29 gy=22 esi=1ce98a08 +BR ret=0 +BC did=adb2ffff gx=29 gy=23 esi=1ce99d88 +BR ret=0 +BC did=adb3ffff gx=29 gy=24 esi=1ce99290 +BR ret=0 +BC did=adb4ffff gx=29 gy=25 esi=1ce99b18 +BR ret=0 +BC did=adb5ffff gx=29 gy=26 esi=1ce98b40 +BR ret=0 +BC did=adb6ffff gx=29 gy=27 esi=1ce988d0 +BR ret=0 +BC did=adb7ffff gx=29 gy=28 esi=1ce99ec0 +BR ret=0 +BC did=adb8ffff gx=29 gy=29 esi=1ce98180 +BR ret=0 +BC did=adb9ffff gx=29 gy=30 esi=1ce9a268 +BR ret=0 +BC did=adbaffff gx=29 gy=31 esi=1ce98660 +BR ret=0 +BC did=adbbffff gx=29 gy=32 esi=1ce9a3a0 +BR ret=0 +BC did=adbcffff gx=29 gy=33 esi=1ce999e0 +BR ret=0 +BC did=adbdffff gx=29 gy=34 esi=1ce9a4d8 +BR ret=0 +BC did=adbeffff gx=29 gy=35 esi=1ce97f10 +BR ret=0 +BC did=adbfffff gx=29 gy=36 esi=1ce99c50 +BR ret=0 +BC did=adc0ffff gx=29 gy=37 esi=1ce98798 +BR ret=0 +BC did=adc1ffff gx=29 gy=38 esi=1ce98048 +BR ret=0 +BC did=adc2ffff gx=29 gy=39 esi=1ce982b8 +BR ret=0 +BC did=adc3ffff gx=29 gy=40 esi=1ce983f0 +BR ret=0 +BC did=adc4ffff gx=29 gy=41 esi=1ce98528 +BR ret=0 +BC did=adc5ffff gx=29 gy=42 esi=1ce98c78 +BR ret=0 +BC did=adc6ffff gx=29 gy=43 esi=1ce98db0 +BR ret=0 +BC did=adc7ffff gx=29 gy=44 esi=1ce98ee8 +BR ret=0 +BC did=adc8ffff gx=29 gy=45 esi=1ce99020 +BR ret=0 +BC did=adc9ffff gx=29 gy=46 esi=1ce99158 +BR ret=0 +BC did=adcaffff gx=29 gy=47 esi=1ce99638 +BR ret=0 +BC did=adcbffff gx=29 gy=48 esi=1ce993c8 +BR ret=0 +BC did=adccffff gx=29 gy=49 esi=1ce99770 +BR ret=0 +BC did=adcdffff gx=29 gy=50 esi=1ce998a8 +BR ret=0 +BC did=ae9bffff gx=30 gy=0 esi=1ce9b5e8 +BR ret=0 +BC did=ae9cffff gx=30 gy=1 esi=1ce9ae98 +BR ret=0 +BC did=ae9dffff gx=30 gy=2 esi=1ce9caa0 +BR ret=0 +BC did=ae9effff gx=30 gy=3 esi=1ce9c6f8 +BR ret=0 +BC did=ae9fffff gx=30 gy=4 esi=1ce9b4b0 +BR ret=0 +BC did=aea0ffff gx=30 gy=5 esi=1ce9c5c0 +BR ret=0 +BC did=aea1ffff gx=30 gy=6 esi=1ce9bfa8 +BR ret=0 +BC did=aea2ffff gx=30 gy=7 esi=1ce9cbd8 +BR ret=0 +BC did=aea3ffff gx=30 gy=8 esi=1ce9c350 +BR ret=0 +BC did=aea4ffff gx=30 gy=9 esi=1ce9bc00 +BR ret=0 +BC did=aea5ffff gx=30 gy=10 esi=1ce9c830 +BR ret=0 +BC did=aea6ffff gx=30 gy=11 esi=1ce9c968 +BR ret=0 +BC did=aea7ffff gx=30 gy=12 esi=1ce9afd0 +BR ret=0 +BC did=aea8ffff gx=30 gy=13 esi=1ce9bd38 +BR ret=0 +BC did=aea9ffff gx=30 gy=14 esi=1ce9a610 +BR ret=0 +BC did=aeaaffff gx=30 gy=15 esi=1ce9b108 +BR ret=0 +BC did=aeabffff gx=30 gy=16 esi=1ce9a748 +BR ret=0 +BC did=aeacffff gx=30 gy=17 esi=1ce9a880 +BR ret=0 +BC did=aeadffff gx=30 gy=18 esi=1ce9b240 +BR ret=0 +BC did=aeaeffff gx=30 gy=19 esi=1ce9a9b8 +BR ret=0 +BC did=aeafffff gx=30 gy=20 esi=1ce9b720 +BR ret=0 +BC did=aeb0ffff gx=30 gy=21 esi=1ce9b378 +BR ret=0 +BC did=aeb1ffff gx=30 gy=22 esi=1ce9aaf0 +BR ret=0 +BC did=aeb2ffff gx=30 gy=23 esi=1ce9be70 +BR ret=0 +BC did=aeb3ffff gx=30 gy=24 esi=1ce9b858 +BR ret=0 +BC did=aeb4ffff gx=30 gy=25 esi=1ce9ac28 +BR ret=0 +BC did=aeb5ffff gx=30 gy=26 esi=1ce9b990 +BR ret=0 +BC did=aeb6ffff gx=30 gy=27 esi=1ce9bac8 +BR ret=0 +BC did=aeb7ffff gx=30 gy=28 esi=1ce9c0e0 +BR ret=0 +BC did=aeb8ffff gx=30 gy=29 esi=1ce9c218 +BR ret=0 +BC did=aeb9ffff gx=30 gy=30 esi=1ce9c488 +BR ret=0 +BC did=aebaffff gx=30 gy=31 esi=1ce9ad60 +BR ret=0 +BC did=aebbffff gx=30 gy=32 esi=1ce9ea50 +BR ret=0 +BC did=aebcffff gx=30 gy=33 esi=1ce9dbb0 +BR ret=0 +BC did=aebdffff gx=30 gy=34 esi=1ce9ecc0 +BR ret=0 +BC did=aebeffff gx=30 gy=35 esi=1ce9df58 +BR ret=0 +BC did=aebfffff gx=30 gy=36 esi=1ce9e090 +BR ret=0 +BC did=aec0ffff gx=30 gy=37 esi=1ce9e1c8 +BR ret=0 +BC did=aec1ffff gx=30 gy=38 esi=1ce9d0b8 +BR ret=0 +BC did=aec2ffff gx=30 gy=39 esi=1ce9e300 +BR ret=0 +BC did=aec3ffff gx=30 gy=40 esi=1ce9d808 +BR ret=0 +BC did=aec4ffff gx=30 gy=41 esi=1ce9e570 +BR ret=0 +BC did=aec5ffff gx=30 gy=42 esi=1ce9de20 +BR ret=0 +BC did=aec6ffff gx=30 gy=43 esi=1ce9d940 +BR ret=0 +BC did=aec7ffff gx=30 gy=44 esi=1ce9cd10 +BR ret=0 +BC did=aec8ffff gx=30 gy=45 esi=1ce9d6d0 +BR ret=0 +BC did=aec9ffff gx=30 gy=46 esi=1ce9cf80 +BR ret=0 +BC did=aecaffff gx=30 gy=47 esi=1ce9edf8 +BR ret=0 +BC did=aecbffff gx=30 gy=48 esi=1ce9da78 +BR ret=0 +BC did=aeccffff gx=30 gy=49 esi=1ce9ce48 +BR ret=0 +BC did=aecdffff gx=30 gy=50 esi=1ce9d598 +BR ret=0 +BC did=af9bffff gx=31 gy=0 esi=1ce9dce8 +BR ret=0 +BC did=af9cffff gx=31 gy=1 esi=1ce9e438 +BR ret=0 +BC did=af9dffff gx=31 gy=2 esi=1ce9e6a8 +BR ret=0 +BC did=af9effff gx=31 gy=3 esi=1ce9d1f0 +BR ret=0 +BC did=af9fffff gx=31 gy=4 esi=1ce9e7e0 +BR ret=0 +BC did=afa0ffff gx=31 gy=5 esi=1ce9d328 +BR ret=0 +BC did=afa1ffff gx=31 gy=6 esi=1ce9e918 +BR ret=0 +BC did=afa2ffff gx=31 gy=7 esi=1ce9d460 +BR ret=0 +BC did=afa3ffff gx=31 gy=8 esi=1ce9eb88 +BR ret=0 +BC did=afa4ffff gx=31 gy=9 esi=1ce9ef30 +BR ret=0 +BC did=afa5ffff gx=31 gy=10 esi=1ce9f2d8 +BR ret=0 +BC did=afa6ffff gx=31 gy=11 esi=1ce9f068 +BR ret=0 +BC did=afa7ffff gx=31 gy=12 esi=1ce9f1a0 +BR ret=0 +BC did=afa8ffff gx=31 gy=13 esi=1ce9fb60 +BR ret=0 +BC did=afa9ffff gx=31 gy=14 esi=1ce9f548 +BR ret=0 +BC did=afaaffff gx=31 gy=15 esi=1ce9f8f0 +BR ret=0 +BC did=afabffff gx=31 gy=16 esi=1cea1150 +BR ret=0 +BC did=afacffff gx=31 gy=17 esi=1cea13c0 +BR ret=0 +BC did=afadffff gx=31 gy=18 esi=1cea1288 +BR ret=0 +BC did=afaeffff gx=31 gy=19 esi=1cea0c70 +BR ret=0 +BC did=afafffff gx=31 gy=20 esi=1cea18a0 +BR ret=0 +BC did=afb0ffff gx=31 gy=21 esi=1cea0ee0 +BR ret=0 +BC did=afb1ffff gx=31 gy=22 esi=1cea0da8 +BR ret=0 +BC did=afb2ffff gx=31 gy=23 esi=1cea1018 +BR ret=0 +BC did=afb3ffff gx=31 gy=24 esi=1cea14f8 +BR ret=0 +BC did=afb4ffff gx=31 gy=25 esi=1cea1630 +BR ret=0 +BC did=afb5ffff gx=31 gy=26 esi=1cea02b0 +BR ret=0 +BC did=afb6ffff gx=31 gy=27 esi=1ce9ff08 +BR ret=0 +BC did=afb7ffff gx=31 gy=28 esi=1cea0b38 +BR ret=0 +BC did=afb8ffff gx=31 gy=29 esi=1ce9f7b8 +BR ret=0 +BC did=afb9ffff gx=31 gy=30 esi=1cea0a00 +BR ret=0 +BC did=afbaffff gx=31 gy=31 esi=1cea0178 +BR ret=0 +BC did=afbbffff gx=31 gy=32 esi=1cea1768 +BR ret=0 +BC did=afbcffff gx=31 gy=33 esi=1cea19d8 +BR ret=0 +BC did=afbdffff gx=31 gy=34 esi=1ce9f410 +BR ret=0 +BC did=afbeffff gx=31 gy=35 esi=1ce9f680 +BR ret=0 +BC did=afbfffff gx=31 gy=36 esi=1ce9fa28 +BR ret=0 +BC did=afc0ffff gx=31 gy=37 esi=1ce9fc98 +BR ret=0 +BC did=afc1ffff gx=31 gy=38 esi=1ce9fdd0 +BR ret=0 +BC did=afc2ffff gx=31 gy=39 esi=1cea0040 +BR ret=0 +BC did=afc3ffff gx=31 gy=40 esi=1cea03e8 +BR ret=0 +BC did=afc4ffff gx=31 gy=41 esi=1cea0520 +BR ret=0 +BC did=afc5ffff gx=31 gy=42 esi=1cea0658 +BR ret=0 +BC did=afc6ffff gx=31 gy=43 esi=1cea0790 +BR ret=0 +BC did=afc7ffff gx=31 gy=44 esi=1cea08c8 +BR ret=0 +BC did=afc8ffff gx=31 gy=45 esi=1cea3fa0 +BR ret=0 +BC did=afc9ffff gx=31 gy=46 esi=1cea3bf8 +BR ret=0 +BC did=afcaffff gx=31 gy=47 esi=1cea35e0 +BR ret=0 +BC did=afcbffff gx=31 gy=48 esi=1cea2ae8 +BR ret=0 +BC did=afccffff gx=31 gy=49 esi=1cea1eb8 +BR ret=0 +BC did=afcdffff gx=31 gy=50 esi=1cea34a8 +BR ret=0 +BC did=b09bffff gx=32 gy=0 esi=1cea3718 +BR ret=0 +BC did=b09cffff gx=32 gy=1 esi=1cea3e68 +BR ret=0 +BC did=b09dffff gx=32 gy=2 esi=1cea3988 +BR ret=0 +BC did=b09effff gx=32 gy=3 esi=1cea40d8 +BR ret=0 +BC did=b09fffff gx=32 gy=4 esi=1cea3d30 +BR ret=0 +BC did=b0a0ffff gx=32 gy=5 esi=1cea1b10 +BR ret=0 +BC did=b0a1ffff gx=32 gy=6 esi=1cea1c48 +BR ret=0 +BC did=b0a2ffff gx=32 gy=7 esi=1cea3238 +BR ret=0 +BC did=b0a3ffff gx=32 gy=8 esi=1cea1d80 +BR ret=0 +BC did=b0a4ffff gx=32 gy=9 esi=1cea2d58 +BR ret=0 +BC did=b0a5ffff gx=32 gy=10 esi=1cea2c20 +BR ret=0 +BC did=b0a6ffff gx=32 gy=11 esi=1cea2878 +BR ret=0 +BC did=b0a7ffff gx=32 gy=12 esi=1cea29b0 +BR ret=0 +BC did=b0a8ffff gx=32 gy=13 esi=1cea1ff0 +BR ret=0 +BC did=b0a9ffff gx=32 gy=14 esi=1cea2740 +BR ret=0 +BC did=b0aaffff gx=32 gy=15 esi=1cea3850 +BR ret=0 +BC did=b0abffff gx=32 gy=16 esi=1cea2e90 +BR ret=0 +BC did=b0acffff gx=32 gy=17 esi=1cea2260 +BR ret=0 +BC did=b0adffff gx=32 gy=18 esi=1cea2fc8 +BR ret=0 +BC did=b0aeffff gx=32 gy=19 esi=1cea2128 +BR ret=0 +BC did=b0afffff gx=32 gy=20 esi=1cea3370 +BR ret=0 +BC did=b0b0ffff gx=32 gy=21 esi=1cea3ac0 +BR ret=0 +BC did=b0b1ffff gx=32 gy=22 esi=1cea3100 +BR ret=0 +BC did=b0b2ffff gx=32 gy=23 esi=1cea2398 +BR ret=0 +BC did=b0b3ffff gx=32 gy=24 esi=1cea24d0 +BR ret=0 +BC did=b0b4ffff gx=32 gy=25 esi=1cea2608 +BR ret=0 +BC did=b0b5ffff gx=32 gy=26 esi=1cea6568 +BR ret=0 +BC did=b0b6ffff gx=32 gy=27 esi=1cea66a0 +BR ret=0 +BC did=b0b7ffff gx=32 gy=28 esi=1cea46f0 +BR ret=0 +BC did=b0b8ffff gx=32 gy=29 esi=1cea4828 +BR ret=0 +BC did=b0b9ffff gx=32 gy=30 esi=1cea5f50 +BR ret=0 +BC did=b0baffff gx=32 gy=31 esi=1cea4a98 +BR ret=0 +BC did=b0bbffff gx=32 gy=32 esi=1cea4210 +BR ret=0 +BC did=b0bcffff gx=32 gy=33 esi=1cea5938 +BR ret=0 +BC did=b0bdffff gx=32 gy=34 esi=1cea4960 +BR ret=0 +BC did=b0beffff gx=32 gy=35 esi=1cea4f78 +BR ret=0 +BC did=b0bfffff gx=32 gy=36 esi=1cea4d08 +BR ret=0 +BC did=b0c0ffff gx=32 gy=37 esi=1cea4bd0 +BR ret=0 +BC did=b0c1ffff gx=32 gy=38 esi=1cea5ba8 +BR ret=0 +BC did=b0c2ffff gx=32 gy=39 esi=1cea4e40 +BR ret=0 +BC did=b0c3ffff gx=32 gy=40 esi=1cea5320 +BR ret=0 +BC did=b0c4ffff gx=32 gy=41 esi=1cea4480 +BR ret=0 +BC did=b0c5ffff gx=32 gy=42 esi=1cea4348 +BR ret=0 +BC did=b0c6ffff gx=32 gy=43 esi=1cea50b0 +BR ret=0 +BC did=b0c7ffff gx=32 gy=44 esi=1cea45b8 +BR ret=0 +BC did=b0c8ffff gx=32 gy=45 esi=1cea51e8 +BR ret=0 +BC did=b0c9ffff gx=32 gy=46 esi=1cea5ce0 +BR ret=0 +BC did=b0caffff gx=32 gy=47 esi=1cea5458 +BR ret=0 +BC did=b0cbffff gx=32 gy=48 esi=1cea5e18 +BR ret=0 +BC did=b0ccffff gx=32 gy=49 esi=1cea5590 +BR ret=0 +BC did=b0cdffff gx=32 gy=50 esi=1cea56c8 +BR ret=0 +BC did=b19bffff gx=33 gy=0 esi=1cea6088 +BR ret=0 +BC did=b19cffff gx=33 gy=1 esi=1cea5800 +BR ret=0 +BC did=b19dffff gx=33 gy=2 esi=1cea67d8 +BR ret=0 +BC did=b19effff gx=33 gy=3 esi=1cea5a70 +BR ret=0 +BC did=b19fffff gx=33 gy=4 esi=1cea62f8 +BR ret=0 +BC did=b1a0ffff gx=33 gy=5 esi=1cea61c0 +BR ret=0 +BC did=b1a1ffff gx=33 gy=6 esi=1cea6430 +BR ret=0 +BC did=b1a2ffff gx=33 gy=7 esi=1cea6df0 +BR ret=0 +BC did=b1a3ffff gx=33 gy=8 esi=1cea8650 +BR ret=0 +BC did=b1a4ffff gx=33 gy=9 esi=1cea8b30 +BR ret=0 +BC did=b1a5ffff gx=33 gy=10 esi=1cea8ed8 +BR ret=0 +BC did=b1a6ffff gx=33 gy=11 esi=1cea7dc8 +BR ret=0 +BC did=b1a7ffff gx=33 gy=12 esi=1cea78e8 +BR ret=0 +BC did=b1a8ffff gx=33 gy=13 esi=1cea6a48 +BR ret=0 +BC did=b1a9ffff gx=33 gy=14 esi=1cea7f00 +BR ret=0 +BC did=b1aaffff gx=33 gy=15 esi=1cea6cb8 +BR ret=0 +BC did=b1abffff gx=33 gy=16 esi=1cea7b58 +BR ret=0 +BC did=b1acffff gx=33 gy=17 esi=1cea7540 +BR ret=0 +BC did=b1adffff gx=33 gy=18 esi=1cea7678 +BR ret=0 +BC did=b1aeffff gx=33 gy=19 esi=1cea8c68 +BR ret=0 +BC did=b1afffff gx=33 gy=20 esi=1cea6910 +BR ret=0 +BC did=b1b0ffff gx=33 gy=21 esi=1cea8038 +BR ret=0 +BC did=b1b1ffff gx=33 gy=22 esi=1cea7a20 +BR ret=0 +BC did=b1b2ffff gx=33 gy=23 esi=1cea6b80 +BR ret=0 +BC did=b1b3ffff gx=33 gy=24 esi=1cea8170 +BR ret=0 +BC did=b1b4ffff gx=33 gy=25 esi=1cea6f28 +BR ret=0 +BC did=b1b5ffff gx=33 gy=26 esi=1cea7c90 +BR ret=0 +BC did=b1b6ffff gx=33 gy=27 esi=1cea7060 +BR ret=0 +BC did=b1b7ffff gx=33 gy=28 esi=1cea82a8 +BR ret=0 +BC did=b1b8ffff gx=33 gy=29 esi=1cea7198 +BR ret=0 +BC did=b1b9ffff gx=33 gy=30 esi=1cea77b0 +BR ret=0 +BC did=b1baffff gx=33 gy=31 esi=1cea83e0 +BR ret=0 +BC did=b1bbffff gx=33 gy=32 esi=1cea8518 +BR ret=0 +BC did=b1bcffff gx=33 gy=33 esi=1cea8788 +BR ret=0 +BC did=b1bdffff gx=33 gy=34 esi=1cea7408 +BR ret=0 +BC did=b1beffff gx=33 gy=35 esi=1cea88c0 +BR ret=0 +BC did=b1bfffff gx=33 gy=36 esi=1cea72d0 +BR ret=0 +BC did=b1c0ffff gx=33 gy=37 esi=1cea89f8 +BR ret=0 +BC did=b1c1ffff gx=33 gy=38 esi=1cea8da0 +BR ret=0 +BC did=b1c2ffff gx=33 gy=39 esi=1ceaafc0 +BR ret=0 +BC did=b1c3ffff gx=33 gy=40 esi=1ceaa258 +BR ret=0 +BC did=b1c4ffff gx=33 gy=41 esi=1ceaa390 +BR ret=0 +BC did=b1c5ffff gx=33 gy=42 esi=1ceaa4c8 +BR ret=0 +BC did=b1c6ffff gx=33 gy=43 esi=1ceaa600 +BR ret=0 +BC did=b1c7ffff gx=33 gy=44 esi=1cea93b8 +BR ret=0 +BC did=b1c8ffff gx=33 gy=45 esi=1ceab230 +BR ret=0 +BC did=b1c9ffff gx=33 gy=46 esi=1cea94f0 +BR ret=0 +BC did=b1caffff gx=33 gy=47 esi=1cea9628 +BR ret=0 +BC did=b1cbffff gx=33 gy=48 esi=1ceab5d8 +BR ret=0 +BC did=b1ccffff gx=33 gy=49 esi=1ceaa738 +BR ret=0 +BC did=b1cdffff gx=33 gy=50 esi=1ceab0f8 +BR ret=0 +BC did=b29bffff gx=34 gy=0 esi=1cea9760 +BR ret=0 +BC did=b29cffff gx=34 gy=1 esi=1ceab368 +BR ret=0 +BC did=b29dffff gx=34 gy=2 esi=1ceaa870 +BR ret=0 +BC did=b29effff gx=34 gy=3 esi=1cea9898 +BR ret=0 +BC did=b29fffff gx=34 gy=4 esi=1ceaa9a8 +BR ret=0 +BC did=b2a0ffff gx=34 gy=5 esi=1cea9d78 +BR ret=0 +BC did=b2a1ffff gx=34 gy=6 esi=1ceaaae0 +BR ret=0 +BC did=b2a2ffff gx=34 gy=7 esi=1cea99d0 +BR ret=0 +BC did=b2a3ffff gx=34 gy=8 esi=1cea9280 +BR ret=0 +BC did=b2a4ffff gx=34 gy=9 esi=1cea9b08 +BR ret=0 +BC did=b2a5ffff gx=34 gy=10 esi=1cea9010 +BR ret=0 +BC did=b2a6ffff gx=34 gy=11 esi=1cea9148 +BR ret=0 +BC did=b2a7ffff gx=34 gy=12 esi=1cea9c40 +BR ret=0 +BC did=b2a8ffff gx=34 gy=13 esi=1cea9eb0 +BR ret=0 +BC did=b2a9ffff gx=34 gy=14 esi=1cea9fe8 +BR ret=0 +BC did=b2aaffff gx=34 gy=15 esi=1ceaac18 +BR ret=0 +BC did=b2abffff gx=34 gy=16 esi=1ceaa120 +BR ret=0 +BC did=b2acffff gx=34 gy=17 esi=1ceab4a0 +BR ret=0 +BC did=b2adffff gx=34 gy=18 esi=1ceaad50 +BR ret=0 +BC did=b2aeffff gx=34 gy=19 esi=1ceaae88 +BR ret=0 +BC did=b2afffff gx=34 gy=20 esi=1ceadcd8 +BR ret=0 +BC did=b2b0ffff gx=34 gy=21 esi=1ceace38 +BR ret=0 +BC did=b2b1ffff gx=34 gy=22 esi=1cead7f8 +BR ret=0 +BC did=b2b2ffff gx=34 gy=23 esi=1ceabe60 +BR ret=0 +BC did=b2b3ffff gx=34 gy=24 esi=1ceab848 +BR ret=0 +BC did=b2b4ffff gx=34 gy=25 esi=1ceac340 +BR ret=0 +BC did=b2b5ffff gx=34 gy=26 esi=1ceab710 +BR ret=0 +BC did=b2b6ffff gx=34 gy=27 esi=1ceabf98 +BR ret=0 +BC did=b2b7ffff gx=34 gy=28 esi=1ceac0d0 +BR ret=0 +BC did=b2b8ffff gx=34 gy=29 esi=1ceabbf0 +BR ret=0 +BC did=b2b9ffff gx=34 gy=30 esi=1ceabab8 +BR ret=0 +BC did=b2baffff gx=34 gy=31 esi=1ceab980 +BR ret=0 +BC did=b2bbffff gx=34 gy=32 esi=1ceacbc8 +BR ret=0 +BC did=b2bcffff gx=34 gy=33 esi=1ceabd28 +BR ret=0 +BC did=b2bdffff gx=34 gy=34 esi=1ceac958 +BR ret=0 +BC did=b2beffff gx=34 gy=35 esi=1ceac208 +BR ret=0 +BC did=b2bfffff gx=34 gy=36 esi=1ceacf70 +BR ret=0 +BC did=b2c0ffff gx=34 gy=37 esi=1ceac478 +BR ret=0 +BC did=b2c1ffff gx=34 gy=38 esi=1ceac5b0 +BR ret=0 +BC did=b2c2ffff gx=34 gy=39 esi=1cead0a8 +BR ret=0 +BC did=b2c3ffff gx=34 gy=40 esi=1ceac820 +BR ret=0 +BC did=b2c4ffff gx=34 gy=41 esi=1ceac6e8 +BR ret=0 +BC did=b2c5ffff gx=34 gy=42 esi=1ceaca90 +BR ret=0 +BC did=b2c6ffff gx=34 gy=43 esi=1ceacd00 +BR ret=0 +BC did=b2c7ffff gx=34 gy=44 esi=1cead1e0 +BR ret=0 +BC did=b2c8ffff gx=34 gy=45 esi=1cead6c0 +BR ret=0 +BC did=b2c9ffff gx=34 gy=46 esi=1cead318 +BR ret=0 +BC did=b2caffff gx=34 gy=47 esi=1cead450 +BR ret=0 +BC did=b2cbffff gx=34 gy=48 esi=1cead930 +BR ret=0 +BC did=b2ccffff gx=34 gy=49 esi=1cead588 +BR ret=0 +BC did=b2cdffff gx=34 gy=50 esi=1ceada68 +BR ret=0 +BC did=b39bffff gx=35 gy=0 esi=1ceadba0 +BR ret=0 +BC did=b39cffff gx=35 gy=1 esi=1ceaf2c8 +BR ret=0 +BC did=b39dffff gx=35 gy=2 esi=1ceaf400 +BR ret=0 +BC did=b39effff gx=35 gy=3 esi=1ceb02a0 +BR ret=0 +BC did=b39fffff gx=35 gy=4 esi=1ceafc88 +BR ret=0 +BC did=b3a0ffff gx=35 gy=5 esi=1ceae560 +BR ret=0 +BC did=b3a1ffff gx=35 gy=6 esi=1ceaf538 +BR ret=0 +BC did=b3a2ffff gx=35 gy=7 esi=1ceaf8e0 +BR ret=0 +BC did=b3a3ffff gx=35 gy=8 esi=1ceaede8 +BR ret=0 +BC did=b3a4ffff gx=35 gy=9 esi=1ceae1b8 +BR ret=0 +BC did=b3a5ffff gx=35 gy=10 esi=1ceaf7a8 +BR ret=0 +BC did=b3a6ffff gx=35 gy=11 esi=1ceafa18 +BR ret=0 +BC did=b3a7ffff gx=35 gy=12 esi=1ceadf48 +BR ret=0 +BC did=b3a8ffff gx=35 gy=13 esi=1ceae698 +BR ret=0 +BC did=b3a9ffff gx=35 gy=14 esi=1ceaef20 +BR ret=0 +BC did=b3aaffff gx=35 gy=15 esi=1ceafb50 +BR ret=0 +BC did=b3abffff gx=35 gy=16 esi=1ceae2f0 +BR ret=0 +BC did=b3acffff gx=35 gy=17 esi=1ceb03d8 +BR ret=0 +BC did=b3adffff gx=35 gy=18 esi=1ceaf670 +BR ret=0 +BC did=b3aeffff gx=35 gy=19 esi=1ceafdc0 +BR ret=0 +BC did=b3afffff gx=35 gy=20 esi=1ceaeb78 +BR ret=0 +BC did=b3b0ffff gx=35 gy=21 esi=1ceae428 +BR ret=0 +BC did=b3b1ffff gx=35 gy=22 esi=1ceaf058 +BR ret=0 +BC did=b3b2ffff gx=35 gy=23 esi=1ceaf190 +BR ret=0 +BC did=b3b3ffff gx=35 gy=24 esi=1ceaea40 +BR ret=0 +BC did=b3b4ffff gx=35 gy=25 esi=1ceade10 +BR ret=0 +BC did=b3b5ffff gx=35 gy=26 esi=1ceae7d0 +BR ret=0 +BC did=b3b6ffff gx=35 gy=27 esi=1ceae080 +BR ret=0 +BC did=b3b7ffff gx=35 gy=28 esi=1ceafef8 +BR ret=0 +BC did=b3b8ffff gx=35 gy=29 esi=1ceaecb0 +BR ret=0 +BC did=b3b9ffff gx=35 gy=30 esi=1ceae908 +BR ret=0 +BC did=b3baffff gx=35 gy=31 esi=1ceb0030 +BR ret=0 +BC did=b3bbffff gx=35 gy=32 esi=1ceb0168 +BR ret=0 +BC did=b3bcffff gx=35 gy=33 esi=1ceb0648 +BR ret=0 +BC did=b3bdffff gx=35 gy=34 esi=1ceb0780 +BR ret=0 +BC did=b3beffff gx=35 gy=35 esi=1ceb08b8 +BR ret=0 +BC did=b3bfffff gx=35 gy=36 esi=1ceb0c60 +BR ret=0 +BC did=b3c0ffff gx=35 gy=37 esi=1ceb0d98 +BR ret=0 +BC did=b3c1ffff gx=35 gy=38 esi=1ceb09f0 +BR ret=0 +BC did=b3c2ffff gx=35 gy=39 esi=1ceb0b28 +BR ret=0 +BC did=b3c3ffff gx=35 gy=40 esi=1ceb0ed0 +BR ret=0 +BC did=b3c4ffff gx=35 gy=41 esi=1ceb0510 +BR ret=0 +BC did=b3c5ffff gx=35 gy=42 esi=1ce71798 +BR ret=0 +BC did=b3c6ffff gx=35 gy=43 esi=1ce72020 +BR ret=0 +BC did=b3c7ffff gx=35 gy=44 esi=1ce72158 +BR ret=0 +BC did=b3c8ffff gx=35 gy=45 esi=1ce72d88 +BR ret=0 +BC did=b3c9ffff gx=35 gy=46 esi=1ce71a08 +BR ret=0 +BC did=b3caffff gx=35 gy=47 esi=1ce72290 +BR ret=0 +BC did=b3cbffff gx=35 gy=48 esi=1ce73268 +BR ret=0 +BC did=b3ccffff gx=35 gy=49 esi=1ce70f10 +BR ret=0 +BC did=b3cdffff gx=35 gy=50 esi=1ce71660 +BR ret=0 +BC did=b49bffff gx=36 gy=0 esi=1ce71180 +BR ret=0 +BC did=b49cffff gx=36 gy=1 esi=1ce723c8 +BR ret=0 +BC did=b49dffff gx=36 gy=2 esi=1ce72500 +BR ret=0 +BC did=b49effff gx=36 gy=3 esi=1ce72638 +BR ret=0 +BC did=b49fffff gx=36 gy=4 esi=1ce72770 +BR ret=0 +BC did=b4a0ffff gx=36 gy=5 esi=1ce712b8 +BR ret=0 +BC did=b4a1ffff gx=36 gy=6 esi=1ce73130 +BR ret=0 +BC did=b4a2ffff gx=36 gy=7 esi=1ce713f0 +BR ret=0 +BC did=b4a3ffff gx=36 gy=8 esi=1ce729e0 +BR ret=0 +BC did=b4a4ffff gx=36 gy=9 esi=1ce728a8 +BR ret=0 +BC did=b4a5ffff gx=36 gy=10 esi=1ce72b18 +BR ret=0 +BC did=b4a6ffff gx=36 gy=11 esi=1ce72c50 +BR ret=0 +BC did=b4a7ffff gx=36 gy=12 esi=1ce71048 +BR ret=0 +BC did=b4a8ffff gx=36 gy=13 esi=1ce72ec0 +BR ret=0 +BC did=b4a9ffff gx=36 gy=14 esi=1ce72ff8 +BR ret=0 +BC did=b4aaffff gx=36 gy=15 esi=1ce733a0 +BR ret=0 +BC did=b4abffff gx=36 gy=16 esi=1ce734d8 +BR ret=0 +BC did=b4acffff gx=36 gy=17 esi=1ce718d0 +BR ret=0 +BC did=b4adffff gx=36 gy=18 esi=1ce71528 +BR ret=0 +BC did=b4aeffff gx=36 gy=19 esi=1ce71b40 +BR ret=0 +BC did=b4afffff gx=36 gy=20 esi=1ce71c78 +BR ret=0 +BC did=b4b0ffff gx=36 gy=21 esi=1ce71db0 +BR ret=0 +BC did=b4b1ffff gx=36 gy=22 esi=1ce71ee8 +BR ret=0 +BC did=b4b2ffff gx=36 gy=23 esi=1ce75830 +BR ret=0 +BC did=b4b3ffff gx=36 gy=24 esi=1ce73880 +BR ret=0 +BC did=b4b4ffff gx=36 gy=25 esi=1ce74858 +BR ret=0 +BC did=b4b5ffff gx=36 gy=26 esi=1ce74990 +BR ret=0 +BC did=b4b6ffff gx=36 gy=27 esi=1ce73fd0 +BR ret=0 +BC did=b4b7ffff gx=36 gy=28 esi=1ce73af0 +BR ret=0 +BC did=b4b8ffff gx=36 gy=29 esi=1ce75bd8 +BR ret=0 +BC did=b4b9ffff gx=36 gy=30 esi=1ce74e70 +BR ret=0 +BC did=b4baffff gx=36 gy=31 esi=1ce74fa8 +BR ret=0 +BC did=b4bbffff gx=36 gy=32 esi=1ce74378 +BR ret=0 +BC did=b4bcffff gx=36 gy=33 esi=1ce73c28 +BR ret=0 +BC did=b4bdffff gx=36 gy=34 esi=1ce74720 +BR ret=0 +BC did=b4beffff gx=36 gy=35 esi=1ce73d60 +BR ret=0 +BC did=b4bfffff gx=36 gy=36 esi=1ce74c00 +BR ret=0 +BC did=b4c0ffff gx=36 gy=37 esi=1ce75968 +BR ret=0 +BC did=b4c1ffff gx=36 gy=38 esi=1ce756f8 +BR ret=0 +BC did=b4c2ffff gx=36 gy=39 esi=1ce74108 +BR ret=0 +BC did=b4c3ffff gx=36 gy=40 esi=1ce75488 +BR ret=0 +BC did=b4c4ffff gx=36 gy=41 esi=1ce74ac8 +BR ret=0 +BC did=b4c5ffff gx=36 gy=42 esi=1ce75218 +BR ret=0 +BC did=b4c6ffff gx=36 gy=43 esi=1ce74240 +BR ret=0 +BC did=b4c7ffff gx=36 gy=44 esi=1ce75350 +BR ret=0 +BC did=b4c8ffff gx=36 gy=45 esi=1ce73610 +BR ret=0 +BC did=b4c9ffff gx=36 gy=46 esi=1ce750e0 +BR ret=0 +BC did=b4caffff gx=36 gy=47 esi=1ce755c0 +BR ret=0 +BC did=b4cbffff gx=36 gy=48 esi=1ce744b0 +BR ret=0 +BC did=b4ccffff gx=36 gy=49 esi=1ce73e98 +BR ret=0 +BC did=b4cdffff gx=36 gy=50 esi=1ce74d38 +BR ret=0 +BC did=b59bffff gx=37 gy=0 esi=1ce745e8 +BR ret=0 +BC did=b59cffff gx=37 gy=1 esi=1ce739b8 +BR ret=0 +BC did=b59dffff gx=37 gy=2 esi=1ce75aa0 +BR ret=0 +BC did=b59effff gx=37 gy=3 esi=1ce73748 +BR ret=0 +BC did=b59fffff gx=37 gy=4 esi=1ceed778 +BR ret=0 +BC did=b5a0ffff gx=37 gy=5 esi=1ceef110 +BR ret=0 +BC did=b5a1ffff gx=37 gy=6 esi=1ceefc08 +BR ret=0 +BC did=b5a2ffff gx=37 gy=7 esi=1ceef4b8 +BR ret=0 +BC did=b5a3ffff gx=37 gy=8 esi=1ceeed68 +BR ret=0 +BC did=b5a4ffff gx=37 gy=9 esi=1ceef728 +BR ret=0 +BC did=b5a5ffff gx=37 gy=10 esi=1ceef998 +BR ret=0 +BC did=b5a6ffff gx=37 gy=11 esi=1ceee000 +BR ret=0 +BC did=b5a7ffff gx=37 gy=12 esi=1ceeeea0 +BR ret=0 +BC did=b5a8ffff gx=37 gy=13 esi=1ceefad0 +BR ret=0 +BC did=b5a9ffff gx=37 gy=14 esi=1ceee138 +BR ret=0 +BC did=b5aaffff gx=37 gy=15 esi=1ceefd40 +BR ret=0 +BC did=b5abffff gx=37 gy=16 esi=1ceef860 +BR ret=0 +BC did=b5acffff gx=37 gy=17 esi=1ceee270 +BR ret=0 +BC did=b5adffff gx=37 gy=18 esi=1ceed8b0 +BR ret=0 +BC did=b5aeffff gx=37 gy=19 esi=1ceee888 +BR ret=0 +BC did=b5afffff gx=37 gy=20 esi=1ceee3a8 +BR ret=0 +BC did=b5b0ffff gx=37 gy=21 esi=1ceed9e8 +BR ret=0 +BC did=b5b1ffff gx=37 gy=22 esi=1ceedb20 +BR ret=0 +BC did=b5b2ffff gx=37 gy=23 esi=1ceee4e0 +BR ret=0 +BC did=b5b3ffff gx=37 gy=24 esi=1ceedc58 +BR ret=0 +BC did=b5b4ffff gx=37 gy=25 esi=1ceedd90 +BR ret=0 +BC did=b5b5ffff gx=37 gy=26 esi=1ceee9c0 +BR ret=0 +BC did=b5b6ffff gx=37 gy=27 esi=1ceeeaf8 +BR ret=0 +BC did=b5b7ffff gx=37 gy=28 esi=1ceee618 +BR ret=0 +BC did=b5b8ffff gx=37 gy=29 esi=1ceef5f0 +BR ret=0 +BC did=b5b9ffff gx=37 gy=30 esi=1ceee750 +BR ret=0 +BC did=b5baffff gx=37 gy=31 esi=1ceedec8 +BR ret=0 +BC did=b5bbffff gx=37 gy=32 esi=1ceeec30 +BR ret=0 +BC did=b5bcffff gx=37 gy=33 esi=1ceeefd8 +BR ret=0 +BC did=b5bdffff gx=37 gy=34 esi=1ceef248 +BR ret=0 +BC did=b5beffff gx=37 gy=35 esi=1ceef380 +BR ret=0 +BC did=b5bfffff gx=37 gy=36 esi=1cef0f88 +BR ret=0 +BC did=b5c0ffff gx=37 gy=37 esi=1cef16d8 +BR ret=0 +BC did=b5c1ffff gx=37 gy=38 esi=1cef0700 +BR ret=0 +BC did=b5c2ffff gx=37 gy=39 esi=1cef1bb8 +BR ret=0 +BC did=b5c3ffff gx=37 gy=40 esi=1cef0d18 +BR ret=0 +BC did=b5c4ffff gx=37 gy=41 esi=1cef1e28 +BR ret=0 +BC did=b5c5ffff gx=37 gy=42 esi=1cef10c0 +BR ret=0 +BC did=b5c6ffff gx=37 gy=43 esi=1cef11f8 +BR ret=0 +BC did=b5c7ffff gx=37 gy=44 esi=1cef1330 +BR ret=0 +BC did=b5c8ffff gx=37 gy=45 esi=1cef1468 +BR ret=0 +BC did=b5c9ffff gx=37 gy=46 esi=1cef0220 +BR ret=0 +BC did=b5caffff gx=37 gy=47 esi=1cef2098 +BR ret=0 +BC did=b5cbffff gx=37 gy=48 esi=1cef0358 +BR ret=0 +BC did=b5ccffff gx=37 gy=49 esi=1cef0490 +BR ret=0 +BC did=b5cdffff gx=37 gy=50 esi=1cef2440 +BR ret=0 +BC did=b69bffff gx=38 gy=0 esi=1cef0e50 +BR ret=0 +BC did=b69cffff gx=38 gy=1 esi=1cef0838 +BR ret=0 +BC did=b69dffff gx=38 gy=2 esi=1cef00e8 +BR ret=0 +BC did=b69effff gx=38 gy=3 esi=1cef1f60 +BR ret=0 +BC did=b69fffff gx=38 gy=4 esi=1cef0aa8 +BR ret=0 +BC did=b6a0ffff gx=38 gy=5 esi=1ceefe78 +BR ret=0 +BC did=b6a1ffff gx=38 gy=6 esi=1cef0970 +BR ret=0 +BC did=b6a2ffff gx=38 gy=7 esi=1cef0be0 +BR ret=0 +BC did=b6a3ffff gx=38 gy=8 esi=1cef05c8 +BR ret=0 +BC did=b6a4ffff gx=38 gy=9 esi=1cef15a0 +BR ret=0 +BC did=b6a5ffff gx=38 gy=10 esi=1cef1810 +BR ret=0 +BC did=b6a6ffff gx=38 gy=11 esi=1cef1cf0 +BR ret=0 +BC did=b6a7ffff gx=38 gy=12 esi=1cef1948 +BR ret=0 +BC did=b6a8ffff gx=38 gy=13 esi=1cef1a80 +BR ret=0 +BC did=b6a9ffff gx=38 gy=14 esi=1cef21d0 +BR ret=0 +BC did=b6aaffff gx=38 gy=15 esi=1cef2308 +BR ret=0 +BC did=b6abffff gx=38 gy=16 esi=1ceeffb0 +BR ret=0 +BC did=b6acffff gx=38 gy=17 esi=1cef4a08 +BR ret=0 +BC did=b6adffff gx=38 gy=18 esi=1cef42b8 +BR ret=0 +BC did=b6aeffff gx=38 gy=19 esi=1cef3b68 +BR ret=0 +BC did=b6afffff gx=38 gy=20 esi=1cef4528 +BR ret=0 +BC did=b6b0ffff gx=38 gy=21 esi=1cef4798 +BR ret=0 +BC did=b6b1ffff gx=38 gy=22 esi=1cef2e00 +BR ret=0 +BC did=b6b2ffff gx=38 gy=23 esi=1cef3ca0 +BR ret=0 +BC did=b6b3ffff gx=38 gy=24 esi=1cef48d0 +BR ret=0 +BC did=b6b4ffff gx=38 gy=25 esi=1cef2f38 +BR ret=0 +BC did=b6b5ffff gx=38 gy=26 esi=1cef4b40 +BR ret=0 +BC did=b6b6ffff gx=38 gy=27 esi=1cef4660 +BR ret=0 +BC did=b6b7ffff gx=38 gy=28 esi=1cef3070 +BR ret=0 +BC did=b6b8ffff gx=38 gy=29 esi=1cef2578 +BR ret=0 +BC did=b6b9ffff gx=38 gy=30 esi=1cef3688 +BR ret=0 +BC did=b6baffff gx=38 gy=31 esi=1cef31a8 +BR ret=0 +BC did=b6bbffff gx=38 gy=32 esi=1cef26b0 +BR ret=0 +BC did=b6bcffff gx=38 gy=33 esi=1cef27e8 +BR ret=0 +BC did=b6bdffff gx=38 gy=34 esi=1cef32e0 +BR ret=0 +BC did=b6beffff gx=38 gy=35 esi=1cef2920 +BR ret=0 +BC did=b6bfffff gx=38 gy=36 esi=1cef2a58 +BR ret=0 +BC did=b6c0ffff gx=38 gy=37 esi=1cef37c0 +BR ret=0 +BC did=b6c1ffff gx=38 gy=38 esi=1cef38f8 +BR ret=0 +BC did=b6c2ffff gx=38 gy=39 esi=1cef3418 +BR ret=0 +BC did=b6c3ffff gx=38 gy=40 esi=1cef2b90 +BR ret=0 +BC did=b6c4ffff gx=38 gy=41 esi=1cef2cc8 +BR ret=0 +BC did=b6c5ffff gx=38 gy=42 esi=1cef3dd8 +BR ret=0 +BC did=b6c6ffff gx=38 gy=43 esi=1cef3f10 +BR ret=0 +BC did=b6c7ffff gx=38 gy=44 esi=1cef4180 +BR ret=0 +BC did=b6c8ffff gx=38 gy=45 esi=1cef3550 +BR ret=0 +BC did=b6c9ffff gx=38 gy=46 esi=1cef3a30 +BR ret=0 +BC did=b6caffff gx=38 gy=47 esi=1cef4048 +BR ret=0 +BC did=b6cbffff gx=38 gy=48 esi=1cef43f0 +BR ret=0 +BC did=b6ccffff gx=38 gy=49 esi=1cef58a8 +BR ret=0 +BC did=b6cdffff gx=38 gy=50 esi=1cef53c8 +BR ret=0 +BC did=b79bffff gx=39 gy=0 esi=1cef59e0 +BR ret=0 +BC did=b79cffff gx=39 gy=1 esi=1cef5b18 +BR ret=0 +BC did=b79dffff gx=39 gy=2 esi=1cef5290 +BR ret=0 +BC did=b79effff gx=39 gy=3 esi=1cef5d88 +BR ret=0 +BC did=b79fffff gx=39 gy=4 esi=1cef5500 +BR ret=0 +BC did=b7a0ffff gx=39 gy=5 esi=1cef6268 +BR ret=0 +BC did=b7a1ffff gx=39 gy=6 esi=1cef6e98 +BR ret=0 +BC did=b7a2ffff gx=39 gy=7 esi=1cef6d60 +BR ret=0 +BC did=b7a3ffff gx=39 gy=8 esi=1cef7108 +BR ret=0 +BC did=b7a4ffff gx=39 gy=9 esi=1cef6af0 +BR ret=0 +BC did=b7a5ffff gx=39 gy=10 esi=1cef5ff8 +BR ret=0 +BC did=b7a6ffff gx=39 gy=11 esi=1cef6880 +BR ret=0 +BC did=b7a7ffff gx=39 gy=12 esi=1cef5c50 +BR ret=0 +BC did=b7a8ffff gx=39 gy=13 esi=1cef5ec0 +BR ret=0 +BC did=b7a9ffff gx=39 gy=14 esi=1cef6c28 +BR ret=0 +BC did=b7aaffff gx=39 gy=15 esi=1cef4ee8 +BR ret=0 +BC did=b7abffff gx=39 gy=16 esi=1cef6fd0 +BR ret=0 +BC did=b7acffff gx=39 gy=17 esi=1cef5638 +BR ret=0 +BC did=b7adffff gx=39 gy=18 esi=1cef7240 +BR ret=0 +BC did=b7aeffff gx=39 gy=19 esi=1cef6748 +BR ret=0 +BC did=b7afffff gx=39 gy=20 esi=1cef5158 +BR ret=0 +BC did=b7b0ffff gx=39 gy=21 esi=1cef5770 +BR ret=0 +BC did=b7b1ffff gx=39 gy=22 esi=1cef69b8 +BR ret=0 +BC did=b7b2ffff gx=39 gy=23 esi=1cef6130 +BR ret=0 +BC did=b7b3ffff gx=39 gy=24 esi=1cef4c78 +BR ret=0 +BC did=b7b4ffff gx=39 gy=25 esi=1cef5020 +BR ret=0 +BC did=b7b5ffff gx=39 gy=26 esi=1cef63a0 +BR ret=0 +BC did=b7b6ffff gx=39 gy=27 esi=1cef64d8 +BR ret=0 +BC did=b7b7ffff gx=39 gy=28 esi=1cef6610 +BR ret=0 +BC did=b7b8ffff gx=39 gy=29 esi=1cef4db0 +BR ret=0 +BC did=b7b9ffff gx=39 gy=30 esi=1cef8bd8 +BR ret=0 +BC did=b7baffff gx=39 gy=31 esi=1cef7c00 +BR ret=0 +BC did=b7bbffff gx=39 gy=32 esi=1cef90b8 +BR ret=0 +BC did=b7bcffff gx=39 gy=33 esi=1cef8218 +BR ret=0 +BC did=b7bdffff gx=39 gy=34 esi=1cef9328 +BR ret=0 +BC did=b7beffff gx=39 gy=35 esi=1cef85c0 +BR ret=0 +BC did=b7bfffff gx=39 gy=36 esi=1cef7720 +BR ret=0 +BC did=b7c0ffff gx=39 gy=37 esi=1cef7858 +BR ret=0 +BC did=b7c1ffff gx=39 gy=38 esi=1cef91f0 +BR ret=0 +BC did=b7c2ffff gx=39 gy=39 esi=1cef7990 +BR ret=0 +BC did=b7c3ffff gx=39 gy=40 esi=1cef86f8 +BR ret=0 +BC did=b7c4ffff gx=39 gy=41 esi=1cef7378 +BR ret=0 +BC did=b7c5ffff gx=39 gy=42 esi=1cef8aa0 +BR ret=0 +BC did=b7c6ffff gx=39 gy=43 esi=1cef7ac8 +BR ret=0 +BC did=b7c7ffff gx=39 gy=44 esi=1cef80e0 +BR ret=0 +BC did=b7c8ffff gx=39 gy=45 esi=1cef7e70 +BR ret=0 +BC did=b7c9ffff gx=39 gy=46 esi=1cef7d38 +BR ret=0 +BC did=b7caffff gx=39 gy=47 esi=1cef8d10 +BR ret=0 +BC did=b7cbffff gx=39 gy=48 esi=1cef8830 +BR ret=0 +BC did=b7ccffff gx=39 gy=49 esi=1cef8968 +BR ret=0 +BC did=b7cdffff gx=39 gy=50 esi=1cef7fa8 +BR ret=0 +BC did=b89bffff gx=40 gy=0 esi=1cef8350 +BR ret=0 +BC did=b89cffff gx=40 gy=1 esi=1cef8488 +BR ret=0 +BC did=b89dffff gx=40 gy=2 esi=1cef9460 +BR ret=0 +BC did=b89effff gx=40 gy=3 esi=1cef8e48 +BR ret=0 +BC did=b89fffff gx=40 gy=4 esi=1cef8f80 +BR ret=0 +BC did=b8a0ffff gx=40 gy=5 esi=1cef9598 +BR ret=0 +BC did=b8a1ffff gx=40 gy=6 esi=1cef96d0 +BR ret=0 +BC did=b8a2ffff gx=40 gy=7 esi=1cef9808 +BR ret=0 +BC did=b8a3ffff gx=40 gy=8 esi=1cef9940 +BR ret=0 +BC did=b8a4ffff gx=40 gy=9 esi=1cef74b0 +BR ret=0 +BC did=b8a5ffff gx=40 gy=10 esi=1cef75e8 +BR ret=0 +BC did=b8a6ffff gx=40 gy=11 esi=1cef9a78 +BR ret=0 +BC did=b8a7ffff gx=40 gy=12 esi=1cefb410 +BR ret=0 +BC did=b8a8ffff gx=40 gy=13 esi=1cefa438 +BR ret=0 +BC did=b8a9ffff gx=40 gy=14 esi=1cefaf30 +BR ret=0 +BC did=b8aaffff gx=40 gy=15 esi=1cefb068 +BR ret=0 +BC did=b8abffff gx=40 gy=16 esi=1cefb548 +BR ret=0 +BC did=b8acffff gx=40 gy=17 esi=1cefa570 +BR ret=0 +BC did=b8adffff gx=40 gy=18 esi=1cefba28 +BR ret=0 +BC did=b8aeffff gx=40 gy=19 esi=1cef9ce8 +BR ret=0 +BC did=b8afffff gx=40 gy=20 esi=1cefb2d8 +BR ret=0 +BC did=b8b0ffff gx=40 gy=21 esi=1cefbf08 +BR ret=0 +BC did=b8b1ffff gx=40 gy=22 esi=1cefb680 +BR ret=0 +BC did=b8b2ffff gx=40 gy=23 esi=1cefb7b8 +BR ret=0 +BC did=b8b3ffff gx=40 gy=24 esi=1cefb8f0 +BR ret=0 +BC did=b8b4ffff gx=40 gy=25 esi=1cefbb60 +BR ret=0 +BC did=b8b5ffff gx=40 gy=26 esi=1cefbc98 +BR ret=0 +BC did=b8b6ffff gx=40 gy=27 esi=1cefa918 +BR ret=0 +BC did=b8b7ffff gx=40 gy=28 esi=1cefa6a8 +BR ret=0 +BC did=b8b8ffff gx=40 gy=29 esi=1cefb1a0 +BR ret=0 +BC did=b8b9ffff gx=40 gy=30 esi=1cef9e20 +BR ret=0 +BC did=b8baffff gx=40 gy=31 esi=1cefa090 +BR ret=0 +BC did=b8bbffff gx=40 gy=32 esi=1cef9bb0 +BR ret=0 +BC did=b8bcffff gx=40 gy=33 esi=1cefa1c8 +BR ret=0 +BC did=b8bdffff gx=40 gy=34 esi=1cefa7e0 +BR ret=0 +BC did=b8beffff gx=40 gy=35 esi=1cef9f58 +BR ret=0 +BC did=b8bfffff gx=40 gy=36 esi=1cefa300 +BR ret=0 +BC did=b8c0ffff gx=40 gy=37 esi=1cefaa50 +BR ret=0 +BC did=b8c1ffff gx=40 gy=38 esi=1cefab88 +BR ret=0 +BC did=b8c2ffff gx=40 gy=39 esi=1cefacc0 +BR ret=0 +BC did=b8c3ffff gx=40 gy=40 esi=1cefadf8 +BR ret=0 +BC did=b8c4ffff gx=40 gy=41 esi=1cefbdd0 +BR ret=0 +BC did=b8c5ffff gx=40 gy=42 esi=1cefc040 +BR ret=0 +BC did=b8c6ffff gx=40 gy=43 esi=1cefd150 +BR ret=0 +BC did=b8c7ffff gx=40 gy=44 esi=1cefcee0 +BR ret=0 +BC did=b8c8ffff gx=40 gy=45 esi=1cefd018 +BR ret=0 +BC did=b8c9ffff gx=40 gy=46 esi=1cefc3e8 +BR ret=0 +BC did=b8caffff gx=40 gy=47 esi=1cefcda8 +BR ret=0 +BC did=b8cbffff gx=40 gy=48 esi=1cefdeb8 +BR ret=0 +BC did=b8ccffff gx=40 gy=49 esi=1cefc178 +BR ret=0 +BC did=b8cdffff gx=40 gy=50 esi=1cefc2b0 +BR ret=0 +BC did=b99bffff gx=41 gy=0 esi=1cefc658 +BR ret=0 +BC did=b99cffff gx=41 gy=1 esi=1cefc790 +BR ret=0 +BC did=b99dffff gx=41 gy=2 esi=1cefdff0 +BR ret=0 +BC did=b99effff gx=41 gy=3 esi=1cefe128 +BR ret=0 +BC did=b99fffff gx=41 gy=4 esi=1cefcb38 +BR ret=0 +BC did=b9a0ffff gx=41 gy=5 esi=1cefe608 +BR ret=0 +BC did=b9a1ffff gx=41 gy=6 esi=1cefe260 +BR ret=0 +BC did=b9a2ffff gx=41 gy=7 esi=1cefd768 +BR ret=0 +BC did=b9a3ffff gx=41 gy=8 esi=1cefe398 +BR ret=0 +BC did=b9a4ffff gx=41 gy=9 esi=1cefe4d0 +BR ret=0 +BC did=b9a5ffff gx=41 gy=10 esi=1cefca00 +BR ret=0 +BC did=b9a6ffff gx=41 gy=11 esi=1cefd8a0 +BR ret=0 +BC did=b9a7ffff gx=41 gy=12 esi=1cefe740 +BR ret=0 +BC did=b9a8ffff gx=41 gy=13 esi=1cefcc70 +BR ret=0 +BC did=b9a9ffff gx=41 gy=14 esi=1cefc520 +BR ret=0 +BC did=b9aaffff gx=41 gy=15 esi=1cefc8c8 +BR ret=0 +BC did=b9abffff gx=41 gy=16 esi=1cefd288 +BR ret=0 +BC did=b9acffff gx=41 gy=17 esi=1cefd3c0 +BR ret=0 +BC did=b9adffff gx=41 gy=18 esi=1cefd4f8 +BR ret=0 +BC did=b9aeffff gx=41 gy=19 esi=1cefd630 +BR ret=0 +BC did=b9afffff gx=41 gy=20 esi=1cefd9d8 +BR ret=0 +BC did=b9b0ffff gx=41 gy=21 esi=1cefdb10 +BR ret=0 +BC did=b9b1ffff gx=41 gy=22 esi=1cefdc48 +BR ret=0 +BC did=b9b2ffff gx=41 gy=23 esi=1cefdd80 +BR ret=0 +BC did=b9b3ffff gx=41 gy=24 esi=1cefeae8 +BR ret=0 +BC did=b9b4ffff gx=41 gy=25 esi=1ceffac0 +BR ret=0 +BC did=b9b5ffff gx=41 gy=26 esi=1ceffbf8 +BR ret=0 +BC did=b9b6ffff gx=41 gy=27 esi=1ceff238 +BR ret=0 +BC did=b9b7ffff gx=41 gy=28 esi=1cefed58 +BR ret=0 +BC did=b9b8ffff gx=41 gy=29 esi=1cf00e40 +BR ret=0 +BC did=b9b9ffff gx=41 gy=30 esi=1cf000d8 +BR ret=0 +BC did=b9baffff gx=41 gy=31 esi=1cf00210 +BR ret=0 +BC did=b9bbffff gx=41 gy=32 esi=1ceff5e0 +BR ret=0 +BC did=b9bcffff gx=41 gy=33 esi=1cefffa0 +BR ret=0 +BC did=b9bdffff gx=41 gy=34 esi=1ceff850 +BR ret=0 +BC did=b9beffff gx=41 gy=35 esi=1ceff988 +BR ret=0 +BC did=b9bfffff gx=41 gy=36 esi=1ceff370 +BR ret=0 +BC did=b9c0ffff gx=41 gy=37 esi=1cf00480 +BR ret=0 +BC did=b9c1ffff gx=41 gy=38 esi=1cefe878 +BR ret=0 +BC did=b9c2ffff gx=41 gy=39 esi=1ceff4a8 +BR ret=0 +BC did=b9c3ffff gx=41 gy=40 esi=1ceff718 +BR ret=0 +BC did=b9c4ffff gx=41 gy=41 esi=1cf00348 +BR ret=0 +BC did=b9c5ffff gx=41 gy=42 esi=1ceffd30 +BR ret=0 +BC did=b9c6ffff gx=41 gy=43 esi=1cf00828 +BR ret=0 +BC did=b9c7ffff gx=41 gy=44 esi=1cefec20 +BR ret=0 +BC did=b9c8ffff gx=41 gy=45 esi=1cf00a98 +BR ret=0 +BC did=b9c9ffff gx=41 gy=46 esi=1cefefc8 +BR ret=0 +BC did=b9caffff gx=41 gy=47 esi=1cf00bd0 +BR ret=0 +BC did=b9cbffff gx=41 gy=48 esi=1cf005b8 +BR ret=0 +BC did=b9ccffff gx=41 gy=49 esi=1cf006f0 +BR ret=0 +BC did=b9cdffff gx=41 gy=50 esi=1cf00960 +BR ret=0 +BC did=ba9bffff gx=42 gy=0 esi=1cf00d08 +BR ret=0 +BC did=ba9cffff gx=42 gy=1 esi=1ceff100 +BR ret=0 +BC did=ba9dffff gx=42 gy=2 esi=1cefe9b0 +BR ret=0 +BC did=ba9effff gx=42 gy=3 esi=1cefee90 +BR ret=0 +BC did=ba9fffff gx=42 gy=4 esi=1ceffe68 +BR ret=0 +BC did=baa0ffff gx=42 gy=5 esi=1cf02910 +BR ret=0 +BC did=baa1ffff gx=42 gy=6 esi=1cf02a48 +BR ret=0 +BC did=baa2ffff gx=42 gy=7 esi=1cf010b0 +BR ret=0 +BC did=baa3ffff gx=42 gy=8 esi=1cf01800 +BR ret=0 +BC did=baa4ffff gx=42 gy=9 esi=1cf02088 +BR ret=0 +BC did=baa5ffff gx=42 gy=10 esi=1cf02cb8 +BR ret=0 +BC did=baa6ffff gx=42 gy=11 esi=1cf02b80 +BR ret=0 +BC did=baa7ffff gx=42 gy=12 esi=1cf01a70 +BR ret=0 +BC did=baa8ffff gx=42 gy=13 esi=1cf016c8 +BR ret=0 +BC did=baa9ffff gx=42 gy=14 esi=1cf01ba8 +BR ret=0 +BC did=baaaffff gx=42 gy=15 esi=1cf02df0 +BR ret=0 +BC did=baabffff gx=42 gy=16 esi=1cf01320 +BR ret=0 +BC did=baacffff gx=42 gy=17 esi=1cf022f8 +BR ret=0 +BC did=baadffff gx=42 gy=18 esi=1cf01ce0 +BR ret=0 +BC did=baaeffff gx=42 gy=19 esi=1cf027d8 +BR ret=0 +BC did=baafffff gx=42 gy=20 esi=1cf021c0 +BR ret=0 +BC did=bab0ffff gx=42 gy=21 esi=1cf01e18 +BR ret=0 +BC did=bab1ffff gx=42 gy=22 esi=1cf01938 +BR ret=0 +BC did=bab2ffff gx=42 gy=23 esi=1cf01f50 +BR ret=0 +BC did=bab3ffff gx=42 gy=24 esi=1cf011e8 +BR ret=0 +BC did=bab4ffff gx=42 gy=25 esi=1cf02f28 +BR ret=0 +BC did=bab5ffff gx=42 gy=26 esi=1cf02430 +BR ret=0 +BC did=bab6ffff gx=42 gy=27 esi=1cf026a0 +BR ret=0 +BC did=bab7ffff gx=42 gy=28 esi=1cf01458 +BR ret=0 +BC did=bab8ffff gx=42 gy=29 esi=1cf02568 +BR ret=0 +BC did=bab9ffff gx=42 gy=30 esi=1cf03060 +BR ret=0 +BC did=babaffff gx=42 gy=31 esi=1cf03198 +BR ret=0 +BC did=babbffff gx=42 gy=32 esi=1cf032d0 +BR ret=0 +BC did=babcffff gx=42 gy=33 esi=1cf03408 +BR ret=0 +BC did=babdffff gx=42 gy=34 esi=1cf03540 +BR ret=0 +BC did=babeffff gx=42 gy=35 esi=1cf00f78 +BR ret=0 +BC did=babfffff gx=42 gy=36 esi=1cf01590 +BR ret=0 +BC did=bac0ffff gx=42 gy=37 esi=1cf04788 +BR ret=0 +BC did=bac1ffff gx=42 gy=38 esi=1cf04da0 +BR ret=0 +BC did=bac2ffff gx=42 gy=39 esi=1cf059d0 +BR ret=0 +BC did=bac3ffff gx=42 gy=40 esi=1cf048c0 +BR ret=0 +BC did=bac4ffff gx=42 gy=41 esi=1cf04ed8 +BR ret=0 +BC did=bac5ffff gx=42 gy=42 esi=1cf04650 +BR ret=0 +BC did=bac6ffff gx=42 gy=43 esi=1cf049f8 +BR ret=0 +BC did=bac7ffff gx=42 gy=44 esi=1cf04038 +BR ret=0 +BC did=bac8ffff gx=42 gy=45 esi=1cf05280 +BR ret=0 +BC did=bac9ffff gx=42 gy=46 esi=1cf03678 +BR ret=0 +BC did=bacaffff gx=42 gy=47 esi=1cf042a8 +BR ret=0 +BC did=bacbffff gx=42 gy=48 esi=1cf05010 +BR ret=0 +BC did=baccffff gx=42 gy=49 esi=1cf03b58 +BR ret=0 +BC did=bacdffff gx=42 gy=50 esi=1cf04b30 +BR ret=0 +BC did=bb9bffff gx=43 gy=0 esi=1cf04c68 +BR ret=0 +BC did=bb9cffff gx=43 gy=1 esi=1cf05628 +BR ret=0 +BC did=bb9dffff gx=43 gy=2 esi=1cf054f0 +BR ret=0 +BC did=bb9effff gx=43 gy=3 esi=1cf05148 +BR ret=0 +BC did=bb9fffff gx=43 gy=4 esi=1cf05b08 +BR ret=0 +BC did=bba0ffff gx=43 gy=5 esi=1cf03c90 +BR ret=0 +BC did=bba1ffff gx=43 gy=6 esi=1cf053b8 +BR ret=0 +BC did=bba2ffff gx=43 gy=7 esi=1cf05760 +BR ret=0 +BC did=bba3ffff gx=43 gy=8 esi=1cf04518 +BR ret=0 +BC did=bba4ffff gx=43 gy=9 esi=1cf03dc8 +BR ret=0 +BC did=bba5ffff gx=43 gy=10 esi=1cf05898 +BR ret=0 +BC did=bba6ffff gx=43 gy=11 esi=1cf05c40 +BR ret=0 +BC did=bba7ffff gx=43 gy=12 esi=1cf037b0 +BR ret=0 +BC did=bba8ffff gx=43 gy=13 esi=1cf038e8 +BR ret=0 +BC did=bba9ffff gx=43 gy=14 esi=1cf03a20 +BR ret=0 +BC did=bbaaffff gx=43 gy=15 esi=1cf03f00 +BR ret=0 +BC did=bbabffff gx=43 gy=16 esi=1cf04170 +BR ret=0 +BC did=bbacffff gx=43 gy=17 esi=1cf043e0 +BR ret=0 +BC did=bbadffff gx=43 gy=18 esi=1cf07368 +BR ret=0 +BC did=bbaeffff gx=43 gy=19 esi=1cf07d28 +BR ret=0 +BC did=bbafffff gx=43 gy=20 esi=1cf07f98 +BR ret=0 +BC did=bbb0ffff gx=43 gy=21 esi=1cf075d8 +BR ret=0 +BC did=bbb1ffff gx=43 gy=22 esi=1cf08208 +BR ret=0 +BC did=bbb2ffff gx=43 gy=23 esi=1cf07848 +BR ret=0 +BC did=bbb3ffff gx=43 gy=24 esi=1cf07710 +BR ret=0 +BC did=bbb4ffff gx=43 gy=25 esi=1cf07980 +BR ret=0 +BC did=bbb5ffff gx=43 gy=26 esi=1cf07ab8 +BR ret=0 +BC did=bbb6ffff gx=43 gy=27 esi=1cf07bf0 +BR ret=0 +BC did=bbb7ffff gx=43 gy=28 esi=1cf06c18 +BR ret=0 +BC did=bbb8ffff gx=43 gy=29 esi=1cf06870 +BR ret=0 +BC did=bbb9ffff gx=43 gy=30 esi=1cf074a0 +BR ret=0 +BC did=bbbaffff gx=43 gy=31 esi=1cf06120 +BR ret=0 +BC did=bbbbffff gx=43 gy=32 esi=1cf07e60 +BR ret=0 +BC did=bbbcffff gx=43 gy=33 esi=1cf06ae0 +BR ret=0 +BC did=bbbdffff gx=43 gy=34 esi=1cf080d0 +BR ret=0 +BC did=bbbeffff gx=43 gy=35 esi=1cf08340 +BR ret=0 +BC did=bbbfffff gx=43 gy=36 esi=1cf06d50 +BR ret=0 +BC did=bbc0ffff gx=43 gy=37 esi=1cf05d78 +BR ret=0 +BC did=bbc1ffff gx=43 gy=38 esi=1cf05eb0 +BR ret=0 +BC did=bbc2ffff gx=43 gy=39 esi=1cf05fe8 +BR ret=0 +BC did=bbc3ffff gx=43 gy=40 esi=1cf06e88 +BR ret=0 +BC did=bbc4ffff gx=43 gy=41 esi=1cf06258 +BR ret=0 +BC did=bbc5ffff gx=43 gy=42 esi=1cf06390 +BR ret=0 +BC did=bbc6ffff gx=43 gy=43 esi=1cf06fc0 +BR ret=0 +BC did=bbc7ffff gx=43 gy=44 esi=1cf064c8 +BR ret=0 +BC did=bbc8ffff gx=43 gy=45 esi=1cf070f8 +BR ret=0 +BC did=bbc9ffff gx=43 gy=46 esi=1cf07230 +BR ret=0 +BC did=bbcaffff gx=43 gy=47 esi=1cf06600 +BR ret=0 +BC did=bbcbffff gx=43 gy=48 esi=1cf06738 +BR ret=0 +BC did=bbccffff gx=43 gy=49 esi=1cf069a8 +BR ret=0 +BC did=bbcdffff gx=43 gy=50 esi=1cf0a908 +BR ret=0 +BC did=bc9bffff gx=44 gy=0 esi=1cf0a560 +BR ret=0 +BC did=bc9cffff gx=44 gy=1 esi=1cf09f48 +BR ret=0 +BC did=bc9dffff gx=44 gy=2 esi=1cf08478 +BR ret=0 +BC did=bc9effff gx=44 gy=3 esi=1cf0a1b8 +BR ret=0 +BC did=bc9fffff gx=44 gy=4 esi=1cf0a428 +BR ret=0 +BC did=bca0ffff gx=44 gy=5 esi=1cf090a8 +BR ret=0 +BC did=bca1ffff gx=44 gy=6 esi=1cf091e0 +BR ret=0 +BC did=bca2ffff gx=44 gy=7 esi=1cf0a698 +BR ret=0 +BC did=bca3ffff gx=44 gy=8 esi=1cf0aa40 +BR ret=0 +BC did=bca4ffff gx=44 gy=9 esi=1cf09930 +BR ret=0 +BC did=bca5ffff gx=44 gy=10 esi=1cf09450 +BR ret=0 +BC did=bca6ffff gx=44 gy=11 esi=1cf085b0 +BR ret=0 +BC did=bca7ffff gx=44 gy=12 esi=1cf09a68 +BR ret=0 +BC did=bca8ffff gx=44 gy=13 esi=1cf08820 +BR ret=0 +BC did=bca9ffff gx=44 gy=14 esi=1cf096c0 +BR ret=0 +BC did=bcaaffff gx=44 gy=15 esi=1cf086e8 +BR ret=0 +BC did=bcabffff gx=44 gy=16 esi=1cf09ba0 +BR ret=0 +BC did=bcacffff gx=44 gy=17 esi=1cf08958 +BR ret=0 +BC did=bcadffff gx=44 gy=18 esi=1cf08d00 +BR ret=0 +BC did=bcaeffff gx=44 gy=19 esi=1cf09318 +BR ret=0 +BC did=bcafffff gx=44 gy=20 esi=1cf08f70 +BR ret=0 +BC did=bcb0ffff gx=44 gy=21 esi=1cf09588 +BR ret=0 +BC did=bcb1ffff gx=44 gy=22 esi=1cf097f8 +BR ret=0 +BC did=bcb2ffff gx=44 gy=23 esi=1cf09cd8 +BR ret=0 +BC did=bcb3ffff gx=44 gy=24 esi=1cf08e38 +BR ret=0 +BC did=bcb4ffff gx=44 gy=25 esi=1cf0a2f0 +BR ret=0 +BC did=bcb5ffff gx=44 gy=26 esi=1cf09e10 +BR ret=0 +BC did=bcb6ffff gx=44 gy=27 esi=1cf0a080 +BR ret=0 +BC did=bcb7ffff gx=44 gy=28 esi=1cf0a7d0 +BR ret=0 +BC did=bcb8ffff gx=44 gy=29 esi=1cf08a90 +BR ret=0 +BC did=bcb9ffff gx=44 gy=30 esi=1cf08bc8 +BR ret=0 +BC did=bcbaffff gx=44 gy=31 esi=1cf0bef8 +BR ret=0 +BC did=bcbbffff gx=44 gy=32 esi=1cf0bb50 +BR ret=0 +BC did=bcbcffff gx=44 gy=33 esi=1cf0b538 +BR ret=0 +BC did=bcbdffff gx=44 gy=34 esi=1cf0c780 +BR ret=0 +BC did=bcbeffff gx=44 gy=35 esi=1cf0ab78 +BR ret=0 +BC did=bcbfffff gx=44 gy=36 esi=1cf0b7a8 +BR ret=0 +BC did=bcc0ffff gx=44 gy=37 esi=1cf0acb0 +BR ret=0 +BC did=bcc1ffff gx=44 gy=38 esi=1cf0c030 +BR ret=0 +BC did=bcc2ffff gx=44 gy=39 esi=1cf0c168 +BR ret=0 +BC did=bcc3ffff gx=44 gy=40 esi=1cf0c648 +BR ret=0 +BC did=bcc4ffff gx=44 gy=41 esi=1cf0b670 +BR ret=0 +BC did=bcc5ffff gx=44 gy=42 esi=1cf0cb28 +BR ret=0 +BC did=bcc6ffff gx=44 gy=43 esi=1cf0ade8 +BR ret=0 +BC did=bcc7ffff gx=44 gy=44 esi=1cf0cd98 +BR ret=0 +BC did=bcc8ffff gx=44 gy=45 esi=1cf0b2c8 +BR ret=0 +BC did=bcc9ffff gx=44 gy=46 esi=1cf0ced0 +BR ret=0 +BC did=bccaffff gx=44 gy=47 esi=1cf0c8b8 +BR ret=0 +BC did=bccbffff gx=44 gy=48 esi=1cf0b058 +BR ret=0 +BC did=bcccffff gx=44 gy=49 esi=1cf0b190 +BR ret=0 +BC did=bccdffff gx=44 gy=50 esi=1cf0c9f0 +BR ret=0 +BC did=bd9bffff gx=45 gy=0 esi=1cf0b400 +BR ret=0 +BC did=bd9cffff gx=45 gy=1 esi=1cf0cc60 +BR ret=0 +BC did=bd9dffff gx=45 gy=2 esi=1cf0bc88 +BR ret=0 +BC did=bd9effff gx=45 gy=3 esi=1cf0af20 +BR ret=0 +BC did=bd9fffff gx=45 gy=4 esi=1cf0b8e0 +BR ret=0 +BC did=bda0ffff gx=45 gy=5 esi=1cf0d008 +BR ret=0 +BC did=bda1ffff gx=45 gy=6 esi=1cf0d140 +BR ret=0 +BC did=bda2ffff gx=45 gy=7 esi=1cf0ba18 +BR ret=0 +BC did=bda3ffff gx=45 gy=8 esi=1cf0bdc0 +BR ret=0 +BC did=bda4ffff gx=45 gy=9 esi=1cf0c2a0 +BR ret=0 +BC did=bda5ffff gx=45 gy=10 esi=1cf0c3d8 +BR ret=0 +BC did=bda6ffff gx=45 gy=11 esi=1cf0c510 +BR ret=0 +BC did=bda7ffff gx=45 gy=12 esi=1cf0e9a0 +BR ret=0 +BC did=bda8ffff gx=45 gy=13 esi=1cf0f5d0 +BR ret=0 +BC did=bda9ffff gx=45 gy=14 esi=1cf0e4c0 +BR ret=0 +BC did=bdaaffff gx=45 gy=15 esi=1cf0ead8 +BR ret=0 +BC did=bdabffff gx=45 gy=16 esi=1cf0e250 +BR ret=0 +BC did=bdacffff gx=45 gy=17 esi=1cf0e5f8 +BR ret=0 +BC did=bdadffff gx=45 gy=18 esi=1cf0ec10 +BR ret=0 +BC did=bdaeffff gx=45 gy=19 esi=1cf0db00 +BR ret=0 +BC did=bdafffff gx=45 gy=20 esi=1cf0d758 +BR ret=0 +BC did=bdb0ffff gx=45 gy=21 esi=1cf0d620 +BR ret=0 +BC did=bdb1ffff gx=45 gy=22 esi=1cf0d890 +BR ret=0 +BC did=bdb2ffff gx=45 gy=23 esi=1cf0f840 +BR ret=0 +BC did=bdb3ffff gx=45 gy=24 esi=1cf0ed48 +BR ret=0 +BC did=bdb4ffff gx=45 gy=25 esi=1cf0d278 +BR ret=0 +BC did=bdb5ffff gx=45 gy=26 esi=1cf0efb8 +BR ret=0 +BC did=bdb6ffff gx=45 gy=27 esi=1cf0d3b0 +BR ret=0 +BC did=bdb7ffff gx=45 gy=28 esi=1cf0d9c8 +BR ret=0 +BC did=bdb8ffff gx=45 gy=29 esi=1cf0f0f0 +BR ret=0 +BC did=bdb9ffff gx=45 gy=30 esi=1cf0f228 +BR ret=0 +BC did=bdbaffff gx=45 gy=31 esi=1cf0f360 +BR ret=0 +BC did=bdbbffff gx=45 gy=32 esi=1cf0ee80 +BR ret=0 +BC did=bdbcffff gx=45 gy=33 esi=1cf0f708 +BR ret=0 +BC did=bdbdffff gx=45 gy=34 esi=1cf0f498 +BR ret=0 +BC did=bdbeffff gx=45 gy=35 esi=1cf0d4e8 +BR ret=0 +BC did=bdbfffff gx=45 gy=36 esi=1cf0dc38 +BR ret=0 +BC did=bdc0ffff gx=45 gy=37 esi=1cf0dd70 +BR ret=0 +BC did=bdc1ffff gx=45 gy=38 esi=1cf0dea8 +BR ret=0 +BC did=bdc2ffff gx=45 gy=39 esi=1cf0e118 +BR ret=0 +BC did=bdc3ffff gx=45 gy=40 esi=1cf0dfe0 +BR ret=0 +BC did=bdc4ffff gx=45 gy=41 esi=1cf0e388 +BR ret=0 +BC did=bdc5ffff gx=45 gy=42 esi=1cf0e730 +BR ret=0 +BC did=bdc6ffff gx=45 gy=43 esi=1cf0e868 +BR ret=0 +BC did=bdc7ffff gx=45 gy=44 esi=1cf0fab0 +BR ret=0 +BC did=bdc8ffff gx=45 gy=45 esi=1cf0ff90 +BR ret=0 +BC did=bdc9ffff gx=45 gy=46 esi=1cf10338 +BR ret=0 +BC did=bdcaffff gx=45 gy=47 esi=1cf0fbe8 +BR ret=0 +BC did=bdcbffff gx=45 gy=48 esi=1cf0fd20 +BR ret=0 +BC did=bdccffff gx=45 gy=49 esi=1cf0f978 +BR ret=0 +BC did=bdcdffff gx=45 gy=50 esi=1cf0fe58 +BR ret=0 +BC did=be9bffff gx=46 gy=0 esi=1cf100c8 +BR ret=0 +BC did=be9cffff gx=46 gy=1 esi=1cf10200 +BR ret=0 +BC did=be9dffff gx=46 gy=2 esi=1cf10470 +BR ret=0 +BC did=be9effff gx=46 gy=3 esi=1cf106e0 +BR ret=0 +BC did=be9fffff gx=46 gy=4 esi=1cf10a88 +BR ret=0 +BC did=bea0ffff gx=46 gy=5 esi=1cf111d8 +BR ret=0 +BC did=bea1ffff gx=46 gy=6 esi=1cf10bc0 +BR ret=0 +BC did=bea2ffff gx=46 gy=7 esi=1cf116b8 +BR ret=0 +BC did=bea3ffff gx=46 gy=8 esi=1cf11580 +BR ret=0 +BC did=bea4ffff gx=46 gy=9 esi=1cf105a8 +BR ret=0 +BC did=bea5ffff gx=46 gy=10 esi=1cf10818 +BR ret=0 +BC did=bea6ffff gx=46 gy=11 esi=1cf10950 +BR ret=0 +BC did=bea7ffff gx=46 gy=12 esi=1cf11310 +BR ret=0 +BC did=bea8ffff gx=46 gy=13 esi=1cf10cf8 +BR ret=0 +BC did=bea9ffff gx=46 gy=14 esi=1cf10e30 +BR ret=0 +BC did=beaaffff gx=46 gy=15 esi=1cf10f68 +BR ret=0 +BC did=beabffff gx=46 gy=16 esi=1cf11448 +BR ret=0 +BC did=beacffff gx=46 gy=17 esi=1cf110a0 +BR ret=0 +BC did=beadffff gx=46 gy=18 esi=1cf117f0 +BR ret=0 +BC did=beaeffff gx=46 gy=19 esi=1cf11928 +BR ret=0 +BC did=beafffff gx=46 gy=20 esi=1cf11f40 +BR ret=0 +BC did=beb0ffff gx=46 gy=21 esi=1cf11a60 +BR ret=0 +BC did=beb1ffff gx=46 gy=22 esi=1cf11b98 +BR ret=0 +BC did=beb2ffff gx=46 gy=23 esi=1cf11cd0 +BR ret=0 +BC did=beb3ffff gx=46 gy=24 esi=1cf11e08 +BR ret=0 +BC did=beb4ffff gx=46 gy=25 esi=1cf12900 +BR ret=0 +BC did=beb5ffff gx=46 gy=26 esi=1cf12a38 +BR ret=0 +BC did=beb6ffff gx=46 gy=27 esi=1cf12558 +BR ret=0 +BC did=beb7ffff gx=46 gy=28 esi=1cf12420 +BR ret=0 +BC did=beb8ffff gx=46 gy=29 esi=1cf12690 +BR ret=0 +BC did=beb9ffff gx=46 gy=30 esi=1cf13db8 +BR ret=0 +BC did=bebaffff gx=46 gy=31 esi=1cf13b48 +BR ret=0 +BC did=bebbffff gx=46 gy=32 esi=1cf12f18 +BR ret=0 +BC did=bebcffff gx=46 gy=33 esi=1cf127c8 +BR ret=0 +BC did=bebdffff gx=46 gy=34 esi=1cf132c0 +BR ret=0 +BC did=bebeffff gx=46 gy=35 esi=1cf12b70 +BR ret=0 +BC did=bebfffff gx=46 gy=36 esi=1cf13c80 +BR ret=0 +BC did=bec0ffff gx=46 gy=37 esi=1cf12ca8 +BR ret=0 +BC did=bec1ffff gx=46 gy=38 esi=1cf12de0 +BR ret=0 +BC did=bec2ffff gx=46 gy=39 esi=1cf14508 +BR ret=0 +BC did=bec3ffff gx=46 gy=40 esi=1cf138d8 +BR ret=0 +BC did=bec4ffff gx=46 gy=41 esi=1cf13a10 +BR ret=0 +BC did=bec5ffff gx=46 gy=42 esi=1cf13050 +BR ret=0 +BC did=bec6ffff gx=46 gy=43 esi=1cf13188 +BR ret=0 +BC did=bec7ffff gx=46 gy=44 esi=1cf13ef0 +BR ret=0 +BC did=bec8ffff gx=46 gy=45 esi=1cf14640 +BR ret=0 +BC did=bec9ffff gx=46 gy=46 esi=1cf143d0 +BR ret=0 +BC did=becaffff gx=46 gy=47 esi=1cf12078 +BR ret=0 +BC did=becbffff gx=46 gy=48 esi=1cf133f8 +BR ret=0 +BC did=beccffff gx=46 gy=49 esi=1cf13530 +BR ret=0 +BC did=becdffff gx=46 gy=50 esi=1cf14028 +BR ret=0 +BC did=bf9bffff gx=47 gy=0 esi=1cf13668 +BR ret=0 +BC did=bf9cffff gx=47 gy=1 esi=1cf137a0 +BR ret=0 +BC did=bf9dffff gx=47 gy=2 esi=1cf121b0 +BR ret=0 +BC did=bf9effff gx=47 gy=3 esi=1cf122e8 +BR ret=0 +BC did=bf9fffff gx=47 gy=4 esi=1cf14160 +BR ret=0 +BC did=bfa0ffff gx=47 gy=5 esi=1cf14298 +BR ret=0 +BC did=bfa1ffff gx=47 gy=6 esi=1cf149e8 +BR ret=0 +BC did=bfa2ffff gx=47 gy=7 esi=1cf159c0 +BR ret=0 +BC did=bfa3ffff gx=47 gy=8 esi=1cf15af8 +BR ret=0 +BC did=bfa4ffff gx=47 gy=9 esi=1cf15138 +BR ret=0 +BC did=bfa5ffff gx=47 gy=10 esi=1cf14c58 +BR ret=0 +BC did=bfa6ffff gx=47 gy=11 esi=1cf16d40 +BR ret=0 +BC did=bfa7ffff gx=47 gy=12 esi=1cf15fd8 +BR ret=0 +BC did=bfa8ffff gx=47 gy=13 esi=1cf16110 +BR ret=0 +BC did=bfa9ffff gx=47 gy=14 esi=1cf154e0 +BR ret=0 +BC did=bfaaffff gx=47 gy=15 esi=1cf14d90 +BR ret=0 +BC did=bfabffff gx=47 gy=16 esi=1cf15888 +BR ret=0 +BC did=bfacffff gx=47 gy=17 esi=1cf14ec8 +BR ret=0 +BC did=bfadffff gx=47 gy=18 esi=1cf15d68 +BR ret=0 +BC did=bfaeffff gx=47 gy=19 esi=1cf16998 +BR ret=0 +BC did=bfafffff gx=47 gy=20 esi=1cf16860 +BR ret=0 +BC did=bfb0ffff gx=47 gy=21 esi=1cf15000 +BR ret=0 +BC did=bfb1ffff gx=47 gy=22 esi=1cf15270 +BR ret=0 +BC did=bfb2ffff gx=47 gy=23 esi=1cf15c30 +BR ret=0 +BC did=bfb3ffff gx=47 gy=24 esi=1cf153a8 +BR ret=0 +BC did=bfb4ffff gx=47 gy=25 esi=1cf16380 +BR ret=0 +BC did=bfb5ffff gx=47 gy=26 esi=1cf15618 +BR ret=0 +BC did=bfb6ffff gx=47 gy=27 esi=1cf14778 +BR ret=0 +BC did=bfb7ffff gx=47 gy=28 esi=1cf16c08 +BR ret=0 +BC did=bfb8ffff gx=47 gy=29 esi=1cf148b0 +BR ret=0 +BC did=bfb9ffff gx=47 gy=30 esi=1cf15750 +BR ret=0 +BC did=bfbaffff gx=47 gy=31 esi=1cf164b8 +BR ret=0 +BC did=bfbbffff gx=47 gy=32 esi=1cf16728 +BR ret=0 +BC did=bfbcffff gx=47 gy=33 esi=1cf165f0 +BR ret=0 +BC did=bfbdffff gx=47 gy=34 esi=1cf16248 +BR ret=0 +BC did=bfbeffff gx=47 gy=35 esi=1cf14b20 +BR ret=0 +BC did=bfbfffff gx=47 gy=36 esi=1cf16ad0 +BR ret=0 +BC did=bfc0ffff gx=47 gy=37 esi=1cf15ea0 +BR ret=0 +BC did=bfc1ffff gx=47 gy=38 esi=1cf18948 +BR ret=0 +BC did=bfc2ffff gx=47 gy=39 esi=1cf18a80 +BR ret=0 +BC did=bfc3ffff gx=47 gy=40 esi=1cf18bb8 +BR ret=0 +BC did=bfc4ffff gx=47 gy=41 esi=1cf17d18 +BR ret=0 +BC did=bfc5ffff gx=47 gy=42 esi=1cf17970 +BR ret=0 +BC did=bfc6ffff gx=47 gy=43 esi=1cf185a0 +BR ret=0 +BC did=bfc7ffff gx=47 gy=44 esi=1cf17220 +BR ret=0 +BC did=bfc8ffff gx=47 gy=45 esi=1cf18468 +BR ret=0 +BC did=bfc9ffff gx=47 gy=46 esi=1cf17be0 +BR ret=0 +BC did=bfcaffff gx=47 gy=47 esi=1cf18cf0 +BR ret=0 +BC did=bfcbffff gx=47 gy=48 esi=1cf191d0 +BR ret=0 +BC did=bfccffff gx=47 gy=49 esi=1cf17e50 +BR ret=0 +BC did=bfcdffff gx=47 gy=50 esi=1cf19308 +BR ret=0 +BC did=c09bffff gx=48 gy=0 esi=1cf19098 +BR ret=0 +BC did=c09cffff gx=48 gy=1 esi=1cf16fb0 +BR ret=0 +BC did=c09dffff gx=48 gy=2 esi=1cf17358 +BR ret=0 +BC did=c09effff gx=48 gy=3 esi=1cf17490 +BR ret=0 +BC did=c09fffff gx=48 gy=4 esi=1cf17aa8 +BR ret=0 +BC did=c0a0ffff gx=48 gy=5 esi=1cf18e28 +BR ret=0 +BC did=c0a1ffff gx=48 gy=6 esi=1cf17f88 +BR ret=0 +BC did=c0a2ffff gx=48 gy=7 esi=1cf180c0 +BR ret=0 +BC did=c0a3ffff gx=48 gy=8 esi=1cf181f8 +BR ret=0 +BC did=c0a4ffff gx=48 gy=9 esi=111924f8 +BR ret=0 +BC did=c0a5ffff gx=48 gy=10 esi=11191b38 +BR ret=0 +BC did=c0a6ffff gx=48 gy=11 esi=111928a0 +BR ret=0 +BC did=c0a7ffff gx=48 gy=12 esi=11191da8 +BR ret=0 +BC did=c0a8ffff gx=48 gy=13 esi=11193fc8 +BR ret=0 +BC did=c0a9ffff gx=48 gy=14 esi=11194e68 +BR ret=0 +BC did=c0aaffff gx=48 gy=15 esi=11194fa0 +BR ret=0 +BC did=c0abffff gx=48 gy=16 esi=11194bf8 +BR ret=0 +BC did=c0acffff gx=48 gy=17 esi=111950d8 +BR ret=0 +BC did=c0adffff gx=48 gy=18 esi=11194ac0 +BR ret=0 +BC did=c0aeffff gx=48 gy=19 esi=11193c20 +BR ret=0 +BC did=c0afffff gx=48 gy=20 esi=111945e0 +BR ret=0 +BC did=c0b0ffff gx=48 gy=21 esi=11194370 +BR ret=0 +BC did=c0b1ffff gx=48 gy=22 esi=11193ae8 +BR ret=0 +BC did=c0b2ffff gx=48 gy=23 esi=111939b0 +BR ret=0 +BC did=c0b3ffff gx=48 gy=24 esi=11194100 +BR ret=0 +BC did=c0b4ffff gx=48 gy=25 esi=11193d58 +BR ret=0 +BC did=c0b5ffff gx=48 gy=26 esi=11194718 +BR ret=0 +BC did=c0b6ffff gx=48 gy=27 esi=11194850 +BR ret=0 +BC did=c0b7ffff gx=48 gy=28 esi=11194238 +BR ret=0 +BC did=c0b8ffff gx=48 gy=29 esi=11193e90 +BR ret=0 +BC did=c0b9ffff gx=48 gy=30 esi=111944a8 +BR ret=0 +BC did=c0baffff gx=48 gy=31 esi=11194988 +BR ret=0 +BC did=c0bbffff gx=48 gy=32 esi=11194d30 +BR ret=0 +BC did=c0bcffff gx=48 gy=33 esi=16f00c90 +BR ret=0 +BC did=c0bdffff gx=48 gy=34 esi=16f02010 +BR ret=0 +BC did=c0beffff gx=48 gy=35 esi=16f01038 +BR ret=0 +BC did=c0bfffff gx=48 gy=36 esi=16f02148 +BR ret=0 +BC did=c0c0ffff gx=48 gy=37 esi=16f02898 +BR ret=0 +BC did=c0c1ffff gx=48 gy=38 esi=16f00dc8 +BR ret=0 +BC did=c0c2ffff gx=48 gy=39 esi=16f01650 +BR ret=0 +BC did=c0c3ffff gx=48 gy=40 esi=16f01b30 +BR ret=0 +BC did=c0c4ffff gx=48 gy=41 esi=16f01c68 +BR ret=0 +BC did=c0c5ffff gx=48 gy=42 esi=16f02628 +BR ret=0 +BC did=c0c6ffff gx=48 gy=43 esi=16f01170 +BR ret=0 +BC did=c0c7ffff gx=48 gy=44 esi=16f01788 +BR ret=0 +BC did=c0c8ffff gx=48 gy=45 esi=16f02760 +BR ret=0 +BC did=c0c9ffff gx=48 gy=46 esi=16f013e0 +BR ret=0 +BC did=c0caffff gx=48 gy=47 esi=16f008e8 +BR ret=0 +BC did=c0cbffff gx=48 gy=48 esi=16f01518 +BR ret=0 +BC did=c0ccffff gx=48 gy=49 esi=16f01da0 +BR ret=0 +BC did=c0cdffff gx=48 gy=50 esi=16f01ed8 +BR ret=0 +BC did=c19bffff gx=49 gy=0 esi=16f018c0 +BR ret=0 +BC did=c19cffff gx=49 gy=1 esi=16f02280 +BR ret=0 +BC did=c19dffff gx=49 gy=2 esi=16f029d0 +BR ret=0 +BC did=c19effff gx=49 gy=3 esi=16f02c40 +BR ret=0 +BC did=c19fffff gx=49 gy=4 esi=16f019f8 +BR ret=0 +BC did=c1a0ffff gx=49 gy=5 esi=16f023b8 +BR ret=0 +BC did=c1a1ffff gx=49 gy=6 esi=16f024f0 +BR ret=0 +BC did=c1a2ffff gx=49 gy=7 esi=16f02b08 +BR ret=0 +BC did=c1a3ffff gx=49 gy=8 esi=16f012a8 +BR ret=0 +BC did=c1a4ffff gx=49 gy=9 esi=16f02d78 +BR ret=0 +BC did=c1a5ffff gx=49 gy=10 esi=16f00f00 +BR ret=0 +BC did=c1a6ffff gx=49 gy=11 esi=16f007b0 +BR ret=0 +BC did=c1a7ffff gx=49 gy=12 esi=16f00a20 +BR ret=0 +BC did=c1a8ffff gx=49 gy=13 esi=16f00b58 +BR ret=0 +BC did=c1a9ffff gx=49 gy=14 esi=16f03e88 +BR ret=0 +BC did=c1aaffff gx=49 gy=15 esi=16f03258 +BR ret=0 +BC did=c1abffff gx=49 gy=16 esi=16f044a0 +BR ret=0 +BC did=c1acffff gx=49 gy=17 esi=16f03120 +BR ret=0 +BC did=c1adffff gx=49 gy=18 esi=16f03ae0 +BR ret=0 +BC did=c1aeffff gx=49 gy=19 esi=16f03870 +BR ret=0 +BC did=c1afffff gx=49 gy=20 esi=16f03c18 +BR ret=0 +BC did=c1b0ffff gx=49 gy=21 esi=16f039a8 +BR ret=0 +BC did=c1b1ffff gx=49 gy=22 esi=16f03fc0 +BR ret=0 +BC did=c1b2ffff gx=49 gy=23 esi=16f02eb0 +BR ret=0 +BC did=c1b3ffff gx=49 gy=24 esi=16f03738 +BR ret=0 +BC did=c1b4ffff gx=49 gy=25 esi=16f03d50 +BR ret=0 +BC did=c1b5ffff gx=49 gy=26 esi=16f045d8 +BR ret=0 +BC did=c1b6ffff gx=49 gy=27 esi=16f02fe8 +BR ret=0 +BC did=c1b7ffff gx=49 gy=28 esi=16f040f8 +BR ret=0 +BC did=c1b8ffff gx=49 gy=29 esi=16f04230 +BR ret=0 +BC did=c1b9ffff gx=49 gy=30 esi=16f04368 +BR ret=0 +BC did=c1baffff gx=49 gy=31 esi=16f03390 +BR ret=0 +BC did=c1bbffff gx=49 gy=32 esi=16f034c8 +BR ret=0 +BC did=c1bcffff gx=49 gy=33 esi=16f03600 +BR ret=0 +BC did=c1bdffff gx=49 gy=34 esi=11196770 +BR ret=0 +BC did=c1beffff gx=49 gy=35 esi=11197610 +BR ret=0 +BC did=c1bfffff gx=49 gy=36 esi=11196ec0 +BR ret=0 +BC did=c1c0ffff gx=49 gy=37 esi=11195ee8 +BR ret=0 +BC did=c1c1ffff gx=49 gy=38 esi=111953f0 +BR ret=0 +BC did=c1c2ffff gx=49 gy=39 esi=11197268 +BR ret=0 +BC did=c1c3ffff gx=49 gy=40 esi=111968a8 +BR ret=0 +BC did=c1c4ffff gx=49 gy=41 esi=111973a0 +BR ret=0 +BC did=c1c5ffff gx=49 gy=42 esi=11195798 +BR ret=0 +BC did=c1c6ffff gx=49 gy=43 esi=11196d88 +BR ret=0 +BC did=c1c7ffff gx=49 gy=44 esi=11196b18 +BR ret=0 +BC did=c1c8ffff gx=49 gy=45 esi=111974d8 +BR ret=0 +BC did=c1c9ffff gx=49 gy=46 esi=11196ff8 +BR ret=0 +BC did=c1caffff gx=49 gy=47 esi=11196020 +BR ret=0 +BC did=c1cbffff gx=49 gy=48 esi=111969e0 +BR ret=0 +BC did=c1ccffff gx=49 gy=49 esi=111958d0 +BR ret=0 +BC did=c1cdffff gx=49 gy=50 esi=11196158 +BR ret=0 +BC did=c29bffff gx=50 gy=0 esi=11196290 +BR ret=0 +BC did=c29cffff gx=50 gy=1 esi=11197130 +BR ret=0 +BC did=c29dffff gx=50 gy=2 esi=11196c50 +BR ret=0 +BC did=c29effff gx=50 gy=3 esi=11197748 +BR ret=0 +BC did=c29fffff gx=50 gy=4 esi=11197880 +BR ret=0 +BC did=c2a0ffff gx=50 gy=5 esi=11195a08 +BR ret=0 +BC did=c2a1ffff gx=50 gy=6 esi=111952b8 +BR ret=0 +BC did=c2a2ffff gx=50 gy=7 esi=11195528 +BR ret=0 +BC did=c2a3ffff gx=50 gy=8 esi=111963c8 +BR ret=0 +BC did=c2a4ffff gx=50 gy=9 esi=11196500 +BR ret=0 +BC did=c2a5ffff gx=50 gy=10 esi=11196638 +BR ret=0 +BC did=c2a6ffff gx=50 gy=11 esi=11195660 +BR ret=0 +BC did=c2a7ffff gx=50 gy=12 esi=11195b40 +BR ret=0 +BC did=c2a8ffff gx=50 gy=13 esi=11195c78 +BR ret=0 +BC did=c2a9ffff gx=50 gy=14 esi=11195db0 +BR ret=0 +BC did=c2aaffff gx=50 gy=15 esi=11197e98 +BR ret=0 +BC did=c2abffff gx=50 gy=16 esi=11198858 +BR ret=0 +BC did=c2acffff gx=50 gy=17 esi=111984b0 +BR ret=0 +BC did=c2adffff gx=50 gy=18 esi=111985e8 +BR ret=0 +BC did=c2aeffff gx=50 gy=19 esi=11198378 +BR ret=0 +BC did=c2afffff gx=50 gy=20 esi=11198ac8 +BR ret=0 +BC did=c2b0ffff gx=50 gy=21 esi=11197fd0 +BR ret=0 +BC did=c2b1ffff gx=50 gy=22 esi=111979b8 +BR ret=0 +BC did=c2b2ffff gx=50 gy=23 esi=11198720 +BR ret=0 +BC did=c2b3ffff gx=50 gy=24 esi=11198240 +BR ret=0 +BC did=c2b4ffff gx=50 gy=25 esi=11198990 +BR ret=0 +BC did=c2b5ffff gx=50 gy=26 esi=11197d60 +BR ret=0 +BC did=c2b6ffff gx=50 gy=27 esi=11198c00 +BR ret=0 +BC did=c2b7ffff gx=50 gy=28 esi=11198d38 +BR ret=0 +BC did=c2b8ffff gx=50 gy=29 esi=11197c28 +BR ret=0 +BC did=c2b9ffff gx=50 gy=30 esi=11197af0 +BR ret=0 +BC did=c2baffff gx=50 gy=31 esi=11198fa8 +BR ret=0 +BC did=c2bbffff gx=50 gy=32 esi=11198108 +BR ret=0 +BC did=c2bcffff gx=50 gy=33 esi=11198e70 +BR ret=0 +BC did=c2bdffff gx=50 gy=34 esi=111990e0 +BR ret=0 +BC did=c2beffff gx=50 gy=35 esi=1127f9b0 +BR ret=0 +BC did=c2bfffff gx=50 gy=36 esi=11280238 +BR ret=0 +BC did=c2c0ffff gx=50 gy=37 esi=1127f878 +BR ret=0 +BC did=c2c1ffff gx=50 gy=38 esi=1127f398 +BR ret=0 +BC did=c2c2ffff gx=50 gy=39 esi=1127fe90 +BR ret=0 +BC did=c2c3ffff gx=50 gy=40 esi=1127e018 +BR ret=0 +BC did=c2c4ffff gx=50 gy=41 esi=1127ed80 +BR ret=0 +BC did=c2c5ffff gx=50 gy=42 esi=1127fae8 +BR ret=0 +BC did=c2c6ffff gx=50 gy=43 esi=1127fc20 +BR ret=0 +BC did=c2c7ffff gx=50 gy=44 esi=1127dee0 +BR ret=0 +BC did=c2c8ffff gx=50 gy=45 esi=1127f4d0 +BR ret=0 +BC did=c2c9ffff gx=50 gy=46 esi=1127e150 +BR ret=0 +BC did=c2caffff gx=50 gy=47 esi=1127eeb8 +BR ret=0 +BC did=c2cbffff gx=50 gy=48 esi=1127e3c0 +BR ret=0 +BC did=c2ccffff gx=50 gy=49 esi=11280100 +BR ret=0 +BC did=c2cdffff gx=50 gy=50 esi=1127e288 +BR ret=0 +BC did=909bffff gx=0 gy=0 esi=1c63cac8 +BR ret=0 +BC did=909cffff gx=0 gy=1 esi=1c63e808 +BR ret=0 +BC did=909dffff gx=0 gy=2 esi=1c63de48 +BR ret=0 +BC did=909effff gx=0 gy=3 esi=1c63fa50 +BR ret=0 +BC did=909fffff gx=0 gy=4 esi=1c63daa0 +BR ret=0 +BC did=90a0ffff gx=0 gy=5 esi=1c63e6d0 +BR ret=0 +BC did=90a1ffff gx=0 gy=6 esi=1c63d830 +BR ret=0 +BC did=90a2ffff gx=0 gy=7 esi=1c63f300 +BR ret=0 +BC did=90a3ffff gx=0 gy=8 esi=1c63d968 +BR ret=0 +BC did=90a4ffff gx=0 gy=9 esi=1c63f918 +BR ret=0 +BC did=90a5ffff gx=0 gy=10 esi=1c63dd10 +BR ret=0 +BC did=90a6ffff gx=0 gy=11 esi=1c63e940 +BR ret=0 +BC did=90a7ffff gx=0 gy=12 esi=1c63e598 +BR ret=0 +BC did=90a8ffff gx=0 gy=13 esi=1c63e0b8 +BR ret=0 +BC did=90a9ffff gx=0 gy=14 esi=1c63fb88 +BR ret=0 +BC did=90aaffff gx=0 gy=15 esi=1c63ef58 +BR ret=0 +BC did=90abffff gx=0 gy=16 esi=1c63ea78 +BR ret=0 +BC did=90acffff gx=0 gy=17 esi=1c63e460 +BR ret=0 +BC did=90adffff gx=0 gy=18 esi=1c63f438 +BR ret=0 +BC did=90aeffff gx=0 gy=19 esi=1c63e1f0 +BR ret=0 +BC did=90afffff gx=0 gy=20 esi=1c63e328 +BR ret=0 +BC did=90b0ffff gx=0 gy=21 esi=1c63d5c0 +BR ret=0 +BC did=90b1ffff gx=0 gy=22 esi=1c63f6a8 +BR ret=0 +BC did=90b2ffff gx=0 gy=23 esi=1c63ebb0 +BR ret=0 +BC did=90b3ffff gx=0 gy=24 esi=1c63dbd8 +BR ret=0 +BC did=90b4ffff gx=0 gy=25 esi=1c63ece8 +BR ret=0 +BC did=90b5ffff gx=0 gy=26 esi=1c63f1c8 +BR ret=0 +BC did=90b6ffff gx=0 gy=27 esi=1c63ee20 +BR ret=0 +BC did=90b7ffff gx=0 gy=28 esi=1c63d6f8 +BR ret=0 +BC did=90b8ffff gx=0 gy=29 esi=1c63f090 +BR ret=0 +BC did=90b9ffff gx=0 gy=30 esi=1c63f570 +BR ret=0 +BC did=90baffff gx=0 gy=31 esi=1c63df80 +BR ret=0 +BC did=90bbffff gx=0 gy=32 esi=1c63f7e0 +BR ret=0 +BC did=90bcffff gx=0 gy=33 esi=1c63ff30 +BR ret=0 +BC did=90bdffff gx=0 gy=34 esi=1c6418c8 +BR ret=0 +BC did=90beffff gx=0 gy=35 esi=1c641a00 +BR ret=0 +BC did=90bfffff gx=0 gy=36 esi=1c6408f0 +BR ret=0 +BC did=90c0ffff gx=0 gy=37 esi=1c642018 +BR ret=0 +BC did=90c1ffff gx=0 gy=38 esi=1c6401a0 +BR ret=0 +BC did=90c2ffff gx=0 gy=39 esi=1c640f08 +BR ret=0 +BC did=90c3ffff gx=0 gy=40 esi=1c640068 +BR ret=0 +BC did=90c4ffff gx=0 gy=41 esi=1c641790 +BR ret=0 +BC did=90c5ffff gx=0 gy=42 esi=1c640dd0 +BR ret=0 +BC did=90c6ffff gx=0 gy=43 esi=1c641b38 +BR ret=0 +BC did=90c7ffff gx=0 gy=44 esi=1c641040 +BR ret=1 +BC did=90c8ffff gx=0 gy=45 esi=1c640548 +BR ret=1 +BC did=90c9ffff gx=0 gy=46 esi=1c6402d8 +BR ret=1 +BC did=90caffff gx=0 gy=47 esi=1c641658 +BR ret=1 +BC did=90cbffff gx=0 gy=48 esi=1c641178 +BR ret=0 +BC did=90ccffff gx=0 gy=49 esi=1c641c70 +BR ret=0 +BC did=90cdffff gx=0 gy=50 esi=1c640410 +BR ret=0 +BC did=919bffff gx=1 gy=0 esi=1c6412b0 +BR ret=0 +BC did=919cffff gx=1 gy=1 esi=1c63fcc0 +BR ret=0 +BC did=919dffff gx=1 gy=2 esi=1c641da8 +BR ret=0 +BC did=919effff gx=1 gy=3 esi=1c641ee0 +BR ret=0 +BC did=919fffff gx=1 gy=4 esi=1c640a28 +BR ret=0 +BC did=91a0ffff gx=1 gy=5 esi=1c640b60 +BR ret=0 +BC did=91a1ffff gx=1 gy=6 esi=1c642150 +BR ret=0 +BC did=91a2ffff gx=1 gy=7 esi=1c63fdf8 +BR ret=0 +BC did=91a3ffff gx=1 gy=8 esi=1c640680 +BR ret=0 +BC did=91a4ffff gx=1 gy=9 esi=1c6413e8 +BR ret=0 +BC did=91a5ffff gx=1 gy=10 esi=1c640c98 +BR ret=0 +BC did=91a6ffff gx=1 gy=11 esi=1c641520 +BR ret=0 +BC did=91a7ffff gx=1 gy=12 esi=1c642288 +BR ret=0 +BC did=91a8ffff gx=1 gy=13 esi=1c6407b8 +BR ret=0 +BC did=91a9ffff gx=1 gy=14 esi=1c6423c0 +BR ret=0 +BC did=91aaffff gx=1 gy=15 esi=1c6424f8 +BR ret=0 +BC did=91abffff gx=1 gy=16 esi=1c642630 +BR ret=0 +BC did=91acffff gx=1 gy=17 esi=1c623148 +BR ret=0 +BC did=91adffff gx=1 gy=18 esi=1c624d50 +BR ret=0 +BC did=91aeffff gx=1 gy=19 esi=1c623c40 +BR ret=0 +BC did=91afffff gx=1 gy=20 esi=1c624600 +BR ret=0 +BC did=91b0ffff gx=1 gy=21 esi=1c6244c8 +BR ret=0 +BC did=91b1ffff gx=1 gy=22 esi=1c624c18 +BR ret=0 +BC did=91b2ffff gx=1 gy=23 esi=1c622da0 +BR ret=0 +BC did=91b3ffff gx=1 gy=24 esi=1c623b08 +BR ret=0 +BC did=91b4ffff gx=1 gy=25 esi=1c622c68 +BR ret=0 +BC did=91b5ffff gx=1 gy=26 esi=1c624390 +BR ret=0 +BC did=91b6ffff gx=1 gy=27 esi=1c6239d0 +BR ret=0 +BC did=91b7ffff gx=1 gy=28 esi=1c624738 +BR ret=0 +BC did=91b8ffff gx=1 gy=29 esi=1c623d78 +BR ret=0 +BC did=91b9ffff gx=1 gy=30 esi=1c623eb0 +BR ret=0 +BC did=91baffff gx=1 gy=31 esi=1c624e88 +BR ret=0 +BC did=91bbffff gx=1 gy=32 esi=1c623760 +BR ret=0 +BC did=91bcffff gx=1 gy=33 esi=1c6228c0 +BR ret=0 +BC did=91bdffff gx=1 gy=34 esi=1c624120 +BR ret=0 +BC did=91beffff gx=1 gy=35 esi=1c6249a8 +BR ret=0 +BC did=91bfffff gx=1 gy=36 esi=1c624870 +BR ret=0 +BC did=91c0ffff gx=1 gy=37 esi=1c623280 +BR ret=0 +BC did=91c1ffff gx=1 gy=38 esi=1c623fe8 +BR ret=0 +BC did=91c2ffff gx=1 gy=39 esi=1c624ae0 +BR ret=0 +BC did=91c3ffff gx=1 gy=40 esi=1c623010 +BR ret=0 +BC did=91c4ffff gx=1 gy=41 esi=1c624258 +BR ret=0 +BC did=91c5ffff gx=1 gy=42 esi=1c6229f8 +BR ret=0 +BC did=91c6ffff gx=1 gy=43 esi=1c622b30 +BR ret=0 +BC did=91c7ffff gx=1 gy=44 esi=1c6234f0 +BR ret=1 +BC did=91c8ffff gx=1 gy=45 esi=1c622ed8 +BR ret=1 +BC did=91c9ffff gx=1 gy=46 esi=1c6233b8 +BR ret=1 +BC did=91caffff gx=1 gy=47 esi=1c623628 +BR ret=0 +BC did=91cbffff gx=1 gy=48 esi=1c623898 +BR ret=0 +BC did=91ccffff gx=1 gy=49 esi=1c626478 +BR ret=0 +BC did=91cdffff gx=1 gy=50 esi=1c625368 +BR ret=0 +BC did=929bffff gx=2 gy=0 esi=1c6270a8 +BR ret=0 +BC did=929cffff gx=2 gy=1 esi=1c625e60 +BR ret=0 +BC did=929dffff gx=2 gy=2 esi=1c6265b0 +BR ret=0 +BC did=929effff gx=2 gy=3 esi=1c626820 +BR ret=0 +BC did=929fffff gx=2 gy=4 esi=1c6250f8 +BR ret=0 +BC did=92a0ffff gx=2 gy=5 esi=1c6266e8 +BR ret=0 +BC did=92a1ffff gx=2 gy=6 esi=1c625d28 +BR ret=0 +BC did=92a2ffff gx=2 gy=7 esi=1c627588 +BR ret=0 +BC did=92a3ffff gx=2 gy=8 esi=1c625848 +BR ret=0 +BC did=92a4ffff gx=2 gy=9 esi=1c626a90 +BR ret=0 +BC did=92a5ffff gx=2 gy=10 esi=1c626f70 +BR ret=0 +BC did=92a6ffff gx=2 gy=11 esi=1c625710 +BR ret=0 +BC did=92a7ffff gx=2 gy=12 esi=1c626958 +BR ret=0 +BC did=92a8ffff gx=2 gy=13 esi=1c625bf0 +BR ret=0 +BC did=92a9ffff gx=2 gy=14 esi=1c625230 +BR ret=0 +BC did=92aaffff gx=2 gy=15 esi=1c625f98 +BR ret=0 +BC did=92abffff gx=2 gy=16 esi=1c626d00 +BR ret=0 +BC did=92acffff gx=2 gy=17 esi=1c625980 +BR ret=0 +BC did=92adffff gx=2 gy=18 esi=1c6254a0 +BR ret=0 +BC did=92aeffff gx=2 gy=19 esi=1c624fc0 +BR ret=0 +BC did=92afffff gx=2 gy=20 esi=1c625ab8 +BR ret=0 +BC did=92b0ffff gx=2 gy=21 esi=1c6255d8 +BR ret=0 +BC did=92b1ffff gx=2 gy=22 esi=1c626bc8 +BR ret=0 +BC did=92b2ffff gx=2 gy=23 esi=1c626e38 +BR ret=0 +BC did=92b3ffff gx=2 gy=24 esi=1c6271e0 +BR ret=0 +BC did=92b4ffff gx=2 gy=25 esi=1c6260d0 +BR ret=0 +BC did=92b5ffff gx=2 gy=26 esi=1c626208 +BR ret=0 +BC did=92b6ffff gx=2 gy=27 esi=1c627318 +BR ret=0 +BC did=92b7ffff gx=2 gy=28 esi=1c627450 +BR ret=0 +BC did=92b8ffff gx=2 gy=29 esi=1c626340 +BR ret=0 +BC did=92b9ffff gx=2 gy=30 esi=1c6281b8 +BR ret=0 +BC did=92baffff gx=2 gy=31 esi=1c627a68 +BR ret=0 +BC did=92bbffff gx=2 gy=32 esi=1c629190 +BR ret=0 +BC did=92bcffff gx=2 gy=33 esi=1c629c88 +BR ret=0 +BC did=92bdffff gx=2 gy=34 esi=1c628de8 +BR ret=0 +BC did=92beffff gx=2 gy=35 esi=1c6297a8 +BR ret=0 +BC did=92bfffff gx=2 gy=36 esi=1c628428 +BR ret=0 +BC did=92c0ffff gx=2 gy=37 esi=1c6277f8 +BR ret=0 +BC did=92c1ffff gx=2 gy=38 esi=1c627ba0 +BR ret=0 +BC did=92c2ffff gx=2 gy=39 esi=1c629b50 +BR ret=0 +BC did=92c3ffff gx=2 gy=40 esi=1c629670 +BR ret=0 +BC did=92c4ffff gx=2 gy=41 esi=1c628560 +BR ret=0 +BC did=92c5ffff gx=2 gy=42 esi=1c628f20 +BR ret=0 +BC did=92c6ffff gx=2 gy=43 esi=1c6276c0 +BR ret=1 +BC did=92c7ffff gx=2 gy=44 esi=1c629538 +BR ret=1 +BC did=92c8ffff gx=2 gy=45 esi=1c629400 +BR ret=1 +BC did=92c9ffff gx=2 gy=46 esi=1c627930 +BR ret=0 +BC did=92caffff gx=2 gy=47 esi=1c629a18 +BR ret=0 +BC did=92cbffff gx=2 gy=48 esi=1c627cd8 +BR ret=0 +BC did=92ccffff gx=2 gy=49 esi=1c629058 +BR ret=0 +BC did=92cdffff gx=2 gy=50 esi=1c628698 +BR ret=0 +BC did=939bffff gx=3 gy=0 esi=1c6282f0 +BR ret=0 +BC did=939cffff gx=3 gy=1 esi=1c6287d0 +BR ret=0 +BC did=939dffff gx=3 gy=2 esi=1c628908 +BR ret=0 +BC did=939effff gx=3 gy=3 esi=1c627e10 +BR ret=0 +BC did=939fffff gx=3 gy=4 esi=1c627f48 +BR ret=0 +BC did=93a0ffff gx=3 gy=5 esi=1c628a40 +BR ret=0 +BC did=93a1ffff gx=3 gy=6 esi=1c628080 +BR ret=0 +BC did=93a2ffff gx=3 gy=7 esi=1c628b78 +BR ret=0 +BC did=93a3ffff gx=3 gy=8 esi=1c628cb0 +BR ret=0 +BC did=93a4ffff gx=3 gy=9 esi=1c6292c8 +BR ret=0 +BC did=93a5ffff gx=3 gy=10 esi=1c6298e0 +BR ret=0 +BC did=93a6ffff gx=3 gy=11 esi=1c62ad98 +BR ret=0 +BC did=93a7ffff gx=3 gy=12 esi=1c62b140 +BR ret=0 +BC did=93a8ffff gx=3 gy=13 esi=1c62ac60 +BR ret=0 +BC did=93a9ffff gx=3 gy=14 esi=1c62a168 +BR ret=0 +BC did=93aaffff gx=3 gy=15 esi=1c62b4e8 +BR ret=0 +BC did=93abffff gx=3 gy=16 esi=1c62aed0 +BR ret=0 +BC did=93acffff gx=3 gy=17 esi=1c62b278 +BR ret=0 +BC did=93adffff gx=3 gy=18 esi=1c62bea8 +BR ret=0 +BC did=93aeffff gx=3 gy=19 esi=1c62b620 +BR ret=0 +BC did=93afffff gx=3 gy=20 esi=1c62b758 +BR ret=0 +BC did=93b0ffff gx=3 gy=21 esi=1c62b890 +BR ret=0 +BC did=93b1ffff gx=3 gy=22 esi=1c62b3b0 +BR ret=0 +BC did=93b2ffff gx=3 gy=23 esi=1c62a9f0 +BR ret=0 +BC did=93b3ffff gx=3 gy=24 esi=1c629dc0 +BR ret=0 +BC did=93b4ffff gx=3 gy=25 esi=1c62c118 +BR ret=0 +BC did=93b5ffff gx=3 gy=26 esi=1c62a030 +BR ret=0 +BC did=93b6ffff gx=3 gy=27 esi=1c62bd70 +BR ret=0 +BC did=93b7ffff gx=3 gy=28 esi=1c62ab28 +BR ret=0 +BC did=93b8ffff gx=3 gy=29 esi=1c62b008 +BR ret=0 +BC did=93b9ffff gx=3 gy=30 esi=1c62a648 +BR ret=0 +BC did=93baffff gx=3 gy=31 esi=1c62b9c8 +BR ret=0 +BC did=93bbffff gx=3 gy=32 esi=1c62a2a0 +BR ret=0 +BC did=93bcffff gx=3 gy=33 esi=1c62bb00 +BR ret=0 +BC did=93bdffff gx=3 gy=34 esi=1c62a3d8 +BR ret=0 +BC did=93beffff gx=3 gy=35 esi=1c62bc38 +BR ret=0 +BC did=93bfffff gx=3 gy=36 esi=1c62a510 +BR ret=0 +BC did=93c0ffff gx=3 gy=37 esi=1c62bfe0 +BR ret=0 +BC did=93c1ffff gx=3 gy=38 esi=1c62a780 +BR ret=0 +BC did=93c2ffff gx=3 gy=39 esi=1c62c250 +BR ret=0 +BC did=93c3ffff gx=3 gy=40 esi=1c62a8b8 +BR ret=0 +BC did=93c4ffff gx=3 gy=41 esi=1c62c388 +BR ret=0 +BC did=93c5ffff gx=3 gy=42 esi=1c629ef8 +BR ret=1 +BC did=93c6ffff gx=3 gy=43 esi=1c5265c8 +BR ret=1 +BC did=93c7ffff gx=3 gy=44 esi=1c524d68 +BR ret=1 +BC did=93c8ffff gx=3 gy=45 esi=15f19658 +BR ret=0 +BC did=93c9ffff gx=3 gy=46 esi=12d05788 +BR ret=0 +BC did=93caffff gx=3 gy=47 esi=1cdee930 +BR ret=0 +BC did=93cbffff gx=3 gy=48 esi=1cdefb78 +BR ret=0 +BC did=93ccffff gx=3 gy=49 esi=1cdef560 +BR ret=0 +BC did=93cdffff gx=3 gy=50 esi=1cdef698 +BR ret=0 +BC did=949bffff gx=4 gy=0 esi=1cdf0a18 +BR ret=0 +BC did=949cffff gx=4 gy=1 esi=1cdeea68 +BR ret=0 +BC did=949dffff gx=4 gy=2 esi=1cdf0538 +BR ret=0 +BC did=949effff gx=4 gy=3 esi=1cdeee10 +BR ret=0 +BC did=949fffff gx=4 gy=4 esi=1cdef908 +BR ret=0 +BC did=94a0ffff gx=4 gy=5 esi=1cdeeba0 +BR ret=0 +BC did=94a1ffff gx=4 gy=6 esi=1cdf0b50 +BR ret=0 +BC did=94a2ffff gx=4 gy=7 esi=1cdef7d0 +BR ret=0 +BC did=94a3ffff gx=4 gy=8 esi=1cdeecd8 +BR ret=0 +BC did=94a4ffff gx=4 gy=9 esi=1cdee7f8 +BR ret=0 +BC did=94a5ffff gx=4 gy=10 esi=1cdef428 +BR ret=0 +BC did=94a6ffff gx=4 gy=11 esi=1cdeef48 +BR ret=0 +BC did=94a7ffff gx=4 gy=12 esi=1cdee6c0 +BR ret=0 +BC did=94a8ffff gx=4 gy=13 esi=1cdf0400 +BR ret=0 +BC did=94a9ffff gx=4 gy=14 esi=1cdef080 +BR ret=0 +BC did=94aaffff gx=4 gy=15 esi=1cdefcb0 +BR ret=0 +BC did=94abffff gx=4 gy=16 esi=1cdefde8 +BR ret=0 +BC did=94acffff gx=4 gy=17 esi=1cdef1b8 +BR ret=0 +BC did=94adffff gx=4 gy=18 esi=1cdef2f0 +BR ret=0 +BC did=94aeffff gx=4 gy=19 esi=1cdefa40 +BR ret=0 +BC did=94afffff gx=4 gy=20 esi=1cdf0670 +BR ret=0 +BC did=94b0ffff gx=4 gy=21 esi=1cdf0190 +BR ret=0 +BC did=94b1ffff gx=4 gy=22 esi=1cdf02c8 +BR ret=0 +BC did=94b2ffff gx=4 gy=23 esi=1cdeff20 +BR ret=0 +BC did=94b3ffff gx=4 gy=24 esi=1cdf07a8 +BR ret=0 +BC did=94b4ffff gx=4 gy=25 esi=1cdf0058 +BR ret=0 +BC did=94b5ffff gx=4 gy=26 esi=1cdf0c88 +BR ret=0 +BC did=94b6ffff gx=4 gy=27 esi=1cdf08e0 +BR ret=0 +BC did=94b7ffff gx=4 gy=28 esi=1cdf2008 +BR ret=0 +BC did=94b8ffff gx=4 gy=29 esi=1cdf2d70 +BR ret=0 +BC did=94b9ffff gx=4 gy=30 esi=1cdf2278 +BR ret=0 +BC did=94baffff gx=4 gy=31 esi=1cdf1b28 +BR ret=0 +BC did=94bbffff gx=4 gy=32 esi=1cdf23b0 +BR ret=0 +BC did=94bcffff gx=4 gy=33 esi=1cdf24e8 +BR ret=0 +BC did=94bdffff gx=4 gy=34 esi=1cdf3118 +BR ret=0 +BC did=94beffff gx=4 gy=35 esi=1cdf2ea8 +BR ret=0 +BC did=94bfffff gx=4 gy=36 esi=1cdf18b8 +BR ret=0 +BC did=94c0ffff gx=4 gy=37 esi=1cdf1168 +BR ret=0 +BC did=94c1ffff gx=4 gy=38 esi=1cdf2620 +BR ret=0 +BC did=94c2ffff gx=4 gy=39 esi=1cdf2758 +BR ret=0 +BC did=94c3ffff gx=4 gy=40 esi=1cdf2890 +BR ret=0 +BC did=94c4ffff gx=4 gy=41 esi=1cdf1648 +BR ret=1 +BC did=94c5ffff gx=4 gy=42 esi=1cdf2fe0 +BR ret=1 +BC did=94c6ffff gx=4 gy=43 esi=1cdf1510 +BR ret=1 +BC did=94c7ffff gx=4 gy=44 esi=1cdf2140 +BR ret=0 +BC did=94c8ffff gx=4 gy=45 esi=1cdf1780 +BR ret=0 +BC did=94c9ffff gx=4 gy=46 esi=1cdf12a0 +BR ret=0 +BC did=94caffff gx=4 gy=47 esi=1cdf29c8 +BR ret=0 +BC did=94cbffff gx=4 gy=48 esi=1cdf2b00 +BR ret=0 +BC did=94ccffff gx=4 gy=49 esi=1cdf2c38 +BR ret=0 +BC did=94cdffff gx=4 gy=50 esi=1cdf19f0 +BR ret=0 +BC did=959bffff gx=5 gy=0 esi=1cdf3250 +BR ret=0 +BC did=959cffff gx=5 gy=1 esi=1cdf3388 +BR ret=0 +BC did=959dffff gx=5 gy=2 esi=1cdf13d8 +BR ret=0 +BC did=959effff gx=5 gy=3 esi=1cdf0dc0 +BR ret=0 +BC did=959fffff gx=5 gy=4 esi=1cdf1ed0 +BR ret=0 +BC did=95a0ffff gx=5 gy=5 esi=1cdf1c60 +BR ret=0 +BC did=95a1ffff gx=5 gy=6 esi=1cdf1d98 +BR ret=0 +BC did=95a2ffff gx=5 gy=7 esi=1cdf0ef8 +BR ret=0 +BC did=95a3ffff gx=5 gy=8 esi=1cdf1030 +BR ret=0 +BC did=95a4ffff gx=5 gy=9 esi=1cdf5470 +BR ret=0 +BC did=95a5ffff gx=5 gy=10 esi=1cdf4978 +BR ret=0 +BC did=95a6ffff gx=5 gy=11 esi=1cdf4228 +BR ret=0 +BC did=95a7ffff gx=5 gy=12 esi=1cdf4ab0 +BR ret=0 +BC did=95a8ffff gx=5 gy=13 esi=1cdf4498 +BR ret=0 +BC did=95a9ffff gx=5 gy=14 esi=1cdf5818 +BR ret=0 +BC did=95aaffff gx=5 gy=15 esi=1cdf3fb8 +BR ret=0 +BC did=95abffff gx=5 gy=16 esi=1cdf4840 +BR ret=0 +BC did=95acffff gx=5 gy=17 esi=1cdf40f0 +BR ret=0 +BC did=95adffff gx=5 gy=18 esi=1cdf5950 +BR ret=0 +BC did=95aeffff gx=5 gy=19 esi=1cdf45d0 +BR ret=0 +BC did=95afffff gx=5 gy=20 esi=1cdf3c10 +BR ret=0 +BC did=95b0ffff gx=5 gy=21 esi=1cdf3ad8 +BR ret=0 +BC did=95b1ffff gx=5 gy=22 esi=1cdf3730 +BR ret=0 +BC did=95b2ffff gx=5 gy=23 esi=1cdf4360 +BR ret=0 +BC did=95b3ffff gx=5 gy=24 esi=1cdf35f8 +BR ret=0 +BC did=95b4ffff gx=5 gy=25 esi=1cdf4be8 +BR ret=0 +BC did=95b5ffff gx=5 gy=26 esi=1cdf4d20 +BR ret=0 +BC did=95b6ffff gx=5 gy=27 esi=1cdf3d48 +BR ret=0 +BC did=95b7ffff gx=5 gy=28 esi=1cdf3e80 +BR ret=0 +BC did=95b8ffff gx=5 gy=29 esi=1cdf4f90 +BR ret=0 +BC did=95b9ffff gx=5 gy=30 esi=1cdf55a8 +BR ret=0 +BC did=95baffff gx=5 gy=31 esi=1cdf4708 +BR ret=0 +BC did=95bbffff gx=5 gy=32 esi=1cdf4e58 +BR ret=0 +BC did=95bcffff gx=5 gy=33 esi=1cdf50c8 +BR ret=0 +BC did=95bdffff gx=5 gy=34 esi=1cdf5338 +BR ret=0 +BC did=95beffff gx=5 gy=35 esi=1cdf5200 +BR ret=0 +BC did=95bfffff gx=5 gy=36 esi=1cdf56e0 +BR ret=0 +BC did=95c0ffff gx=5 gy=37 esi=1cdf5a88 +BR ret=0 +BC did=95c1ffff gx=5 gy=38 esi=1cdf39a0 +BR ret=0 +BC did=95c2ffff gx=5 gy=39 esi=1cdf34c0 +BR ret=0 +BC did=95c3ffff gx=5 gy=40 esi=1cdf3868 +BR ret=1 +BC did=95c4ffff gx=5 gy=41 esi=1cdf7420 +BR ret=1 +BC did=95c5ffff gx=5 gy=42 esi=1cdf7558 +BR ret=1 +BC did=95c6ffff gx=5 gy=43 esi=1cdf7690 +BR ret=1 +BC did=95c7ffff gx=5 gy=44 esi=1cdf7078 +BR ret=0 +BC did=95c8ffff gx=5 gy=45 esi=1cdf67f0 +BR ret=0 +BC did=95c9ffff gx=5 gy=46 esi=1cdf5bc0 +BR ret=0 +BC did=95caffff gx=5 gy=47 esi=1cdf8050 +BR ret=0 +BC did=95cbffff gx=5 gy=48 esi=1cdf7f18 +BR ret=0 +BC did=95ccffff gx=5 gy=49 esi=1cdf7b70 +BR ret=0 +BC did=95cdffff gx=5 gy=50 esi=1cdf6a60 +BR ret=0 +BC did=969bffff gx=6 gy=0 esi=1cdf8188 +BR ret=0 +BC did=969cffff gx=6 gy=1 esi=1cdf71b0 +BR ret=0 +BC did=969dffff gx=6 gy=2 esi=1cdf6b98 +BR ret=0 +BC did=969effff gx=6 gy=3 esi=1cdf5cf8 +BR ret=0 +BC did=969fffff gx=6 gy=4 esi=1cdf66b8 +BR ret=0 +BC did=96a0ffff gx=6 gy=5 esi=1cdf6f40 +BR ret=0 +BC did=96a1ffff gx=6 gy=6 esi=1cdf6928 +BR ret=0 +BC did=96a2ffff gx=6 gy=7 esi=1cdf5e30 +BR ret=0 +BC did=96a3ffff gx=6 gy=8 esi=1cdf6cd0 +BR ret=0 +BC did=96a4ffff gx=6 gy=9 esi=1cdf6310 +BR ret=0 +BC did=96a5ffff gx=6 gy=10 esi=1cdf61d8 +BR ret=0 +BC did=96a6ffff gx=6 gy=11 esi=1cdf5f68 +BR ret=0 +BC did=96a7ffff gx=6 gy=12 esi=1cdf6e08 +BR ret=0 +BC did=96a8ffff gx=6 gy=13 esi=1cdf60a0 +BR ret=0 +BC did=96a9ffff gx=6 gy=14 esi=1cdf6448 +BR ret=0 +BC did=96aaffff gx=6 gy=15 esi=1cdf72e8 +BR ret=0 +BC did=96abffff gx=6 gy=16 esi=1cdf77c8 +BR ret=0 +BC did=96acffff gx=6 gy=17 esi=1cdf6580 +BR ret=0 +BC did=96adffff gx=6 gy=18 esi=1cdf7900 +BR ret=0 +BC did=96aeffff gx=6 gy=19 esi=1cdf7a38 +BR ret=0 +BC did=96afffff gx=6 gy=20 esi=1cdf7ca8 +BR ret=0 +BC did=96b0ffff gx=6 gy=21 esi=1cdf7de0 +BR ret=0 +BC did=96b1ffff gx=6 gy=22 esi=1cdf98b0 +BR ret=0 +BC did=96b2ffff gx=6 gy=23 esi=1cdf8a10 +BR ret=0 +BC did=96b3ffff gx=6 gy=24 esi=1cdf8b48 +BR ret=0 +BC did=96b4ffff gx=6 gy=25 esi=1cdf9d90 +BR ret=0 +BC did=96b5ffff gx=6 gy=26 esi=1cdfa270 +BR ret=0 +BC did=96b6ffff gx=6 gy=27 esi=1cdf8c80 +BR ret=0 +BC did=96b7ffff gx=6 gy=28 esi=1cdfa618 +BR ret=0 +BC did=96b8ffff gx=6 gy=29 esi=1cdfa3a8 +BR ret=0 +BC did=96b9ffff gx=6 gy=30 esi=1cdf8ef0 +BR ret=0 +BC did=96baffff gx=6 gy=31 esi=1cdf93d0 +BR ret=0 +BC did=96bbffff gx=6 gy=32 esi=1cdf8db8 +BR ret=0 +BC did=96bcffff gx=6 gy=33 esi=1cdf9028 +BR ret=0 +BC did=96bdffff gx=6 gy=34 esi=1cdf99e8 +BR ret=0 +BC did=96beffff gx=6 gy=35 esi=1cdf9298 +BR ret=0 +BC did=96bfffff gx=6 gy=36 esi=1cdfa750 +BR ret=0 +BC did=96c0ffff gx=6 gy=37 esi=1cdf9160 +BR ret=0 +BC did=96c1ffff gx=6 gy=38 esi=1cdf9ec8 +BR ret=0 +BC did=96c2ffff gx=6 gy=39 esi=1cdf9508 +BR ret=0 +BC did=96c3ffff gx=6 gy=40 esi=1cdfa4e0 +BR ret=1 +BC did=96c4ffff gx=6 gy=41 esi=1cdf9640 +BR ret=1 +BC did=96c5ffff gx=6 gy=42 esi=1cdfa888 +BR ret=1 +BC did=96c6ffff gx=6 gy=43 esi=1cdf9778 +BR ret=0 +BC did=96c7ffff gx=6 gy=44 esi=1cdf82c0 +BR ret=0 +BC did=96c8ffff gx=6 gy=45 esi=1cdf9b20 +BR ret=0 +BC did=96c9ffff gx=6 gy=46 esi=1cdf9c58 +BR ret=0 +BC did=96caffff gx=6 gy=47 esi=1cdfa000 +BR ret=0 +BC did=96cbffff gx=6 gy=48 esi=1cdf87a0 +BR ret=0 +BC did=96ccffff gx=6 gy=49 esi=1cdfa138 +BR ret=0 +BC did=96cdffff gx=6 gy=50 esi=1cdf83f8 +BR ret=0 +BC did=979bffff gx=7 gy=0 esi=1cdf8530 +BR ret=0 +BC did=979cffff gx=7 gy=1 esi=1cdf8668 +BR ret=0 +BC did=979dffff gx=7 gy=2 esi=1cdf88d8 +BR ret=0 +BC did=979effff gx=7 gy=3 esi=1cdfa9c0 +BR ret=0 +BC did=979fffff gx=7 gy=4 esi=1cdfc838 +BR ret=0 +BC did=97a0ffff gx=7 gy=5 esi=1cdfbfb0 +BR ret=0 +BC did=97a1ffff gx=7 gy=6 esi=1cdfb728 +BR ret=0 +BC did=97a2ffff gx=7 gy=7 esi=1cdfb860 +BR ret=0 +BC did=97a3ffff gx=7 gy=8 esi=1cdfc5c8 +BR ret=0 +BC did=97a4ffff gx=7 gy=9 esi=1cdfc970 +BR ret=0 +BC did=97a5ffff gx=7 gy=10 esi=1cdfcbe0 +BR ret=0 +BC did=97a6ffff gx=7 gy=11 esi=1cdfc0e8 +BR ret=0 +BC did=97a7ffff gx=7 gy=12 esi=1cdfb998 +BR ret=0 +BC did=97a8ffff gx=7 gy=13 esi=1cdfcd18 +BR ret=0 +BC did=97a9ffff gx=7 gy=14 esi=1cdfb5f0 +BR ret=0 +BC did=97aaffff gx=7 gy=15 esi=1cdfaaf8 +BR ret=0 +BC did=97abffff gx=7 gy=16 esi=1cdfbad0 +BR ret=0 +BC did=97acffff gx=7 gy=17 esi=1cdfc700 +BR ret=0 +BC did=97adffff gx=7 gy=18 esi=1cdfb380 +BR ret=0 +BC did=97aeffff gx=7 gy=19 esi=1cdfaea0 +BR ret=0 +BC did=97afffff gx=7 gy=20 esi=1cdfcaa8 +BR ret=0 +BC did=97b0ffff gx=7 gy=21 esi=1cdfb248 +BR ret=0 +BC did=97b1ffff gx=7 gy=22 esi=1cdfb4b8 +BR ret=0 +BC did=97b2ffff gx=7 gy=23 esi=1cdfac30 +BR ret=0 +BC did=97b3ffff gx=7 gy=24 esi=1cdfbe78 +BR ret=0 +BC did=97b4ffff gx=7 gy=25 esi=1cdfad68 +BR ret=0 +BC did=97b5ffff gx=7 gy=26 esi=1cdfce50 +BR ret=0 +BC did=97b6ffff gx=7 gy=27 esi=1cdfcf88 +BR ret=0 +BC did=97b7ffff gx=7 gy=28 esi=1cdfbc08 +BR ret=0 +BC did=97b8ffff gx=7 gy=29 esi=1cdfc220 +BR ret=0 +BC did=97b9ffff gx=7 gy=30 esi=1cdfbd40 +BR ret=0 +BC did=97baffff gx=7 gy=31 esi=1cdfafd8 +BR ret=0 +BC did=97bbffff gx=7 gy=32 esi=1cdfb110 +BR ret=0 +BC did=97bcffff gx=7 gy=33 esi=1cdfc358 +BR ret=0 +BC did=97bdffff gx=7 gy=34 esi=1cdfc490 +BR ret=0 +BC did=97beffff gx=7 gy=35 esi=1cdfecc8 +BR ret=0 +BC did=97bfffff gx=7 gy=36 esi=1cdfdf60 +BR ret=0 +BC did=97c0ffff gx=7 gy=37 esi=1cdff070 +BR ret=0 +BC did=97c1ffff gx=7 gy=38 esi=1cdfda80 +BR ret=0 +BC did=97c2ffff gx=7 gy=39 esi=1cdff550 +BR ret=1 +BC did=97c3ffff gx=7 gy=40 esi=1cdfd5a0 +BR ret=1 +BC did=97c4ffff gx=7 gy=41 esi=1cdff688 +BR ret=1 +BC did=97c5ffff gx=7 gy=42 esi=1cdff1a8 +BR ret=0 +BC did=97c6ffff gx=7 gy=43 esi=1cdfde28 +BR ret=0 +BC did=97c7ffff gx=7 gy=44 esi=1cdfe920 +BR ret=0 +BC did=97c8ffff gx=7 gy=45 esi=1cdfd0c0 +BR ret=0 +BC did=97c9ffff gx=7 gy=46 esi=1cdfef38 +BR ret=0 +BC did=97caffff gx=7 gy=47 esi=1cdff2e0 +BR ret=0 +BC did=97cbffff gx=7 gy=48 esi=1cdfeb90 +BR ret=0 +BC did=97ccffff gx=7 gy=49 esi=1cdfd1f8 +BR ret=0 +BC did=97cdffff gx=7 gy=50 esi=1cdff418 +BR ret=0 +BC did=989bffff gx=8 gy=0 esi=1cdfd468 +BR ret=0 +BC did=989cffff gx=8 gy=1 esi=1cdfd6d8 +BR ret=0 +BC did=989dffff gx=8 gy=2 esi=1cdfee00 +BR ret=0 +BC did=989effff gx=8 gy=3 esi=1cdfd330 +BR ret=0 +BC did=989fffff gx=8 gy=4 esi=1cdfe7e8 +BR ret=0 +BC did=98a0ffff gx=8 gy=5 esi=1cdfd810 +BR ret=0 +BC did=98a1ffff gx=8 gy=6 esi=1cdfd948 +BR ret=0 +BC did=98a2ffff gx=8 gy=7 esi=1cdfdbb8 +BR ret=0 +BC did=98a3ffff gx=8 gy=8 esi=1cdfdcf0 +BR ret=0 +BC did=98a4ffff gx=8 gy=9 esi=1cdfe098 +BR ret=0 +BC did=98a5ffff gx=8 gy=10 esi=1cdfe1d0 +BR ret=0 +BC did=98a6ffff gx=8 gy=11 esi=1cdfea58 +BR ret=0 +BC did=98a7ffff gx=8 gy=12 esi=1cdfe308 +BR ret=0 +BC did=98a8ffff gx=8 gy=13 esi=1cdfe440 +BR ret=0 +BC did=98a9ffff gx=8 gy=14 esi=1cdfe578 +BR ret=0 +BC did=98aaffff gx=8 gy=15 esi=1cdfe6b0 +BR ret=0 +BC did=98abffff gx=8 gy=16 esi=1ce00048 +BR ret=0 +BC did=98acffff gx=8 gy=17 esi=1ce01c50 +BR ret=0 +BC did=98adffff gx=8 gy=18 esi=1ce002b8 +BR ret=0 +BC did=98aeffff gx=8 gy=19 esi=1ce00180 +BR ret=0 +BC did=98afffff gx=8 gy=20 esi=1ce01158 +BR ret=0 +BC did=98b0ffff gx=8 gy=21 esi=1cdffb68 +BR ret=0 +BC did=98b1ffff gx=8 gy=22 esi=1ce003f0 +BR ret=0 +BC did=98b2ffff gx=8 gy=23 esi=1ce00528 +BR ret=0 +BC did=98b3ffff gx=8 gy=24 esi=1cdfff10 +BR ret=0 +BC did=98b4ffff gx=8 gy=25 esi=1ce00db0 +BR ret=0 +BC did=98b5ffff gx=8 gy=26 esi=1ce00660 +BR ret=0 +BC did=98b6ffff gx=8 gy=27 esi=1ce00798 +BR ret=0 +BC did=98b7ffff gx=8 gy=28 esi=1ce013c8 +BR ret=0 +BC did=98b8ffff gx=8 gy=29 esi=1ce008d0 +BR ret=0 +BC did=98b9ffff gx=8 gy=30 esi=1ce00a08 +BR ret=0 +BC did=98baffff gx=8 gy=31 esi=1ce00b40 +BR ret=0 +BC did=98bbffff gx=8 gy=32 esi=1ce01638 +BR ret=0 +BC did=98bcffff gx=8 gy=33 esi=1ce00c78 +BR ret=0 +BC did=98bdffff gx=8 gy=34 esi=1ce00ee8 +BR ret=0 +BC did=98beffff gx=8 gy=35 esi=1cdffca0 +BR ret=0 +BC did=98bfffff gx=8 gy=36 esi=1ce01020 +BR ret=0 +BC did=98c0ffff gx=8 gy=37 esi=1ce01290 +BR ret=0 +BC did=98c1ffff gx=8 gy=38 esi=1ce01500 +BR ret=1 +BC did=98c2ffff gx=8 gy=39 esi=1ce01770 +BR ret=1 +BC did=98c3ffff gx=8 gy=40 esi=1ce018a8 +BR ret=1 +BC did=98c4ffff gx=8 gy=41 esi=1ce019e0 +BR ret=0 +BC did=98c5ffff gx=8 gy=42 esi=1ce01b18 +BR ret=0 +BC did=98c6ffff gx=8 gy=43 esi=1cdffdd8 +BR ret=0 +BC did=98c7ffff gx=8 gy=44 esi=1ce01d88 +BR ret=0 +BC did=98c8ffff gx=8 gy=45 esi=1cdff7c0 +BR ret=0 +BC did=98c9ffff gx=8 gy=46 esi=1cdff8f8 +BR ret=0 +BC did=98caffff gx=8 gy=47 esi=1cdffa30 +BR ret=0 +BC did=98cbffff gx=8 gy=48 esi=1ce02fd0 +BR ret=0 +BC did=98ccffff gx=8 gy=49 esi=1ce02610 +BR ret=0 +BC did=98cdffff gx=8 gy=50 esi=1ce03108 +BR ret=0 +BC did=999bffff gx=9 gy=0 esi=1ce02748 +BR ret=0 +BC did=999cffff gx=9 gy=1 esi=1ce03e70 +BR ret=0 +BC did=999dffff gx=9 gy=2 esi=1ce03990 +BR ret=0 +BC did=999effff gx=9 gy=3 esi=1ce03c00 +BR ret=0 +BC did=999fffff gx=9 gy=4 esi=1ce03ac8 +BR ret=0 +BC did=99a0ffff gx=9 gy=5 esi=1ce02d60 +BR ret=0 +BC did=99a1ffff gx=9 gy=6 esi=1ce02af0 +BR ret=0 +BC did=99a2ffff gx=9 gy=7 esi=1ce02880 +BR ret=0 +BC did=99a3ffff gx=9 gy=8 esi=1ce03d38 +BR ret=0 +BC did=99a4ffff gx=9 gy=9 esi=1ce02c28 +BR ret=0 +BC did=99a5ffff gx=9 gy=10 esi=1ce02268 +BR ret=0 +BC did=99a6ffff gx=9 gy=11 esi=1ce02e98 +BR ret=0 +BC did=99a7ffff gx=9 gy=12 esi=1ce03240 +BR ret=0 +BC did=99a8ffff gx=9 gy=13 esi=1ce04350 +BR ret=0 +BC did=99a9ffff gx=9 gy=14 esi=1ce03378 +BR ret=0 +BC did=99aaffff gx=9 gy=15 esi=1ce04488 +BR ret=0 +BC did=99abffff gx=9 gy=16 esi=1ce03720 +BR ret=0 +BC did=99acffff gx=9 gy=17 esi=1ce03fa8 +BR ret=0 +BC did=99adffff gx=9 gy=18 esi=1ce040e0 +BR ret=0 +BC did=99aeffff gx=9 gy=19 esi=1ce029b8 +BR ret=0 +BC did=99afffff gx=9 gy=20 esi=1ce035e8 +BR ret=0 +BC did=99b0ffff gx=9 gy=21 esi=1ce04218 +BR ret=0 +BC did=99b1ffff gx=9 gy=22 esi=1ce034b0 +BR ret=0 +BC did=99b2ffff gx=9 gy=23 esi=1ce03858 +BR ret=0 +BC did=99b3ffff gx=9 gy=24 esi=1ce01ec0 +BR ret=0 +BC did=99b4ffff gx=9 gy=25 esi=1ce01ff8 +BR ret=0 +BC did=99b5ffff gx=9 gy=26 esi=1ce023a0 +BR ret=0 +BC did=99b6ffff gx=9 gy=27 esi=1ce02130 +BR ret=0 +BC did=99b7ffff gx=9 gy=28 esi=1ce024d8 +BR ret=0 +BC did=99b8ffff gx=9 gy=29 esi=1ce04d10 +BR ret=0 +BC did=99b9ffff gx=9 gy=30 esi=1ce056d0 +BR ret=0 +BC did=99baffff gx=9 gy=31 esi=1ce05e20 +BR ret=0 +BC did=99bbffff gx=9 gy=32 esi=1ce066a8 +BR ret=0 +BC did=99bcffff gx=9 gy=33 esi=1ce05f58 +BR ret=0 +BC did=99bdffff gx=9 gy=34 esi=1ce06090 +BR ret=0 +BC did=99beffff gx=9 gy=35 esi=1ce061c8 +BR ret=0 +BC did=99bfffff gx=9 gy=36 esi=1ce05808 +BR ret=0 +BC did=99c0ffff gx=9 gy=37 esi=1ce051f0 +BR ret=1 +BC did=99c1ffff gx=9 gy=38 esi=1ce045c0 +BR ret=1 +BC did=99c2ffff gx=9 gy=39 esi=1ce06a50 +BR ret=1 +BC did=99c3ffff gx=9 gy=40 esi=1ce06918 +BR ret=0 +BC did=99c4ffff gx=9 gy=41 esi=1ce06570 +BR ret=0 +BC did=99c5ffff gx=9 gy=42 esi=1ce05328 +BR ret=0 +BC did=99c6ffff gx=9 gy=43 esi=1ce046f8 +BR ret=0 +BC did=99c7ffff gx=9 gy=44 esi=1ce067e0 +BR ret=0 +BC did=99c8ffff gx=9 gy=45 esi=1ce06b88 +BR ret=0 +BC did=99c9ffff gx=9 gy=46 esi=1ce05a78 +BR ret=0 +BC did=99caffff gx=9 gy=47 esi=1ce04830 +BR ret=0 +BC did=99cbffff gx=9 gy=48 esi=1ce05940 +BR ret=0 +BC did=99ccffff gx=9 gy=49 esi=1ce04968 +BR ret=0 +BC did=99cdffff gx=9 gy=50 esi=1ce04aa0 +BR ret=0 +BC did=9a9bffff gx=10 gy=0 esi=1ce04bd8 +BR ret=0 +BC did=9a9cffff gx=10 gy=1 esi=1ce06300 +BR ret=0 +BC did=9a9dffff gx=10 gy=2 esi=1ce04e48 +BR ret=0 +BC did=9a9effff gx=10 gy=3 esi=1ce04f80 +BR ret=0 +BC did=9a9fffff gx=10 gy=4 esi=1ce050b8 +BR ret=0 +BC did=9aa0ffff gx=10 gy=5 esi=1ce05460 +BR ret=0 +BC did=9aa1ffff gx=10 gy=6 esi=1ce05598 +BR ret=0 +BC did=9aa2ffff gx=10 gy=7 esi=1ce05bb0 +BR ret=0 +BC did=9aa3ffff gx=10 gy=8 esi=1ce05ce8 +BR ret=0 +BC did=9aa4ffff gx=10 gy=9 esi=1ce06438 +BR ret=0 +BC did=9aa5ffff gx=10 gy=10 esi=1ce07548 +BR ret=0 +BC did=9aa6ffff gx=10 gy=11 esi=1ce07068 +BR ret=0 +BC did=9aa7ffff gx=10 gy=12 esi=1ce08da8 +BR ret=0 +BC did=9aa8ffff gx=10 gy=13 esi=1ce08790 +BR ret=0 +BC did=9aa9ffff gx=10 gy=14 esi=1ce07680 +BR ret=0 +BC did=9aaaffff gx=10 gy=15 esi=1ce07b60 +BR ret=0 +BC did=9aabffff gx=10 gy=16 esi=1ce06f30 +BR ret=0 +BC did=9aacffff gx=10 gy=17 esi=1ce08a00 +BR ret=0 +BC did=9aadffff gx=10 gy=18 esi=1ce082b0 +BR ret=0 +BC did=9aaeffff gx=10 gy=19 esi=1ce083e8 +BR ret=0 +BC did=9aafffff gx=10 gy=20 esi=1ce07c98 +BR ret=0 +BC did=9ab0ffff gx=10 gy=21 esi=1ce071a0 +BR ret=0 +BC did=9ab1ffff gx=10 gy=22 esi=1ce08658 +BR ret=0 +BC did=9ab2ffff gx=10 gy=23 esi=1ce088c8 +BR ret=0 +BC did=9ab3ffff gx=10 gy=24 esi=1ce072d8 +BR ret=0 +BC did=9ab4ffff gx=10 gy=25 esi=1ce078f0 +BR ret=0 +BC did=9ab5ffff gx=10 gy=26 esi=1ce077b8 +BR ret=0 +BC did=9ab6ffff gx=10 gy=27 esi=1ce07410 +BR ret=0 +BC did=9ab7ffff gx=10 gy=28 esi=1ce08ee0 +BR ret=0 +BC did=9ab8ffff gx=10 gy=29 esi=1ce09018 +BR ret=0 +BC did=9ab9ffff gx=10 gy=30 esi=1ce07a28 +BR ret=0 +BC did=9abaffff gx=10 gy=31 esi=1ce07dd0 +BR ret=0 +BC did=9abbffff gx=10 gy=32 esi=1ce08520 +BR ret=0 +BC did=9abcffff gx=10 gy=33 esi=1ce09150 +BR ret=0 +BC did=9abdffff gx=10 gy=34 esi=1ce08b38 +BR ret=0 +BC did=9abeffff gx=10 gy=35 esi=1ce08c70 +BR ret=0 +BC did=9abfffff gx=10 gy=36 esi=1ce09288 +BR ret=1 +BC did=9ac0ffff gx=10 gy=37 esi=1ce06cc0 +BR ret=1 +BC did=9ac1ffff gx=10 gy=38 esi=1ce06df8 +BR ret=1 +BC did=9ac2ffff gx=10 gy=39 esi=1ce07f08 +BR ret=0 +BC did=9ac3ffff gx=10 gy=40 esi=1ce08040 +BR ret=0 +BC did=9ac4ffff gx=10 gy=41 esi=1ce08178 +BR ret=0 +BC did=9ac5ffff gx=10 gy=42 esi=1ce0b370 +BR ret=0 +BC did=9ac6ffff gx=10 gy=43 esi=1ce0a128 +BR ret=0 +BC did=9ac7ffff gx=10 gy=44 esi=1ce0ac20 +BR ret=0 +BC did=9ac8ffff gx=10 gy=45 esi=1ce0b850 +BR ret=0 +BC did=9ac9ffff gx=10 gy=46 esi=1ce0a740 +BR ret=0 +BC did=9acaffff gx=10 gy=47 esi=1ce0b4a8 +BR ret=0 +BC did=9acbffff gx=10 gy=48 esi=1ce093c0 +BR ret=0 +BC did=9accffff gx=10 gy=49 esi=1ce09768 +BR ret=0 +BC did=9acdffff gx=10 gy=50 esi=1ce094f8 +BR ret=0 +BC did=9b9bffff gx=11 gy=0 esi=1ce0aae8 +BR ret=0 +BC did=9b9cffff gx=11 gy=1 esi=1ce0a398 +BR ret=0 +BC did=9b9dffff gx=11 gy=2 esi=1ce0a260 +BR ret=0 +BC did=9b9effff gx=11 gy=3 esi=1ce0ad58 +BR ret=0 +BC did=9b9fffff gx=11 gy=4 esi=1ce0ae90 +BR ret=0 +BC did=9ba0ffff gx=11 gy=5 esi=1ce09ff0 +BR ret=0 +BC did=9ba1ffff gx=11 gy=6 esi=1ce09630 +BR ret=0 +BC did=9ba2ffff gx=11 gy=7 esi=1ce0a4d0 +BR ret=0 +BC did=9ba3ffff gx=11 gy=8 esi=1ce0b100 +BR ret=0 +BC did=9ba4ffff gx=11 gy=9 esi=1ce09d80 +BR ret=0 +BC did=9ba5ffff gx=11 gy=10 esi=1ce0a608 +BR ret=0 +BC did=9ba6ffff gx=11 gy=11 esi=1ce0b238 +BR ret=0 +BC did=9ba7ffff gx=11 gy=12 esi=1ce0a878 +BR ret=0 +BC did=9ba8ffff gx=11 gy=13 esi=1ce098a0 +BR ret=0 +BC did=9ba9ffff gx=11 gy=14 esi=1ce0a9b0 +BR ret=0 +BC did=9baaffff gx=11 gy=15 esi=1ce0b988 +BR ret=0 +BC did=9babffff gx=11 gy=16 esi=1ce099d8 +BR ret=0 +BC did=9bacffff gx=11 gy=17 esi=1ce0b5e0 +BR ret=0 +BC did=9badffff gx=11 gy=18 esi=1ce0b718 +BR ret=0 +BC did=9baeffff gx=11 gy=19 esi=1ce0afc8 +BR ret=0 +BC did=9bafffff gx=11 gy=20 esi=1ce09b10 +BR ret=0 +BC did=9bb0ffff gx=11 gy=21 esi=1ce09c48 +BR ret=0 +BC did=9bb1ffff gx=11 gy=22 esi=1ce09eb8 +BR ret=0 +BC did=9bb2ffff gx=11 gy=23 esi=1ce0be68 +BR ret=0 +BC did=9bb3ffff gx=11 gy=24 esi=1ce0d590 +BR ret=0 +BC did=9bb4ffff gx=11 gy=25 esi=1ce0cbd0 +BR ret=0 +BC did=9bb5ffff gx=11 gy=26 esi=1ce0c210 +BR ret=0 +BC did=9bb6ffff gx=11 gy=27 esi=1ce0cd08 +BR ret=0 +BC did=9bb7ffff gx=11 gy=28 esi=1ce0c348 +BR ret=0 +BC did=9bb8ffff gx=11 gy=29 esi=1ce0bfa0 +BR ret=0 +BC did=9bb9ffff gx=11 gy=30 esi=1ce0d458 +BR ret=0 +BC did=9bbaffff gx=11 gy=31 esi=1ce0d1e8 +BR ret=0 +BC did=9bbbffff gx=11 gy=32 esi=1ce0d938 +BR ret=0 +BC did=9bbcffff gx=11 gy=33 esi=1ce0c480 +BR ret=0 +BC did=9bbdffff gx=11 gy=34 esi=1ce0d0b0 +BR ret=0 +BC did=9bbeffff gx=11 gy=35 esi=1ce0d6c8 +BR ret=0 +BC did=9bbfffff gx=11 gy=36 esi=1ce0ca98 +BR ret=1 +BC did=9bc0ffff gx=11 gy=37 esi=1ce0c0d8 +BR ret=1 +BC did=9bc1ffff gx=11 gy=38 esi=1ce0d800 +BR ret=0 +BC did=9bc2ffff gx=11 gy=39 esi=1ce0da70 +BR ret=0 +BC did=9bc3ffff gx=11 gy=40 esi=1ce0c5b8 +BR ret=0 +BC did=9bc4ffff gx=11 gy=41 esi=1ce0cf78 +BR ret=0 +BC did=9bc5ffff gx=11 gy=42 esi=1ce0bac0 +BR ret=0 +BC did=9bc6ffff gx=11 gy=43 esi=1ce0dba8 +BR ret=0 +BC did=9bc7ffff gx=11 gy=44 esi=1ce0c6f0 +BR ret=0 +BC did=9bc8ffff gx=11 gy=45 esi=1ce0dce0 +BR ret=0 +BC did=9bc9ffff gx=11 gy=46 esi=1ce0d320 +BR ret=0 +BC did=9bcaffff gx=11 gy=47 esi=1ce0c828 +BR ret=0 +BC did=9bcbffff gx=11 gy=48 esi=1ce0c960 +BR ret=0 +BC did=9bccffff gx=11 gy=49 esi=1ce0ce40 +BR ret=0 +BC did=9bcdffff gx=11 gy=50 esi=1ce0de18 +BR ret=0 +BC did=9c9bffff gx=12 gy=0 esi=1ce0df50 +BR ret=0 +BC did=9c9cffff gx=12 gy=1 esi=1ce0e088 +BR ret=0 +BC did=9c9dffff gx=12 gy=2 esi=1ce0bbf8 +BR ret=0 +BC did=9c9effff gx=12 gy=3 esi=1ce0bd30 +BR ret=0 +BC did=9c9fffff gx=12 gy=4 esi=1ce0fb58 +BR ret=0 +BC did=9ca0ffff gx=12 gy=5 esi=1ce0e6a0 +BR ret=0 +BC did=9ca1ffff gx=12 gy=6 esi=1ce0f2d0 +BR ret=0 +BC did=9ca2ffff gx=12 gy=7 esi=1ce0e430 +BR ret=0 +BC did=9ca3ffff gx=12 gy=8 esi=1ce0ff00 +BR ret=0 +BC did=9ca4ffff gx=12 gy=9 esi=1ce0e568 +BR ret=0 +BC did=9ca5ffff gx=12 gy=10 esi=1ce10038 +BR ret=0 +BC did=9ca6ffff gx=12 gy=11 esi=1ce0e910 +BR ret=0 +BC did=9ca7ffff gx=12 gy=12 esi=1ce0f408 +BR ret=0 +BC did=9ca8ffff gx=12 gy=13 esi=1ce0e7d8 +BR ret=0 +BC did=9ca9ffff gx=12 gy=14 esi=1ce0fdc8 +BR ret=0 +BC did=9caaffff gx=12 gy=15 esi=1ce103e0 +BR ret=0 +BC did=9cabffff gx=12 gy=16 esi=1ce0ea48 +BR ret=0 +BC did=9cacffff gx=12 gy=17 esi=1ce0e2f8 +BR ret=0 +BC did=9cadffff gx=12 gy=18 esi=1ce0eb80 +BR ret=0 +BC did=9caeffff gx=12 gy=19 esi=1ce0ecb8 +BR ret=0 +BC did=9cafffff gx=12 gy=20 esi=1ce10170 +BR ret=0 +BC did=9cb0ffff gx=12 gy=21 esi=1ce0edf0 +BR ret=0 +BC did=9cb1ffff gx=12 gy=22 esi=1ce0f7b0 +BR ret=0 +BC did=9cb2ffff gx=12 gy=23 esi=1ce0f060 +BR ret=0 +BC did=9cb3ffff gx=12 gy=24 esi=1ce0ef28 +BR ret=0 +BC did=9cb4ffff gx=12 gy=25 esi=1ce0f198 +BR ret=0 +BC did=9cb5ffff gx=12 gy=26 esi=1ce10788 +BR ret=0 +BC did=9cb6ffff gx=12 gy=27 esi=1ce0f540 +BR ret=0 +BC did=9cb7ffff gx=12 gy=28 esi=1ce0f678 +BR ret=0 +BC did=9cb8ffff gx=12 gy=29 esi=1ce0f8e8 +BR ret=0 +BC did=9cb9ffff gx=12 gy=30 esi=1ce0fa20 +BR ret=0 +BC did=9cbaffff gx=12 gy=31 esi=1ce10650 +BR ret=0 +BC did=9cbbffff gx=12 gy=32 esi=1ce102a8 +BR ret=0 +BC did=9cbcffff gx=12 gy=33 esi=1ce10518 +BR ret=0 +BC did=9cbdffff gx=12 gy=34 esi=1ce0e1c0 +BR ret=0 +BC did=9cbeffff gx=12 gy=35 esi=1ce0fc90 +BR ret=1 +BC did=9cbfffff gx=12 gy=36 esi=1ce11148 +BR ret=1 +BC did=9cc0ffff gx=12 gy=37 esi=1ce12870 +BR ret=0 +BC did=9cc1ffff gx=12 gy=38 esi=1ce129a8 +BR ret=0 +BC did=9cc2ffff gx=12 gy=39 esi=1ce12ae0 +BR ret=0 +BC did=9cc3ffff gx=12 gy=40 esi=1ce11280 +BR ret=0 +BC did=9cc4ffff gx=12 gy=41 esi=1ce10b30 +BR ret=0 +BC did=9cc5ffff gx=12 gy=42 esi=1ce12390 +BR ret=0 +BC did=9cc6ffff gx=12 gy=43 esi=1ce11010 +BR ret=0 +BC did=9cc7ffff gx=12 gy=44 esi=1ce113b8 +BR ret=0 +BC did=9cc8ffff gx=12 gy=45 esi=1ce12600 +BR ret=0 +BC did=9cc9ffff gx=12 gy=46 esi=1ce114f0 +BR ret=0 +BC did=9ccaffff gx=12 gy=47 esi=1ce10da0 +BR ret=0 +BC did=9ccbffff gx=12 gy=48 esi=1ce11628 +BR ret=0 +BC did=9cccffff gx=12 gy=49 esi=1ce119d0 +BR ret=0 +BC did=9ccdffff gx=12 gy=50 esi=1ce11b08 +BR ret=0 +BC did=9d9bffff gx=13 gy=0 esi=1ce12738 +BR ret=0 +BC did=9d9cffff gx=13 gy=1 esi=1ce11c40 +BR ret=0 +BC did=9d9dffff gx=13 gy=2 esi=1ce10ed8 +BR ret=0 +BC did=9d9effff gx=13 gy=3 esi=1ce11d78 +BR ret=0 +BC did=9d9fffff gx=13 gy=4 esi=1ce11760 +BR ret=0 +BC did=9da0ffff gx=13 gy=5 esi=1ce11898 +BR ret=0 +BC did=9da1ffff gx=13 gy=6 esi=1ce11eb0 +BR ret=0 +BC did=9da2ffff gx=13 gy=7 esi=1ce11fe8 +BR ret=0 +BC did=9da3ffff gx=13 gy=8 esi=1ce12120 +BR ret=0 +BC did=9da4ffff gx=13 gy=9 esi=1ce12c18 +BR ret=0 +BC did=9da5ffff gx=13 gy=10 esi=1ce12258 +BR ret=0 +BC did=9da6ffff gx=13 gy=11 esi=1ce124c8 +BR ret=0 +BC did=9da7ffff gx=13 gy=12 esi=1ce12d50 +BR ret=0 +BC did=9da8ffff gx=13 gy=13 esi=1ce12e88 +BR ret=0 +BC did=9da9ffff gx=13 gy=14 esi=1ce108c0 +BR ret=0 +BC did=9daaffff gx=13 gy=15 esi=1ce109f8 +BR ret=0 +BC did=9dabffff gx=13 gy=16 esi=1ce10c68 +BR ret=0 +BC did=9dacffff gx=13 gy=17 esi=1ce14f70 +BR ret=0 +BC did=9dadffff gx=13 gy=18 esi=1ce13bf0 +BR ret=0 +BC did=9daeffff gx=13 gy=19 esi=1ce151e0 +BR ret=0 +BC did=9dafffff gx=13 gy=20 esi=1ce150a8 +BR ret=0 +BC did=9db0ffff gx=13 gy=21 esi=1ce15318 +BR ret=0 +BC did=9db1ffff gx=13 gy=22 esi=1ce15450 +BR ret=0 +BC did=9db2ffff gx=13 gy=23 esi=1ce14478 +BR ret=0 +BC did=9db3ffff gx=13 gy=24 esi=1ce15588 +BR ret=0 +BC did=9db4ffff gx=13 gy=25 esi=1ce14340 +BR ret=0 +BC did=9db5ffff gx=13 gy=26 esi=1ce12fc0 +BR ret=0 +BC did=9db6ffff gx=13 gy=27 esi=1ce130f8 +BR ret=0 +BC did=9db7ffff gx=13 gy=28 esi=1ce13368 +BR ret=0 +BC did=9db8ffff gx=13 gy=29 esi=1ce13230 +BR ret=0 +BC did=9db9ffff gx=13 gy=30 esi=1ce146e8 +BR ret=0 +BC did=9dbaffff gx=13 gy=31 esi=1ce13710 +BR ret=0 +BC did=9dbbffff gx=13 gy=32 esi=1ce13d28 +BR ret=0 +BC did=9dbcffff gx=13 gy=33 esi=1ce13ab8 +BR ret=0 +BC did=9dbdffff gx=13 gy=34 esi=1ce13848 +BR ret=1 +BC did=9dbeffff gx=13 gy=35 esi=1ce14958 +BR ret=1 +BC did=9dbfffff gx=13 gy=36 esi=1ce145b0 +BR ret=1 +BC did=9dc0ffff gx=13 gy=37 esi=1ce13980 +BR ret=0 +BC did=9dc1ffff gx=13 gy=38 esi=1ce13e60 +BR ret=0 +BC did=9dc2ffff gx=13 gy=39 esi=1ce14820 +BR ret=0 +BC did=9dc3ffff gx=13 gy=40 esi=1ce134a0 +BR ret=0 +BC did=9dc4ffff gx=13 gy=41 esi=1ce13f98 +BR ret=0 +BC did=9dc5ffff gx=13 gy=42 esi=1ce140d0 +BR ret=0 +BC did=9dc6ffff gx=13 gy=43 esi=1ce14208 +BR ret=0 +BC did=9dc7ffff gx=13 gy=44 esi=1ce135d8 +BR ret=0 +BC did=9dc8ffff gx=13 gy=45 esi=1ce14a90 +BR ret=0 +BC did=9dc9ffff gx=13 gy=46 esi=1ce14bc8 +BR ret=0 +BC did=9dcaffff gx=13 gy=47 esi=1ce14d00 +BR ret=0 +BC did=9dcbffff gx=13 gy=48 esi=1ce14e38 +BR ret=0 +BC did=9dccffff gx=13 gy=49 esi=1ce16560 +BR ret=0 +BC did=9dcdffff gx=13 gy=50 esi=1ce17b50 +BR ret=0 +BC did=9e9bffff gx=14 gy=0 esi=1ce16f20 +BR ret=0 +BC did=9e9cffff gx=14 gy=1 esi=1ce16698 +BR ret=0 +BC did=9e9dffff gx=14 gy=2 esi=1ce17a18 +BR ret=0 +BC did=9e9effff gx=14 gy=3 esi=1ce161b8 +BR ret=0 +BC did=9e9fffff gx=14 gy=4 esi=1ce16a40 +BR ret=0 +BC did=9ea0ffff gx=14 gy=5 esi=1ce162f0 +BR ret=0 +BC did=9ea1ffff gx=14 gy=6 esi=1ce17c88 +BR ret=0 +BC did=9ea2ffff gx=14 gy=7 esi=1ce167d0 +BR ret=0 +BC did=9ea3ffff gx=14 gy=8 esi=1ce16cb0 +BR ret=0 +BC did=9ea4ffff gx=14 gy=9 esi=1ce16428 +BR ret=0 +BC did=9ea5ffff gx=14 gy=10 esi=1ce17190 +BR ret=0 +BC did=9ea6ffff gx=14 gy=11 esi=1ce16908 +BR ret=0 +BC did=9ea7ffff gx=14 gy=12 esi=1ce15f48 +BR ret=0 +BC did=9ea8ffff gx=14 gy=13 esi=1ce15a68 +BR ret=0 +BC did=9ea9ffff gx=14 gy=14 esi=1ce177a8 +BR ret=0 +BC did=9eaaffff gx=14 gy=15 esi=1ce16b78 +BR ret=0 +BC did=9eabffff gx=14 gy=16 esi=1ce15e10 +BR ret=0 +BC did=9eacffff gx=14 gy=17 esi=1ce16de8 +BR ret=0 +BC did=9eadffff gx=14 gy=18 esi=1ce17058 +BR ret=0 +BC did=9eaeffff gx=14 gy=19 esi=1ce178e0 +BR ret=0 +BC did=9eafffff gx=14 gy=20 esi=1ce172c8 +BR ret=0 +BC did=9eb0ffff gx=14 gy=21 esi=1ce17400 +BR ret=0 +BC did=9eb1ffff gx=14 gy=22 esi=1ce17538 +BR ret=0 +BC did=9eb2ffff gx=14 gy=23 esi=1ce156c0 +BR ret=0 +BC did=9eb3ffff gx=14 gy=24 esi=1ce157f8 +BR ret=0 +BC did=9eb4ffff gx=14 gy=25 esi=1ce15930 +BR ret=0 +BC did=9eb5ffff gx=14 gy=26 esi=1ce17670 +BR ret=0 +BC did=9eb6ffff gx=14 gy=27 esi=1ce15ba0 +BR ret=0 +BC did=9eb7ffff gx=14 gy=28 esi=1ce16080 +BR ret=0 +BC did=9eb8ffff gx=14 gy=29 esi=1ce15cd8 +BR ret=0 +BC did=9eb9ffff gx=14 gy=30 esi=1ce19890 +BR ret=0 +BC did=9ebaffff gx=14 gy=31 esi=1ce1a388 +BR ret=0 +BC did=9ebbffff gx=14 gy=32 esi=1ce19620 +BR ret=0 +BC did=9ebcffff gx=14 gy=33 esi=1ce19758 +BR ret=1 +BC did=9ebdffff gx=14 gy=34 esi=1ce18c60 +BR ret=1 +BC did=9ebeffff gx=14 gy=35 esi=1ce18ed0 +BR ret=1 +BC did=9ebfffff gx=14 gy=36 esi=1ce189f0 +BR ret=0 +BC did=9ec0ffff gx=14 gy=37 esi=1ce19d70 +BR ret=0 +BC did=9ec1ffff gx=14 gy=38 esi=1ce18d98 +BR ret=0 +BC did=9ec2ffff gx=14 gy=39 esi=1ce1a250 +BR ret=0 +BC did=9ec3ffff gx=14 gy=40 esi=1ce19140 +BR ret=0 +BC did=9ec4ffff gx=14 gy=41 esi=1ce17dc0 +BR ret=0 +BC did=9ec5ffff gx=14 gy=42 esi=1ce19008 +BR ret=0 +BC did=9ec6ffff gx=14 gy=43 esi=1ce17ef8 +BR ret=0 +BC did=9ec7ffff gx=14 gy=44 esi=1ce19ea8 +BR ret=0 +BC did=9ec8ffff gx=14 gy=45 esi=1ce199c8 +BR ret=0 +BC did=9ec9ffff gx=14 gy=46 esi=1ce18648 +BR ret=0 +BC did=9ecaffff gx=14 gy=47 esi=1ce19278 +BR ret=0 +BC did=9ecbffff gx=14 gy=48 esi=1ce19c38 +BR ret=0 +BC did=9eccffff gx=14 gy=49 esi=1ce18510 +BR ret=0 +BC did=9ecdffff gx=14 gy=50 esi=1ce193b0 +BR ret=0 +BC did=9f9bffff gx=15 gy=0 esi=1ce19b00 +BR ret=0 +BC did=9f9cffff gx=15 gy=1 esi=1ce18030 +BR ret=0 +BC did=9f9dffff gx=15 gy=2 esi=1ce18168 +BR ret=0 +BC did=9f9effff gx=15 gy=3 esi=1ce18b28 +BR ret=0 +BC did=9f9fffff gx=15 gy=4 esi=1ce19fe0 +BR ret=0 +BC did=9fa0ffff gx=15 gy=5 esi=1ce194e8 +BR ret=0 +BC did=9fa1ffff gx=15 gy=6 esi=1ce18780 +BR ret=0 +BC did=9fa2ffff gx=15 gy=7 esi=1ce182a0 +BR ret=0 +BC did=9fa3ffff gx=15 gy=8 esi=1ce183d8 +BR ret=0 +BC did=9fa4ffff gx=15 gy=9 esi=1ce1a118 +BR ret=0 +BC did=9fa5ffff gx=15 gy=10 esi=1ce188b8 +BR ret=0 +BC did=9fa6ffff gx=15 gy=11 esi=1ce1b708 +BR ret=0 +BC did=9fa7ffff gx=15 gy=12 esi=1ce1c950 +BR ret=0 +BC did=9fa8ffff gx=15 gy=13 esi=1ce1c338 +BR ret=0 +BC did=9fa9ffff gx=15 gy=14 esi=1ce1ac10 +BR ret=0 +BC did=9faaffff gx=15 gy=15 esi=1ce1c0c8 +BR ret=0 +BC did=9fabffff gx=15 gy=16 esi=1ce1b360 +BR ret=0 +BC did=9facffff gx=15 gy=17 esi=1ce1c470 +BR ret=0 +BC did=9fadffff gx=15 gy=18 esi=1ce1ae80 +BR ret=0 +BC did=9faeffff gx=15 gy=19 esi=1ce1ca88 +BR ret=0 +BC did=9fafffff gx=15 gy=20 esi=1ce1c200 +BR ret=0 +BC did=9fb0ffff gx=15 gy=21 esi=1ce1b840 +BR ret=0 +BC did=9fb1ffff gx=15 gy=22 esi=1ce1c5a8 +BR ret=0 +BC did=9fb2ffff gx=15 gy=23 esi=1ce1b978 +BR ret=0 +BC did=9fb3ffff gx=15 gy=24 esi=1ce1b228 +BR ret=0 +BC did=9fb4ffff gx=15 gy=25 esi=1ce1bab0 +BR ret=0 +BC did=9fb5ffff gx=15 gy=26 esi=1ce1ad48 +BR ret=0 +BC did=9fb6ffff gx=15 gy=27 esi=1ce1afb8 +BR ret=0 +BC did=9fb7ffff gx=15 gy=28 esi=1ce1a9a0 +BR ret=0 +BC did=9fb8ffff gx=15 gy=29 esi=1ce1b0f0 +BR ret=0 +BC did=9fb9ffff gx=15 gy=30 esi=1ce1bbe8 +BR ret=0 +BC did=9fbaffff gx=15 gy=31 esi=1ce1b498 +BR ret=0 +BC did=9fbbffff gx=15 gy=32 esi=1ce1a4c0 +BR ret=1 +BC did=9fbcffff gx=15 gy=33 esi=1ce1b5d0 +BR ret=1 +BC did=9fbdffff gx=15 gy=34 esi=1ce1bd20 +BR ret=1 +BC did=9fbeffff gx=15 gy=35 esi=1ce1a5f8 +BR ret=0 +BC did=9fbfffff gx=15 gy=36 esi=1ce1a730 +BR ret=0 +BC did=9fc0ffff gx=15 gy=37 esi=1ce1be58 +BR ret=0 +BC did=9fc1ffff gx=15 gy=38 esi=1ce1aad8 +BR ret=0 +BC did=9fc2ffff gx=15 gy=39 esi=1ce1bf90 +BR ret=0 +BC did=9fc3ffff gx=15 gy=40 esi=1ce1c6e0 +BR ret=0 +BC did=9fc4ffff gx=15 gy=41 esi=1ce1c818 +BR ret=0 +BC did=9fc5ffff gx=15 gy=42 esi=1ce1a868 +BR ret=0 +BC did=9fc6ffff gx=15 gy=43 esi=1ce1da60 +BR ret=0 +BC did=9fc7ffff gx=15 gy=44 esi=1ce1d1d8 +BR ret=0 +BC did=9fc8ffff gx=15 gy=45 esi=1ce1d0a0 +BR ret=0 +BC did=9fc9ffff gx=15 gy=46 esi=1ce1d7f0 +BR ret=0 +BC did=9fcaffff gx=15 gy=47 esi=1ce1db98 +BR ret=0 +BC did=9fcbffff gx=15 gy=48 esi=1ce1dcd0 +BR ret=0 +BC did=9fccffff gx=15 gy=49 esi=1ce1df40 +BR ret=0 +BC did=9fcdffff gx=15 gy=50 esi=1ce1d928 +BR ret=0 +BC did=a09bffff gx=16 gy=0 esi=1ce1ce30 +BR ret=0 +BC did=a09cffff gx=16 gy=1 esi=1ce1e7c8 +BR ret=0 +BC did=a09dffff gx=16 gy=2 esi=1ce1de08 +BR ret=0 +BC did=a09effff gx=16 gy=3 esi=1ce1d310 +BR ret=0 +BC did=a09fffff gx=16 gy=4 esi=1ce1e078 +BR ret=0 +BC did=a0a0ffff gx=16 gy=5 esi=1ce1d448 +BR ret=0 +BC did=a0a1ffff gx=16 gy=6 esi=1ce1e1b0 +BR ret=0 +BC did=a0a2ffff gx=16 gy=7 esi=1ce1e558 +BR ret=0 +BC did=a0a3ffff gx=16 gy=8 esi=1ce1e2e8 +BR ret=0 +BC did=a0a4ffff gx=16 gy=9 esi=1ce1ea38 +BR ret=0 +BC did=a0a5ffff gx=16 gy=10 esi=1ce1e420 +BR ret=0 +BC did=a0a6ffff gx=16 gy=11 esi=1ce1e690 +BR ret=0 +BC did=a0a7ffff gx=16 gy=12 esi=1ce1cf68 +BR ret=0 +BC did=a0a8ffff gx=16 gy=13 esi=1ce1e900 +BR ret=0 +BC did=a0a9ffff gx=16 gy=14 esi=1ce1eb70 +BR ret=0 +BC did=a0aaffff gx=16 gy=15 esi=1ce1ede0 +BR ret=0 +BC did=a0abffff gx=16 gy=16 esi=1ce1eca8 +BR ret=0 +BC did=a0acffff gx=16 gy=17 esi=1ce1f188 +BR ret=0 +BC did=a0adffff gx=16 gy=18 esi=1ce1ef18 +BR ret=0 +BC did=a0aeffff gx=16 gy=19 esi=1ce1f050 +BR ret=0 +BC did=a0afffff gx=16 gy=20 esi=1ce1cbc0 +BR ret=0 +BC did=a0b0ffff gx=16 gy=21 esi=1ce1ccf8 +BR ret=0 +BC did=a0b1ffff gx=16 gy=22 esi=1ce1d6b8 +BR ret=0 +BC did=a0b2ffff gx=16 gy=23 esi=1ce1d580 +BR ret=0 +BC did=a0b3ffff gx=16 gy=24 esi=1ce20c58 +BR ret=0 +BC did=a0b4ffff gx=16 gy=25 esi=1ce20ec8 +BR ret=0 +BC did=a0b5ffff gx=16 gy=26 esi=1ce1f7a0 +BR ret=0 +BC did=a0b6ffff gx=16 gy=27 esi=1ce20160 +BR ret=0 +BC did=a0b7ffff gx=16 gy=28 esi=1ce21750 +BR ret=0 +BC did=a0b8ffff gx=16 gy=29 esi=1ce1fdb8 +BR ret=0 +BC did=a0b9ffff gx=16 gy=30 esi=1ce1f668 +BR ret=0 +BC did=a0baffff gx=16 gy=31 esi=1ce1f8d8 +BR ret=0 +BC did=a0bbffff gx=16 gy=32 esi=1ce21888 +BR ret=1 +BC did=a0bcffff gx=16 gy=33 esi=1ce209e8 +BR ret=1 +BC did=a0bdffff gx=16 gy=34 esi=1ce1fef0 +BR ret=0 +BC did=a0beffff gx=16 gy=35 esi=1ce1fa10 +BR ret=0 +BC did=a0bfffff gx=16 gy=36 esi=1ce20508 +BR ret=0 +BC did=a0c0ffff gx=16 gy=37 esi=1ce20640 +BR ret=0 +BC did=a0c1ffff gx=16 gy=38 esi=1ce20d90 +BR ret=0 +BC did=a0c2ffff gx=16 gy=39 esi=1ce203d0 +BR ret=0 +BC did=a0c3ffff gx=16 gy=40 esi=1ce1fb48 +BR ret=0 +BC did=a0c4ffff gx=16 gy=41 esi=1ce20778 +BR ret=0 +BC did=a0c5ffff gx=16 gy=42 esi=1ce1fc80 +BR ret=0 +BC did=a0c6ffff gx=16 gy=43 esi=1ce208b0 +BR ret=0 +BC did=a0c7ffff gx=16 gy=44 esi=1ce21000 +BR ret=0 +BC did=a0c8ffff gx=16 gy=45 esi=1ce20b20 +BR ret=0 +BC did=a0c9ffff gx=16 gy=46 esi=1ce21138 +BR ret=0 +BC did=a0caffff gx=16 gy=47 esi=1ce20028 +BR ret=0 +BC did=a0cbffff gx=16 gy=48 esi=1ce21270 +BR ret=0 +BC did=a0ccffff gx=16 gy=49 esi=1ce213a8 +BR ret=0 +BC did=a0cdffff gx=16 gy=50 esi=1ce20298 +BR ret=0 +BC did=a19bffff gx=17 gy=0 esi=1ce214e0 +BR ret=0 +BC did=a19cffff gx=17 gy=1 esi=1ce21618 +BR ret=0 +BC did=a19dffff gx=17 gy=2 esi=1ce1f2c0 +BR ret=0 +BC did=a19effff gx=17 gy=3 esi=1ce1f3f8 +BR ret=0 +BC did=a19fffff gx=17 gy=4 esi=1ce1f530 +BR ret=0 +BC did=a1a0ffff gx=17 gy=5 esi=1ce22ad0 +BR ret=0 +BC did=a1a1ffff gx=17 gy=6 esi=1ce21ea0 +BR ret=0 +BC did=a1a2ffff gx=17 gy=7 esi=1ce22e78 +BR ret=0 +BC did=a1a3ffff gx=17 gy=8 esi=1ce22998 +BR ret=0 +BC did=a1a4ffff gx=17 gy=9 esi=1ce22110 +BR ret=0 +BC did=a1a5ffff gx=17 gy=10 esi=1ce21fd8 +BR ret=0 +BC did=a1a6ffff gx=17 gy=11 esi=1ce22c08 +BR ret=0 +BC did=a1a7ffff gx=17 gy=12 esi=1ce22248 +BR ret=0 +BC did=a1a8ffff gx=17 gy=13 esi=1ce224b8 +BR ret=0 +BC did=a1a9ffff gx=17 gy=14 esi=1ce21af8 +BR ret=0 +BC did=a1aaffff gx=17 gy=15 esi=1ce22380 +BR ret=0 +BC did=a1abffff gx=17 gy=16 esi=1ce22d40 +BR ret=0 +BC did=a1acffff gx=17 gy=17 esi=1ce21d68 +BR ret=0 +BC did=a1adffff gx=17 gy=18 esi=1ce219c0 +BR ret=0 +BC did=a1aeffff gx=17 gy=19 esi=1ce225f0 +BR ret=0 +BC did=a1afffff gx=17 gy=20 esi=1ce21c30 +BR ret=0 +BC did=a1b0ffff gx=17 gy=21 esi=1ce22728 +BR ret=0 +BC did=a1b1ffff gx=17 gy=22 esi=1ce22860 +BR ret=0 +BC did=a1b2ffff gx=17 gy=23 esi=1cde4100 +BR ret=0 +BC did=a1b3ffff gx=17 gy=24 esi=1cde39b0 +BR ret=0 +BC did=a1b4ffff gx=17 gy=25 esi=1cde34d0 +BR ret=0 +BC did=a1b5ffff gx=17 gy=26 esi=1cde3128 +BR ret=0 +BC did=a1b6ffff gx=17 gy=27 esi=1cde45e0 +BR ret=0 +BC did=a1b7ffff gx=17 gy=28 esi=1cde3740 +BR ret=0 +BC did=a1b8ffff gx=17 gy=29 esi=1cde2eb8 +BR ret=0 +BC did=a1b9ffff gx=17 gy=30 esi=1cde4850 +BR ret=0 +BC did=a1baffff gx=17 gy=31 esi=1cde3608 +BR ret=1 +BC did=a1bbffff gx=17 gy=32 esi=1cde2c48 +BR ret=1 +BC did=a1bcffff gx=17 gy=33 esi=1cde4988 +BR ret=0 +BC did=a1bdffff gx=17 gy=34 esi=1cde2630 +BR ret=0 +BC did=a1beffff gx=17 gy=35 esi=1cde3260 +BR ret=0 +BC did=a1bfffff gx=17 gy=36 esi=1cde4718 +BR ret=0 +BC did=a1c0ffff gx=17 gy=37 esi=1cde3c20 +BR ret=0 +BC did=a1c1ffff gx=17 gy=38 esi=1cde28a0 +BR ret=0 +BC did=a1c2ffff gx=17 gy=39 esi=1cde3878 +BR ret=0 +BC did=a1c3ffff gx=17 gy=40 esi=1cde2ff0 +BR ret=0 +BC did=a1c4ffff gx=17 gy=41 esi=1cde4370 +BR ret=0 +BC did=a1c5ffff gx=17 gy=42 esi=1cde3ae8 +BR ret=0 +BC did=a1c6ffff gx=17 gy=43 esi=1cde3d58 +BR ret=0 +BC did=a1c7ffff gx=17 gy=44 esi=1cde3e90 +BR ret=0 +BC did=a1c8ffff gx=17 gy=45 esi=1cde3398 +BR ret=0 +BC did=a1c9ffff gx=17 gy=46 esi=1cde23c0 +BR ret=0 +BC did=a1caffff gx=17 gy=47 esi=1cde3fc8 +BR ret=0 +BC did=a1cbffff gx=17 gy=48 esi=1cde24f8 +BR ret=0 +BC did=a1ccffff gx=17 gy=49 esi=1cde4238 +BR ret=0 +BC did=a1cdffff gx=17 gy=50 esi=1cde44a8 +BR ret=0 +BC did=a29bffff gx=18 gy=0 esi=1cde2768 +BR ret=0 +BC did=a29cffff gx=18 gy=1 esi=1cde2d80 +BR ret=0 +BC did=a29dffff gx=18 gy=2 esi=1cde29d8 +BR ret=0 +BC did=a29effff gx=18 gy=3 esi=1cde2b10 +BR ret=0 +BC did=a29fffff gx=18 gy=4 esi=1cde6800 +BR ret=0 +BC did=a2a0ffff gx=18 gy=5 esi=1cde66c8 +BR ret=0 +BC did=a2a1ffff gx=18 gy=6 esi=1cde56f0 +BR ret=0 +BC did=a2a2ffff gx=18 gy=7 esi=1cde5d08 +BR ret=0 +BC did=a2a3ffff gx=18 gy=8 esi=1cde5e40 +BR ret=0 +BC did=a2a4ffff gx=18 gy=9 esi=1cde5bd0 +BR ret=0 +BC did=a2a5ffff gx=18 gy=10 esi=1cde6ce0 +BR ret=0 +BC did=a2a6ffff gx=18 gy=11 esi=1cde5960 +BR ret=0 +BC did=a2a7ffff gx=18 gy=12 esi=1cde4ac0 +BR ret=0 +BC did=a2a8ffff gx=18 gy=13 esi=1cde5210 +BR ret=0 +BC did=a2a9ffff gx=18 gy=14 esi=1cde5828 +BR ret=0 +BC did=a2aaffff gx=18 gy=15 esi=1cde55b8 +BR ret=0 +BC did=a2abffff gx=18 gy=16 esi=1cde5f78 +BR ret=0 +BC did=a2acffff gx=18 gy=17 esi=1cde6938 +BR ret=0 +BC did=a2adffff gx=18 gy=18 esi=1cde5a98 +BR ret=0 +BC did=a2aeffff gx=18 gy=19 esi=1cde60b0 +BR ret=0 +BC did=a2afffff gx=18 gy=20 esi=1cde4d30 +BR ret=0 +BC did=a2b0ffff gx=18 gy=21 esi=1cde61e8 +BR ret=0 +BC did=a2b1ffff gx=18 gy=22 esi=1cde4bf8 +BR ret=0 +BC did=a2b2ffff gx=18 gy=23 esi=1cde4e68 +BR ret=0 +BC did=a2b3ffff gx=18 gy=24 esi=1cde5348 +BR ret=0 +BC did=a2b4ffff gx=18 gy=25 esi=1cde6320 +BR ret=0 +BC did=a2b5ffff gx=18 gy=26 esi=1cde6458 +BR ret=0 +BC did=a2b6ffff gx=18 gy=27 esi=1cde4fa0 +BR ret=0 +BC did=a2b7ffff gx=18 gy=28 esi=1cde6590 +BR ret=0 +BC did=a2b8ffff gx=18 gy=29 esi=1cde50d8 +BR ret=0 +BC did=a2b9ffff gx=18 gy=30 esi=1cde5480 +BR ret=1 +BC did=a2baffff gx=18 gy=31 esi=1cde6a70 +BR ret=1 +BC did=a2bbffff gx=18 gy=32 esi=1cde6ba8 +BR ret=0 +BC did=a2bcffff gx=18 gy=33 esi=1cde6e18 +BR ret=0 +BC did=a2bdffff gx=18 gy=34 esi=1cde6f50 +BR ret=0 +BC did=a2beffff gx=18 gy=35 esi=1cde7088 +BR ret=0 +BC did=a2bfffff gx=18 gy=36 esi=1cde7f28 +BR ret=0 +BC did=a2c0ffff gx=18 gy=37 esi=1cde7430 +BR ret=0 +BC did=a2c1ffff gx=18 gy=38 esi=1cde7df0 +BR ret=0 +BC did=a2c2ffff gx=18 gy=39 esi=1cde8f00 +BR ret=0 +BC did=a2c3ffff gx=18 gy=40 esi=1cde9170 +BR ret=0 +BC did=a2c4ffff gx=18 gy=41 esi=1cde9038 +BR ret=0 +BC did=a2c5ffff gx=18 gy=42 esi=1cde8a20 +BR ret=0 +BC did=a2c6ffff gx=18 gy=43 esi=1cde9650 +BR ret=0 +BC did=a2c7ffff gx=18 gy=44 esi=1cde7b80 +BR ret=0 +BC did=a2c8ffff gx=18 gy=45 esi=1cde92a8 +BR ret=0 +BC did=a2c9ffff gx=18 gy=46 esi=1cde7a48 +BR ret=0 +BC did=a2caffff gx=18 gy=47 esi=1cde76a0 +BR ret=0 +BC did=a2cbffff gx=18 gy=48 esi=1cde93e0 +BR ret=0 +BC did=a2ccffff gx=18 gy=49 esi=1cde77d8 +BR ret=0 +BC did=a2cdffff gx=18 gy=50 esi=1cde72f8 +BR ret=0 +BC did=a39bffff gx=19 gy=0 esi=1cde87b0 +BR ret=0 +BC did=a39cffff gx=19 gy=1 esi=1cde9518 +BR ret=0 +BC did=a39dffff gx=19 gy=2 esi=1cde82d0 +BR ret=0 +BC did=a39effff gx=19 gy=3 esi=1cde8198 +BR ret=0 +BC did=a39fffff gx=19 gy=4 esi=1cde9788 +BR ret=0 +BC did=a3a0ffff gx=19 gy=5 esi=1cde88e8 +BR ret=0 +BC did=a3a1ffff gx=19 gy=6 esi=1cde71c0 +BR ret=0 +BC did=a3a2ffff gx=19 gy=7 esi=1cde8060 +BR ret=0 +BC did=a3a3ffff gx=19 gy=8 esi=1cde7cb8 +BR ret=0 +BC did=a3a4ffff gx=19 gy=9 esi=1cde8dc8 +BR ret=0 +BC did=a3a5ffff gx=19 gy=10 esi=1cde7568 +BR ret=0 +BC did=a3a6ffff gx=19 gy=11 esi=1cde7910 +BR ret=0 +BC did=a3a7ffff gx=19 gy=12 esi=1cde8408 +BR ret=0 +BC did=a3a8ffff gx=19 gy=13 esi=1cde8540 +BR ret=0 +BC did=a3a9ffff gx=19 gy=14 esi=1cde8678 +BR ret=0 +BC did=a3aaffff gx=19 gy=15 esi=1cde8b58 +BR ret=0 +BC did=a3abffff gx=19 gy=16 esi=1cde8c90 +BR ret=0 +BC did=a3acffff gx=19 gy=17 esi=1cdeb390 +BR ret=0 +BC did=a3adffff gx=19 gy=18 esi=1cdeb738 +BR ret=0 +BC did=a3aeffff gx=19 gy=19 esi=1cdeb600 +BR ret=0 +BC did=a3afffff gx=19 gy=20 esi=1cdeafe8 +BR ret=0 +BC did=a3b0ffff gx=19 gy=21 esi=1cde9c68 +BR ret=0 +BC did=a3b1ffff gx=19 gy=22 esi=1cdeaeb0 +BR ret=0 +BC did=a3b2ffff gx=19 gy=23 esi=1cdea628 +BR ret=0 +BC did=a3b3ffff gx=19 gy=24 esi=1cdeb4c8 +BR ret=0 +BC did=a3b4ffff gx=19 gy=25 esi=1cdebc18 +BR ret=0 +BC did=a3b5ffff gx=19 gy=26 esi=1cde9ed8 +BR ret=0 +BC did=a3b6ffff gx=19 gy=27 esi=1cde9da0 +BR ret=0 +BC did=a3b7ffff gx=19 gy=28 esi=1cdea4f0 +BR ret=0 +BC did=a3b8ffff gx=19 gy=29 esi=1cdea760 +BR ret=1 +BC did=a3b9ffff gx=19 gy=30 esi=1cdea898 +BR ret=1 +BC did=a3baffff gx=19 gy=31 esi=1cdeac40 +BR ret=0 +BC did=a3bbffff gx=19 gy=32 esi=1cdea9d0 +BR ret=0 +BC did=a3bcffff gx=19 gy=33 esi=1cdebae0 +BR ret=0 +BC did=a3bdffff gx=19 gy=34 esi=1cdebe88 +BR ret=0 +BC did=a3beffff gx=19 gy=35 esi=1cdead78 +BR ret=0 +BC did=a3bfffff gx=19 gy=36 esi=1cdeab08 +BR ret=0 +BC did=a3c0ffff gx=19 gy=37 esi=1cde99f8 +BR ret=0 +BC did=a3c1ffff gx=19 gy=38 esi=1cdeb120 +BR ret=0 +BC did=a3c2ffff gx=19 gy=39 esi=1cdea010 +BR ret=0 +BC did=a3c3ffff gx=19 gy=40 esi=1cdea148 +BR ret=0 +BC did=a3c4ffff gx=19 gy=41 esi=1cde98c0 +BR ret=0 +BC did=a3c5ffff gx=19 gy=42 esi=1cdeb258 +BR ret=0 +BC did=a3c6ffff gx=19 gy=43 esi=1cdea280 +BR ret=0 +BC did=a3c7ffff gx=19 gy=44 esi=1cdeb870 +BR ret=0 +BC did=a3c8ffff gx=19 gy=45 esi=1cdea3b8 +BR ret=0 +BC did=a3c9ffff gx=19 gy=46 esi=1cdeb9a8 +BR ret=0 +BC did=a3caffff gx=19 gy=47 esi=1cdebd50 +BR ret=0 +BC did=a3cbffff gx=19 gy=48 esi=1cde9b30 +BR ret=0 +BC did=a3ccffff gx=19 gy=49 esi=1cded5b0 +BR ret=0 +BC did=a3cdffff gx=19 gy=50 esi=1cdecd28 +BR ret=0 +BC did=a49bffff gx=20 gy=0 esi=1cdec710 +BR ret=0 +BC did=a49cffff gx=20 gy=1 esi=1cdecab8 +BR ret=0 +BC did=a49dffff gx=20 gy=2 esi=1cdedf70 +BR ret=0 +BC did=a49effff gx=20 gy=3 esi=1cdec230 +BR ret=0 +BC did=a49fffff gx=20 gy=4 esi=1cdec848 +BR ret=0 +BC did=a4a0ffff gx=20 gy=5 esi=1cdee0a8 +BR ret=0 +BC did=a4a1ffff gx=20 gy=6 esi=1cdee1e0 +BR ret=0 +BC did=a4a2ffff gx=20 gy=7 esi=1cdec980 +BR ret=0 +BC did=a4a3ffff gx=20 gy=8 esi=1cdee588 +BR ret=0 +BC did=a4a4ffff gx=20 gy=9 esi=1cdee318 +BR ret=0 +BC did=a4a5ffff gx=20 gy=10 esi=1cdec368 +BR ret=0 +BC did=a4a6ffff gx=20 gy=11 esi=1cdebfc0 +BR ret=0 +BC did=a4a7ffff gx=20 gy=12 esi=1cded6e8 +BR ret=0 +BC did=a4a8ffff gx=20 gy=13 esi=1cdece60 +BR ret=0 +BC did=a4a9ffff gx=20 gy=14 esi=1cdecbf0 +BR ret=0 +BC did=a4aaffff gx=20 gy=15 esi=1cdecf98 +BR ret=0 +BC did=a4abffff gx=20 gy=16 esi=1cded958 +BR ret=0 +BC did=a4acffff gx=20 gy=17 esi=1cded340 +BR ret=0 +BC did=a4adffff gx=20 gy=18 esi=1cded820 +BR ret=0 +BC did=a4aeffff gx=20 gy=19 esi=1cded0d0 +BR ret=0 +BC did=a4afffff gx=20 gy=20 esi=1cded208 +BR ret=0 +BC did=a4b0ffff gx=20 gy=21 esi=1cdec0f8 +BR ret=0 +BC did=a4b1ffff gx=20 gy=22 esi=1cdede38 +BR ret=0 +BC did=a4b2ffff gx=20 gy=23 esi=1cded478 +BR ret=0 +BC did=a4b3ffff gx=20 gy=24 esi=1cdeda90 +BR ret=0 +BC did=a4b4ffff gx=20 gy=25 esi=1cdec4a0 +BR ret=0 +BC did=a4b5ffff gx=20 gy=26 esi=1cdedbc8 +BR ret=0 +BC did=a4b6ffff gx=20 gy=27 esi=1cdedd00 +BR ret=0 +BC did=a4b7ffff gx=20 gy=28 esi=1cdee450 +BR ret=1 +BC did=a4b8ffff gx=20 gy=29 esi=1cdec5d8 +BR ret=1 +BC did=a4b9ffff gx=20 gy=30 esi=1ce76a78 +BR ret=1 +BC did=a4baffff gx=20 gy=31 esi=1ce76bb0 +BR ret=0 +BC did=a4bbffff gx=20 gy=32 esi=1ce75f80 +BR ret=0 +BC did=a4bcffff gx=20 gy=33 esi=1ce76940 +BR ret=0 +BC did=a4bdffff gx=20 gy=34 esi=1ce77a50 +BR ret=0 +BC did=a4beffff gx=20 gy=35 esi=1ce76ce8 +BR ret=0 +BC did=a4bfffff gx=20 gy=36 esi=1ce76460 +BR ret=0 +BC did=a4c0ffff gx=20 gy=37 esi=1ce76e20 +BR ret=0 +BC did=a4c1ffff gx=20 gy=38 esi=1ce781a0 +BR ret=0 +BC did=a4c2ffff gx=20 gy=39 esi=1ce77570 +BR ret=0 +BC did=a4c3ffff gx=20 gy=40 esi=1ce776a8 +BR ret=0 +BC did=a4c4ffff gx=20 gy=41 esi=1ce76f58 +BR ret=0 +BC did=a4c5ffff gx=20 gy=42 esi=1ce76598 +BR ret=0 +BC did=a4c6ffff gx=20 gy=43 esi=1ce777e0 +BR ret=0 +BC did=a4c7ffff gx=20 gy=44 esi=1ce782d8 +BR ret=0 +BC did=a4c8ffff gx=20 gy=45 esi=1ce78068 +BR ret=0 +BC did=a4c9ffff gx=20 gy=46 esi=1ce75d10 +BR ret=0 +BC did=a4caffff gx=20 gy=47 esi=1ce77090 +BR ret=0 +BC did=a4cbffff gx=20 gy=48 esi=1ce760b8 +BR ret=0 +BC did=a4ccffff gx=20 gy=49 esi=1ce77b88 +BR ret=0 +BC did=a4cdffff gx=20 gy=50 esi=1ce766d0 +BR ret=0 +BC did=a59bffff gx=21 gy=0 esi=1ce75e48 +BR ret=0 +BC did=a59cffff gx=21 gy=1 esi=1ce761f0 +BR ret=0 +BC did=a59dffff gx=21 gy=2 esi=1ce76328 +BR ret=0 +BC did=a59effff gx=21 gy=3 esi=1ce77918 +BR ret=0 +BC did=a59fffff gx=21 gy=4 esi=1ce771c8 +BR ret=0 +BC did=a5a0ffff gx=21 gy=5 esi=1ce77cc0 +BR ret=0 +BC did=a5a1ffff gx=21 gy=6 esi=1ce77df8 +BR ret=0 +BC did=a5a2ffff gx=21 gy=7 esi=1ce76808 +BR ret=0 +BC did=a5a3ffff gx=21 gy=8 esi=1ce77f30 +BR ret=0 +BC did=a5a4ffff gx=21 gy=9 esi=1ce77300 +BR ret=0 +BC did=a5a5ffff gx=21 gy=10 esi=1ce77438 +BR ret=0 +BC did=a5a6ffff gx=21 gy=11 esi=1ce7a630 +BR ret=0 +BC did=a5a7ffff gx=21 gy=12 esi=1ce78c98 +BR ret=0 +BC did=a5a8ffff gx=21 gy=13 esi=1ce79a00 +BR ret=0 +BC did=a5a9ffff gx=21 gy=14 esi=1ce7a768 +BR ret=0 +BC did=a5aaffff gx=21 gy=15 esi=1ce78dd0 +BR ret=0 +BC did=a5abffff gx=21 gy=16 esi=1ce7a8a0 +BR ret=0 +BC did=a5acffff gx=21 gy=17 esi=1ce79790 +BR ret=0 +BC did=a5adffff gx=21 gy=18 esi=1ce78f08 +BR ret=0 +BC did=a5aeffff gx=21 gy=19 esi=1ce7a9d8 +BR ret=0 +BC did=a5afffff gx=21 gy=20 esi=1ce79520 +BR ret=0 +BC did=a5b0ffff gx=21 gy=21 esi=1ce79da8 +BR ret=0 +BC did=a5b1ffff gx=21 gy=22 esi=1ce79178 +BR ret=0 +BC did=a5b2ffff gx=21 gy=23 esi=1ce78b60 +BR ret=0 +BC did=a5b3ffff gx=21 gy=24 esi=1ce79b38 +BR ret=0 +BC did=a5b4ffff gx=21 gy=25 esi=1ce79040 +BR ret=0 +BC did=a5b5ffff gx=21 gy=26 esi=1ce79c70 +BR ret=0 +BC did=a5b6ffff gx=21 gy=27 esi=1ce78410 +BR ret=0 +BC did=a5b7ffff gx=21 gy=28 esi=1ce798c8 +BR ret=1 +BC did=a5b8ffff gx=21 gy=29 esi=1ce78548 +BR ret=1 +BC did=a5b9ffff gx=21 gy=30 esi=1ce79658 +BR ret=0 +BC did=a5baffff gx=21 gy=31 esi=1ce787b8 +BR ret=0 +BC did=a5bbffff gx=21 gy=32 esi=1ce792b0 +BR ret=0 +BC did=a5bcffff gx=21 gy=33 esi=1ce793e8 +BR ret=0 +BC did=a5bdffff gx=21 gy=34 esi=1ce79ee0 +BR ret=0 +BC did=a5beffff gx=21 gy=35 esi=1ce7a018 +BR ret=0 +BC did=a5bfffff gx=21 gy=36 esi=1ce7a150 +BR ret=0 +BC did=a5c0ffff gx=21 gy=37 esi=1ce788f0 +BR ret=0 +BC did=a5c1ffff gx=21 gy=38 esi=1ce7a4f8 +BR ret=0 +BC did=a5c2ffff gx=21 gy=39 esi=1ce7a288 +BR ret=0 +BC did=a5c3ffff gx=21 gy=40 esi=1ce7a3c0 +BR ret=0 +BC did=a5c4ffff gx=21 gy=41 esi=1ce78680 +BR ret=0 +BC did=a5c5ffff gx=21 gy=42 esi=1ce78a28 +BR ret=0 +BC did=a5c6ffff gx=21 gy=43 esi=1ce7b740 +BR ret=0 +BC did=a5c7ffff gx=21 gy=44 esi=1ce7b878 +BR ret=0 +BC did=a5c8ffff gx=21 gy=45 esi=1ce7cd30 +BR ret=0 +BC did=a5c9ffff gx=21 gy=46 esi=1ce7ad80 +BR ret=0 +BC did=a5caffff gx=21 gy=47 esi=1ce7ce68 +BR ret=0 +BC did=a5cbffff gx=21 gy=48 esi=1ce7b260 +BR ret=0 +BC did=a5ccffff gx=21 gy=49 esi=1ce7cfa0 +BR ret=0 +BC did=a5cdffff gx=21 gy=50 esi=1ce7c5e0 +BR ret=0 +BC did=a69bffff gx=22 gy=0 esi=1ce7d0d8 +BR ret=0 +BC did=a69cffff gx=22 gy=1 esi=1ce7b608 +BR ret=0 +BC did=a69dffff gx=22 gy=2 esi=1ce7c718 +BR ret=0 +BC did=a69effff gx=22 gy=3 esi=1ce7ab10 +BR ret=0 +BC did=a69fffff gx=22 gy=4 esi=1ce7b128 +BR ret=0 +BC did=a6a0ffff gx=22 gy=5 esi=1ce7ac48 +BR ret=0 +BC did=a6a1ffff gx=22 gy=6 esi=1ce7aeb8 +BR ret=0 +BC did=a6a2ffff gx=22 gy=7 esi=1ce7c100 +BR ret=0 +BC did=a6a3ffff gx=22 gy=8 esi=1ce7b398 +BR ret=0 +BC did=a6a4ffff gx=22 gy=9 esi=1ce7b4d0 +BR ret=0 +BC did=a6a5ffff gx=22 gy=10 esi=1ce7c850 +BR ret=0 +BC did=a6a6ffff gx=22 gy=11 esi=1ce7aff0 +BR ret=0 +BC did=a6a7ffff gx=22 gy=12 esi=1ce7c370 +BR ret=0 +BC did=a6a8ffff gx=22 gy=13 esi=1ce7b9b0 +BR ret=0 +BC did=a6a9ffff gx=22 gy=14 esi=1ce7bae8 +BR ret=0 +BC did=a6aaffff gx=22 gy=15 esi=1ce7bc20 +BR ret=0 +BC did=a6abffff gx=22 gy=16 esi=1ce7c988 +BR ret=0 +BC did=a6acffff gx=22 gy=17 esi=1ce7cac0 +BR ret=0 +BC did=a6adffff gx=22 gy=18 esi=1ce7cbf8 +BR ret=0 +BC did=a6aeffff gx=22 gy=19 esi=1ce7c4a8 +BR ret=0 +BC did=a6afffff gx=22 gy=20 esi=1ce7bd58 +BR ret=0 +BC did=a6b0ffff gx=22 gy=21 esi=1ce7be90 +BR ret=0 +BC did=a6b1ffff gx=22 gy=22 esi=1ce7bfc8 +BR ret=0 +BC did=a6b2ffff gx=22 gy=23 esi=1ce7c238 +BR ret=0 +BC did=a6b3ffff gx=22 gy=24 esi=1ce7f430 +BR ret=0 +BC did=a6b4ffff gx=22 gy=25 esi=1ce7da98 +BR ret=0 +BC did=a6b5ffff gx=22 gy=26 esi=1ce7ee18 +BR ret=0 +BC did=a6b6ffff gx=22 gy=27 esi=1ce7d210 +BR ret=1 +BC did=a6b7ffff gx=22 gy=28 esi=1ce7d960 +BR ret=1 +BC did=a6b8ffff gx=22 gy=29 esi=1ce7dbd0 +BR ret=0 +BC did=a6b9ffff gx=22 gy=30 esi=1ce7e6c8 +BR ret=0 +BC did=a6baffff gx=22 gy=31 esi=1ce7e800 +BR ret=0 +BC did=a6bbffff gx=22 gy=32 esi=1ce7ece0 +BR ret=0 +BC did=a6bcffff gx=22 gy=33 esi=1ce7dd08 +BR ret=0 +BC did=a6bdffff gx=22 gy=34 esi=1ce7f1c0 +BR ret=0 +BC did=a6beffff gx=22 gy=35 esi=1ce7d480 +BR ret=0 +BC did=a6bfffff gx=22 gy=36 esi=1ce7f568 +BR ret=0 +BC did=a6c0ffff gx=22 gy=37 esi=1ce7de40 +BR ret=0 +BC did=a6c1ffff gx=22 gy=38 esi=1ce7f6a0 +BR ret=0 +BC did=a6c2ffff gx=22 gy=39 esi=1ce7ef50 +BR ret=0 +BC did=a6c3ffff gx=22 gy=40 esi=1ce7f088 +BR ret=0 +BC did=a6c4ffff gx=22 gy=41 esi=1ce7d828 +BR ret=0 +BC did=a6c5ffff gx=22 gy=42 esi=1ce7f2f8 +BR ret=0 +BC did=a6c6ffff gx=22 gy=43 esi=1ce7df78 +BR ret=0 +BC did=a6c7ffff gx=22 gy=44 esi=1ce7f7d8 +BR ret=0 +BC did=a6c8ffff gx=22 gy=45 esi=1ce7d5b8 +BR ret=0 +BC did=a6c9ffff gx=22 gy=46 esi=1ce7e0b0 +BR ret=0 +BC did=a6caffff gx=22 gy=47 esi=1ce7e1e8 +BR ret=0 +BC did=a6cbffff gx=22 gy=48 esi=1ce7e320 +BR ret=0 +BC did=a6ccffff gx=22 gy=49 esi=1ce7eba8 +BR ret=0 +BC did=a6cdffff gx=22 gy=50 esi=1ce7e590 +BR ret=0 +BC did=a79bffff gx=23 gy=0 esi=1ce7e458 +BR ret=0 +BC did=a79cffff gx=23 gy=1 esi=1ce7e938 +BR ret=0 +BC did=a79dffff gx=23 gy=2 esi=1ce7d348 +BR ret=0 +BC did=a79effff gx=23 gy=3 esi=1ce7d6f0 +BR ret=0 +BC did=a79fffff gx=23 gy=4 esi=1ce7ea70 +BR ret=0 +BC did=a7a0ffff gx=23 gy=5 esi=1ce80060 +BR ret=0 +BC did=a7a1ffff gx=23 gy=6 esi=1ce812a8 +BR ret=0 +BC did=a7a2ffff gx=23 gy=7 esi=1ce7fcb8 +BR ret=0 +BC did=a7a3ffff gx=23 gy=8 esi=1ce80c90 +BR ret=0 +BC did=a7a4ffff gx=23 gy=9 esi=1ce80408 +BR ret=0 +BC did=a7a5ffff gx=23 gy=10 esi=1ce81170 +BR ret=0 +BC did=a7a6ffff gx=23 gy=11 esi=1ce80a20 +BR ret=0 +BC did=a7a7ffff gx=23 gy=12 esi=1ce80540 +BR ret=0 +BC did=a7a8ffff gx=23 gy=13 esi=1ce7f910 +BR ret=0 +BC did=a7a9ffff gx=23 gy=14 esi=1ce802d0 +BR ret=0 +BC did=a7aaffff gx=23 gy=15 esi=1ce7fb80 +BR ret=0 +BC did=a7abffff gx=23 gy=16 esi=1ce818c0 +BR ret=0 +BC did=a7acffff gx=23 gy=17 esi=1ce80678 +BR ret=0 +BC did=a7adffff gx=23 gy=18 esi=1ce7fa48 +BR ret=0 +BC did=a7aeffff gx=23 gy=19 esi=1ce80198 +BR ret=0 +BC did=a7afffff gx=23 gy=20 esi=1ce807b0 +BR ret=0 +BC did=a7b0ffff gx=23 gy=21 esi=1ce7fdf0 +BR ret=0 +BC did=a7b1ffff gx=23 gy=22 esi=1ce7ff28 +BR ret=0 +BC did=a7b2ffff gx=23 gy=23 esi=1ce808e8 +BR ret=0 +BC did=a7b3ffff gx=23 gy=24 esi=1ce81650 +BR ret=0 +BC did=a7b4ffff gx=23 gy=25 esi=1ce81518 +BR ret=0 +BC did=a7b5ffff gx=23 gy=26 esi=1ce80b58 +BR ret=1 +BC did=a7b6ffff gx=23 gy=27 esi=1ce80dc8 +BR ret=1 +BC did=a7b7ffff gx=23 gy=28 esi=1ce80f00 +BR ret=0 +BC did=a7b8ffff gx=23 gy=29 esi=1ce81038 +BR ret=0 +BC did=a7b9ffff gx=23 gy=30 esi=1ce813e0 +BR ret=0 +BC did=a7baffff gx=23 gy=31 esi=1ce81788 +BR ret=0 +BC did=a7bbffff gx=23 gy=32 esi=1ce819f8 +BR ret=0 +BC did=a7bcffff gx=23 gy=33 esi=1ce81b30 +BR ret=0 +BC did=a7bdffff gx=23 gy=34 esi=1ce81c68 +BR ret=0 +BC did=a7beffff gx=23 gy=35 esi=1ce81da0 +BR ret=0 +BC did=a7bfffff gx=23 gy=36 esi=1ce81ed8 +BR ret=0 +BC did=a7c0ffff gx=23 gy=37 esi=1ce844a0 +BR ret=0 +BC did=a7c1ffff gx=23 gy=38 esi=1ce83870 +BR ret=0 +BC did=a7c2ffff gx=23 gy=39 esi=1ce839a8 +BR ret=0 +BC did=a7c3ffff gx=23 gy=40 esi=1ce82eb0 +BR ret=0 +BC did=a7c4ffff gx=23 gy=41 esi=1ce82898 +BR ret=0 +BC did=a7c5ffff gx=23 gy=42 esi=1ce83258 +BR ret=0 +BC did=a7c6ffff gx=23 gy=43 esi=1ce82010 +BR ret=0 +BC did=a7c7ffff gx=23 gy=44 esi=1ce834c8 +BR ret=0 +BC did=a7c8ffff gx=23 gy=45 esi=1ce83600 +BR ret=0 +BC did=a7c9ffff gx=23 gy=46 esi=1ce845d8 +BR ret=0 +BC did=a7caffff gx=23 gy=47 esi=1ce83e88 +BR ret=0 +BC did=a7cbffff gx=23 gy=48 esi=1ce82760 +BR ret=0 +BC did=a7ccffff gx=23 gy=49 esi=1ce83738 +BR ret=0 +BC did=a7cdffff gx=23 gy=50 esi=1ce83ae0 +BR ret=0 +BC did=a89bffff gx=24 gy=0 esi=1ce82fe8 +BR ret=0 +BC did=a89cffff gx=24 gy=1 esi=1ce82280 +BR ret=0 +BC did=a89dffff gx=24 gy=2 esi=1ce82d78 +BR ret=0 +BC did=a89effff gx=24 gy=3 esi=1ce84230 +BR ret=0 +BC did=a89fffff gx=24 gy=4 esi=1ce823b8 +BR ret=0 +BC did=a8a0ffff gx=24 gy=5 esi=1ce83c18 +BR ret=0 +BC did=a8a1ffff gx=24 gy=6 esi=1ce829d0 +BR ret=0 +BC did=a8a2ffff gx=24 gy=7 esi=1ce82b08 +BR ret=0 +BC did=a8a3ffff gx=24 gy=8 esi=1ce83d50 +BR ret=0 +BC did=a8a4ffff gx=24 gy=9 esi=1ce82148 +BR ret=0 +BC did=a8a5ffff gx=24 gy=10 esi=1ce83fc0 +BR ret=0 +BC did=a8a6ffff gx=24 gy=11 esi=1ce840f8 +BR ret=0 +BC did=a8a7ffff gx=24 gy=12 esi=1ce83120 +BR ret=0 +BC did=a8a8ffff gx=24 gy=13 esi=1ce82628 +BR ret=0 +BC did=a8a9ffff gx=24 gy=14 esi=1ce84368 +BR ret=0 +BC did=a8aaffff gx=24 gy=15 esi=1ce83390 +BR ret=0 +BC did=a8abffff gx=24 gy=16 esi=1ce824f0 +BR ret=0 +BC did=a8acffff gx=24 gy=17 esi=1ce82c40 +BR ret=0 +BC did=a8adffff gx=24 gy=18 esi=1ce85340 +BR ret=0 +BC did=a8aeffff gx=24 gy=19 esi=1ce84e60 +BR ret=0 +BC did=a8afffff gx=24 gy=20 esi=1ce856e8 +BR ret=0 +BC did=a8b0ffff gx=24 gy=21 esi=1ce86ba0 +BR ret=0 +BC did=a8b1ffff gx=24 gy=22 esi=1ce86930 +BR ret=0 +BC did=a8b2ffff gx=24 gy=23 esi=1ce85f70 +BR ret=0 +BC did=a8b3ffff gx=24 gy=24 esi=1ce86450 +BR ret=0 +BC did=a8b4ffff gx=24 gy=25 esi=1ce861e0 +BR ret=1 +BC did=a8b4ffff gx=0 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=0 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=0 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=0 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=0 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=0 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=0 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=0 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=1 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=1 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=1 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=1 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=1 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=1 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=1 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=1 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=2 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=2 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=2 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=2 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=2 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=2 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=2 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=2 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=3 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=3 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=3 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=3 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=3 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=3 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=3 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=3 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=4 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=4 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=4 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=4 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=4 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=4 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=4 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=4 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=5 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=5 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=5 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=5 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=5 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=5 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=5 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=5 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=6 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=6 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=6 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=6 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=6 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=6 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=6 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=6 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=7 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=7 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=7 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=7 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=7 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=7 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=7 gy=1768844 esi=1ce861e0 +BC did=a8b4ffff gx=7 gy=1768844 esi=1ce861e0 +BC did=a8b5ffff gx=24 gy=26 esi=1ce855b0 +BR ret=1 +BC did=a8b5ffff gx=0 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=0 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=0 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=0 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=0 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=0 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=0 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=0 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=1 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=1 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=1 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=1 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=1 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=1 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=1 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=1 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=2 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=2 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=2 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=2 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=2 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=2 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=2 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=2 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=3 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=3 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=3 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=3 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=3 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=3 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=3 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=3 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=4 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=4 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=4 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=4 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=4 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=4 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=4 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=4 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=5 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=5 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=5 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=5 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=5 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=5 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=5 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=6 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=6 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=6 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=6 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=6 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=7 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=7 gy=1768844 esi=1ce855b0 +BC did=a8b5ffff gx=7 gy=1768844 esi=1ce855b0 +BC did=a8b6ffff gx=24 gy=27 esi=1ce84f98 +BR ret=0 +BC did=a8b7ffff gx=24 gy=28 esi=1ce85958 +BR ret=0 +BC did=a8b8ffff gx=24 gy=29 esi=1ce850d0 +BR ret=0 +BC did=a8b9ffff gx=24 gy=30 esi=1ce85478 +BR ret=0 +BC did=a8baffff gx=24 gy=31 esi=1ce85208 +BR ret=0 +BC did=a8bbffff gx=24 gy=32 esi=1ce85820 +BR ret=0 +BC did=a8bcffff gx=24 gy=33 esi=1ce860a8 +BR ret=0 +BC did=a8bdffff gx=24 gy=34 esi=1ce85a90 +BR ret=0 +BC did=a8beffff gx=24 gy=35 esi=1ce85d00 +BR ret=0 +BC did=a8bfffff gx=24 gy=36 esi=1ce85bc8 +BR ret=0 +BC did=a8c0ffff gx=24 gy=37 esi=1ce85e38 +BR ret=0 +BC did=a8c1ffff gx=24 gy=38 esi=1ce86318 +BR ret=0 +BC did=a8c2ffff gx=24 gy=39 esi=1ce86588 +BR ret=0 +BC did=a8c3ffff gx=24 gy=40 esi=1ce866c0 +BR ret=0 +BC did=a8c4ffff gx=24 gy=41 esi=1ce867f8 +BR ret=0 +BC did=a8c5ffff gx=24 gy=42 esi=1ce86a68 +BR ret=0 +BC did=a8c6ffff gx=24 gy=43 esi=1ce86cd8 +BR ret=0 +BC did=a8c7ffff gx=24 gy=44 esi=1ce84710 +BR ret=0 +BC did=a8c8ffff gx=24 gy=45 esi=1ce84848 +BR ret=0 +BC did=a8c9ffff gx=24 gy=46 esi=1ce84980 +BR ret=0 +BC did=a8caffff gx=24 gy=47 esi=1ce84ab8 +BR ret=0 +BC did=a8cbffff gx=24 gy=48 esi=1ce84bf0 +BR ret=0 +BC did=a8ccffff gx=24 gy=49 esi=1ce84d28 +BR ret=0 +BC did=a8cdffff gx=24 gy=50 esi=1ce87698 +BR ret=0 +BC did=a99bffff gx=25 gy=0 esi=1ce87f20 +BR ret=0 +BC did=a99cffff gx=25 gy=1 esi=1ce887a8 +BR ret=0 +BC did=a99dffff gx=25 gy=2 esi=1ce888e0 +BR ret=0 +BC did=a99effff gx=25 gy=3 esi=1ce86f48 +BR ret=0 +BC did=a99fffff gx=25 gy=4 esi=1ce877d0 +BR ret=0 +BC did=a9a0ffff gx=25 gy=5 esi=1ce87908 +BR ret=0 +BC did=a9a1ffff gx=25 gy=6 esi=1ce88b50 +BR ret=0 +BC did=a9a2ffff gx=25 gy=7 esi=1ce88a18 +BR ret=0 +BC did=a9a3ffff gx=25 gy=8 esi=1ce893d8 +BR ret=0 +BC did=a9a4ffff gx=25 gy=9 esi=1ce88670 +BR ret=0 +BC did=a9a5ffff gx=25 gy=10 esi=1ce88c88 +BR ret=0 +BC did=a9a6ffff gx=25 gy=11 esi=1ce87b78 +BR ret=0 +BC did=a9a7ffff gx=25 gy=12 esi=1ce87428 +BR ret=0 +BC did=a9a8ffff gx=25 gy=13 esi=1ce88058 +BR ret=0 +BC did=a9a9ffff gx=25 gy=14 esi=1ce87560 +BR ret=0 +BC did=a9aaffff gx=25 gy=15 esi=1ce88400 +BR ret=0 +BC did=a9abffff gx=25 gy=16 esi=1ce89030 +BR ret=0 +BC did=a9acffff gx=25 gy=17 esi=1ce88ef8 +BR ret=0 +BC did=a9adffff gx=25 gy=18 esi=1ce87a40 +BR ret=0 +BC did=a9aeffff gx=25 gy=19 esi=1ce88dc0 +BR ret=0 +BC did=a9afffff gx=25 gy=20 esi=1ce88190 +BR ret=0 +BC did=a9b0ffff gx=25 gy=21 esi=1ce89168 +BR ret=0 +BC did=a9b1ffff gx=25 gy=22 esi=1ce892a0 +BR ret=0 +BC did=a9b2ffff gx=25 gy=23 esi=1ce87cb0 +BR ret=0 +BC did=a9b3ffff gx=25 gy=24 esi=1ce87de8 +BR ret=1 +BC did=a9b3ffff gx=0 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=0 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=0 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=0 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=0 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=0 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=0 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=0 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=1 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=1 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=1 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=1 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=1 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=1 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=1 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=1 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=2 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=2 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=2 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=2 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=2 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=2 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=2 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=2 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=3 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=3 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=3 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=3 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=3 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=3 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=3 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=3 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=4 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=4 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=4 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=4 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=4 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=4 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=4 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=4 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=5 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=5 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=5 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=5 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=5 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=5 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=5 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=5 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=6 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=6 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=6 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=6 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=6 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=6 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=6 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=6 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=7 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=7 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=7 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=7 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=7 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=7 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=7 gy=1768844 esi=1ce87de8 +BC did=a9b3ffff gx=7 gy=1768844 esi=1ce87de8 +BC did=a9b4ffff gx=25 gy=25 esi=1ce882c8 +BR ret=1 +BC did=a9b4ffff gx=0 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=0 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=0 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=0 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=0 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=0 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=0 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=0 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=1 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=1 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=1 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=1 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=1 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=1 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=1 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=2 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=2 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=2 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=2 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=2 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=3 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=3 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=3 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=4 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=6 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=6 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=6 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=6 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=6 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=6 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=7 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=7 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=7 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=7 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=7 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=7 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=7 gy=1768844 esi=1ce882c8 +BC did=a9b4ffff gx=7 gy=1768844 esi=1ce882c8 +BC did=a9b5ffff gx=25 gy=26 esi=1ce88538 +BR ret=0 +BC did=a9b6ffff gx=25 gy=27 esi=1ce86e10 +BR ret=0 +BC did=a9b7ffff gx=25 gy=28 esi=1ce87080 +BR ret=0 +BC did=a9b8ffff gx=25 gy=29 esi=1ce871b8 +BR ret=0 +BC did=a9b9ffff gx=25 gy=30 esi=1ce872f0 +BR ret=0 +BC did=a9baffff gx=25 gy=31 esi=1ce8b4c0 +BR ret=0 +BC did=a9bbffff gx=25 gy=32 esi=1ce8aea8 +BR ret=0 +BC did=a9bcffff gx=25 gy=33 esi=1ce8b9a0 +BR ret=0 +BC did=a9bdffff gx=25 gy=34 esi=1ce8b250 +BR ret=0 +BC did=a9beffff gx=25 gy=35 esi=1ce8ab00 +BR ret=0 +BC did=a9bfffff gx=25 gy=36 esi=1ce8b5f8 +BR ret=0 +BC did=a9c0ffff gx=25 gy=37 esi=1ce8b730 +BR ret=0 +BC did=a9c1ffff gx=25 gy=38 esi=1ce89d98 +BR ret=0 +BC did=a9c2ffff gx=25 gy=39 esi=1ce8ac38 +BR ret=0 +BC did=a9c3ffff gx=25 gy=40 esi=1ce8b868 +BR ret=0 +BC did=a9c4ffff gx=25 gy=41 esi=1ce89ed0 +BR ret=0 +BC did=a9c5ffff gx=25 gy=42 esi=1ce8bad8 +BR ret=0 +BC did=a9c6ffff gx=25 gy=43 esi=1ce89510 +BR ret=0 +BC did=a9c7ffff gx=25 gy=44 esi=1ce8a008 +BR ret=0 +BC did=a9c8ffff gx=25 gy=45 esi=1ce89648 +BR ret=0 +BC did=a9c9ffff gx=25 gy=46 esi=1ce8a620 +BR ret=0 +BC did=a9caffff gx=25 gy=47 esi=1ce8a140 +BR ret=0 +BC did=a9cbffff gx=25 gy=48 esi=1ce89780 +BR ret=0 +BC did=a9ccffff gx=25 gy=49 esi=1ce898b8 +BR ret=0 +BC did=a9cdffff gx=25 gy=50 esi=1ce8a278 +BR ret=0 +BC did=aa9bffff gx=26 gy=0 esi=1ce899f0 +BR ret=0 +BC did=aa9cffff gx=26 gy=1 esi=1ce8a3b0 +BR ret=0 +BC did=aa9dffff gx=26 gy=2 esi=1ce8b118 +BR ret=0 +BC did=aa9effff gx=26 gy=3 esi=1ce89b28 +BR ret=0 +BC did=aa9fffff gx=26 gy=4 esi=1ce8ad70 +BR ret=0 +BC did=aaa0ffff gx=26 gy=5 esi=1ce8a4e8 +BR ret=0 +BC did=aaa1ffff gx=26 gy=6 esi=1ce89c60 +BR ret=0 +BC did=aaa2ffff gx=26 gy=7 esi=1ce8a758 +BR ret=0 +BC did=aaa3ffff gx=26 gy=8 esi=1ce8a890 +BR ret=0 +BC did=aaa4ffff gx=26 gy=9 esi=1ce8b388 +BR ret=0 +BC did=aaa5ffff gx=26 gy=10 esi=1ce8a9c8 +BR ret=0 +BC did=aaa6ffff gx=26 gy=11 esi=1ce8afe0 +BR ret=0 +BC did=aaa7ffff gx=26 gy=12 esi=1ce8c498 +BR ret=0 +BC did=aaa8ffff gx=26 gy=13 esi=1ce8bfb8 +BR ret=0 +BC did=aaa9ffff gx=26 gy=14 esi=1ce8c840 +BR ret=0 +BC did=aaaaffff gx=26 gy=15 esi=1ce8c708 +BR ret=0 +BC did=aaabffff gx=26 gy=16 esi=1ce8c978 +BR ret=0 +BC did=aaacffff gx=26 gy=17 esi=1ce8cd20 +BR ret=0 +BC did=aaadffff gx=26 gy=18 esi=1ce8d470 +BR ret=0 +BC did=aaaeffff gx=26 gy=19 esi=1ce8c0f0 +BR ret=0 +BC did=aaafffff gx=26 gy=20 esi=1ce8d950 +BR ret=0 +BC did=aab0ffff gx=26 gy=21 esi=1ce8cab0 +BR ret=0 +BC did=aab1ffff gx=26 gy=22 esi=1ce8cbe8 +BR ret=0 +BC did=aab2ffff gx=26 gy=23 esi=1ce8c360 +BR ret=0 +BC did=aab3ffff gx=26 gy=24 esi=1ce8ce58 +BR ret=0 +BC did=aab4ffff gx=26 gy=25 esi=1ce8cf90 +BR ret=0 +BC did=aab5ffff gx=26 gy=26 esi=1ce8c228 +BR ret=0 +BC did=aab6ffff gx=26 gy=27 esi=1ce8d0c8 +BR ret=0 +BC did=aab7ffff gx=26 gy=28 esi=1ce8c5d0 +BR ret=0 +BC did=aab8ffff gx=26 gy=29 esi=1ce8d200 +BR ret=0 +BC did=aab9ffff gx=26 gy=30 esi=1ce8de30 +BR ret=0 +BC did=aabaffff gx=26 gy=31 esi=1ce8dcf8 +BR ret=0 +BC did=aabbffff gx=26 gy=32 esi=1ce8d338 +BR ret=0 +BC did=aabcffff gx=26 gy=33 esi=1ce8da88 +BR ret=0 +BC did=aabdffff gx=26 gy=34 esi=1ce8d5a8 +BR ret=0 +BC did=aabeffff gx=26 gy=35 esi=1ce8d818 +BR ret=0 +BC did=aabfffff gx=26 gy=36 esi=1ce8d6e0 +BR ret=0 +BC did=aac0ffff gx=26 gy=37 esi=1ce8dbc0 +BR ret=0 +BC did=aac1ffff gx=26 gy=38 esi=1ce8df68 +BR ret=0 +BC did=aac2ffff gx=26 gy=39 esi=1ce8e1d8 +BR ret=0 +BC did=aac3ffff gx=26 gy=40 esi=1ce8e0a0 +BR ret=0 +BC did=aac4ffff gx=26 gy=41 esi=1ce8bc10 +BR ret=0 +BC did=aac5ffff gx=26 gy=42 esi=1ce8bd48 +BR ret=0 +BC did=aac6ffff gx=26 gy=43 esi=1ce8be80 +BR ret=0 +BC did=aac7ffff gx=26 gy=44 esi=1ce90188 +BR ret=0 +BC did=aac8ffff gx=26 gy=45 esi=1ce902c0 +BR ret=0 +BC did=aac9ffff gx=26 gy=46 esi=1ce90050 +BR ret=0 +BC did=aacaffff gx=26 gy=47 esi=1ce8eb98 +BR ret=0 +BC did=aacbffff gx=26 gy=48 esi=1ce8e7f0 +BR ret=0 +BC did=aaccffff gx=26 gy=49 esi=1ce8f078 +BR ret=0 +BC did=aacdffff gx=26 gy=50 esi=1ce8f1b0 +BR ret=0 +BC did=ab9bffff gx=27 gy=0 esi=1ce8e580 +BR ret=0 +BC did=ab9cffff gx=27 gy=1 esi=1ce8ff18 +BR ret=0 +BC did=ab9dffff gx=27 gy=2 esi=1ce8f2e8 +BR ret=0 +BC did=ab9effff gx=27 gy=3 esi=1ce903f8 +BR ret=0 +BC did=ab9fffff gx=27 gy=4 esi=1ce8fca8 +BR ret=0 +BC did=aba0ffff gx=27 gy=5 esi=1ce907a0 +BR ret=0 +BC did=aba1ffff gx=27 gy=6 esi=1ce90530 +BR ret=0 +BC did=aba2ffff gx=27 gy=7 esi=1ce8f900 +BR ret=0 +BC did=aba3ffff gx=27 gy=8 esi=1ce90668 +BR ret=0 +BC did=aba4ffff gx=27 gy=9 esi=1ce908d8 +BR ret=0 +BC did=aba5ffff gx=27 gy=10 esi=1ce8ecd0 +BR ret=0 +BC did=aba6ffff gx=27 gy=11 esi=1ce8fa38 +BR ret=0 +BC did=aba7ffff gx=27 gy=12 esi=1ce8e310 +BR ret=0 +BC did=aba8ffff gx=27 gy=13 esi=1ce8ee08 +BR ret=0 +BC did=aba9ffff gx=27 gy=14 esi=1ce8e448 +BR ret=0 +BC did=abaaffff gx=27 gy=15 esi=1ce8e6b8 +BR ret=0 +BC did=ababffff gx=27 gy=16 esi=1ce8ef40 +BR ret=0 +BC did=abacffff gx=27 gy=17 esi=1ce8e928 +BR ret=0 +BC did=abadffff gx=27 gy=18 esi=1ce8f420 +BR ret=0 +BC did=abaeffff gx=27 gy=19 esi=1ce8fb70 +BR ret=0 +BC did=abafffff gx=27 gy=20 esi=1ce8ea60 +BR ret=0 +BC did=abb0ffff gx=27 gy=21 esi=1ce8fde0 +BR ret=0 +BC did=abb1ffff gx=27 gy=22 esi=1ce8f558 +BR ret=0 +BC did=abb2ffff gx=27 gy=23 esi=1ce8f690 +BR ret=0 +BC did=abb3ffff gx=27 gy=24 esi=1ce8f7c8 +BR ret=0 +BC did=abb4ffff gx=27 gy=25 esi=1ce92888 +BR ret=0 +BC did=abb5ffff gx=27 gy=26 esi=1ce92ea0 +BR ret=0 +BC did=abb6ffff gx=27 gy=27 esi=1ce92c30 +BR ret=0 +BC did=abb7ffff gx=27 gy=28 esi=1ce90b48 +BR ret=0 +BC did=abb8ffff gx=27 gy=29 esi=1ce91028 +BR ret=0 +BC did=abb9ffff gx=27 gy=30 esi=1ce90ef0 +BR ret=0 +BC did=abbaffff gx=27 gy=31 esi=1ce91640 +BR ret=0 +BC did=abbbffff gx=27 gy=32 esi=1ce92618 +BR ret=0 +BC did=abbcffff gx=27 gy=33 esi=1ce919e8 +BR ret=0 +BC did=abbdffff gx=27 gy=34 esi=1ce91160 +BR ret=0 +BC did=abbeffff gx=27 gy=35 esi=1ce91298 +BR ret=0 +BC did=abbfffff gx=27 gy=36 esi=1ce91d90 +BR ret=0 +BC did=abc0ffff gx=27 gy=37 esi=1ce923a8 +BR ret=0 +BC did=abc1ffff gx=27 gy=38 esi=1ce913d0 +BR ret=0 +BC did=abc2ffff gx=27 gy=39 esi=1ce91508 +BR ret=0 +BC did=abc3ffff gx=27 gy=40 esi=1ce929c0 +BR ret=0 +BC did=abc4ffff gx=27 gy=41 esi=1ce91778 +BR ret=0 +BC did=abc5ffff gx=27 gy=42 esi=1ce92750 +BR ret=0 +BC did=abc6ffff gx=27 gy=43 esi=1ce918b0 +BR ret=0 +BC did=abc7ffff gx=27 gy=44 esi=1ce92af8 +BR ret=0 +BC did=abc8ffff gx=27 gy=45 esi=1ce924e0 +BR ret=0 +BC did=abc9ffff gx=27 gy=46 esi=1ce92fd8 +BR ret=0 +BC did=abcaffff gx=27 gy=47 esi=1ce92d68 +BR ret=0 +BC did=abcbffff gx=27 gy=48 esi=1ce92000 +BR ret=0 +BC did=abccffff gx=27 gy=49 esi=1ce90a10 +BR ret=0 +BC did=abcdffff gx=27 gy=50 esi=1ce90c80 +BR ret=0 +BC did=ac9bffff gx=28 gy=0 esi=1ce91b20 +BR ret=0 +BC did=ac9cffff gx=28 gy=1 esi=1ce90db8 +BR ret=0 +BC did=ac9dffff gx=28 gy=2 esi=1ce91c58 +BR ret=0 +BC did=ac9effff gx=28 gy=3 esi=1ce91ec8 +BR ret=0 +BC did=ac9fffff gx=28 gy=4 esi=1ce92138 +BR ret=0 +BC did=aca0ffff gx=28 gy=5 esi=1ce92270 +BR ret=0 +BC did=aca1ffff gx=28 gy=6 esi=1ce93860 +BR ret=0 +BC did=aca2ffff gx=28 gy=7 esi=1ce94358 +BR ret=0 +BC did=aca3ffff gx=28 gy=8 esi=1ce93728 +BR ret=0 +BC did=aca4ffff gx=28 gy=9 esi=1ce94d18 +BR ret=0 +BC did=aca5ffff gx=28 gy=10 esi=1ce95330 +BR ret=0 +BC did=aca6ffff gx=28 gy=11 esi=1ce93998 +BR ret=0 +BC did=aca7ffff gx=28 gy=12 esi=1ce94aa8 +BR ret=0 +BC did=aca8ffff gx=28 gy=13 esi=1ce94490 +BR ret=0 +BC did=aca9ffff gx=28 gy=14 esi=1ce94700 +BR ret=0 +BC did=acaaffff gx=28 gy=15 esi=1ce93e78 +BR ret=0 +BC did=acabffff gx=28 gy=16 esi=1ce93ad0 +BR ret=0 +BC did=acacffff gx=28 gy=17 esi=1ce95468 +BR ret=0 +BC did=acadffff gx=28 gy=18 esi=1ce93c08 +BR ret=0 +BC did=acaeffff gx=28 gy=19 esi=1ce955a0 +BR ret=0 +BC did=acafffff gx=28 gy=20 esi=1ce94be0 +BR ret=0 +BC did=acb0ffff gx=28 gy=21 esi=1ce94970 +BR ret=0 +BC did=acb1ffff gx=28 gy=22 esi=1ce94e50 +BR ret=0 +BC did=acb2ffff gx=28 gy=23 esi=1ce94f88 +BR ret=0 +BC did=acb3ffff gx=28 gy=24 esi=1ce950c0 +BR ret=0 +BC did=acb4ffff gx=28 gy=25 esi=1ce93fb0 +BR ret=0 +BC did=acb5ffff gx=28 gy=26 esi=1ce93d40 +BR ret=0 +BC did=acb6ffff gx=28 gy=27 esi=1ce951f8 +BR ret=0 +BC did=acb7ffff gx=28 gy=28 esi=1ce956d8 +BR ret=0 +BC did=acb8ffff gx=28 gy=29 esi=1ce940e8 +BR ret=0 +BC did=acb9ffff gx=28 gy=30 esi=1ce93110 +BR ret=0 +BC did=acbaffff gx=28 gy=31 esi=1ce945c8 +BR ret=0 +BC did=acbbffff gx=28 gy=32 esi=1ce94838 +BR ret=0 +BC did=acbcffff gx=28 gy=33 esi=1ce94220 +BR ret=0 +BC did=acbdffff gx=28 gy=34 esi=1ce93248 +BR ret=0 +BC did=acbeffff gx=28 gy=35 esi=1ce93380 +BR ret=0 +BC did=acbfffff gx=28 gy=36 esi=1ce934b8 +BR ret=0 +BC did=acc0ffff gx=28 gy=37 esi=1ce935f0 +BR ret=0 +BC did=acc1ffff gx=28 gy=38 esi=1ce95f60 +BR ret=0 +BC did=acc2ffff gx=28 gy=39 esi=1ce96b90 +BR ret=0 +BC did=acc3ffff gx=28 gy=40 esi=1ce95948 +BR ret=0 +BC did=acc4ffff gx=28 gy=41 esi=1ce96578 +BR ret=0 +BC did=acc5ffff gx=28 gy=42 esi=1ce97a30 +BR ret=0 +BC did=acc6ffff gx=28 gy=43 esi=1ce96098 +BR ret=0 +BC did=acc7ffff gx=28 gy=44 esi=1ce97ca0 +BR ret=0 +BC did=acc8ffff gx=28 gy=45 esi=1ce978f8 +BR ret=0 +BC did=acc9ffff gx=28 gy=46 esi=1ce97550 +BR ret=0 +BC did=accaffff gx=28 gy=47 esi=1ce97418 +BR ret=0 +BC did=accbffff gx=28 gy=48 esi=1ce95810 +BR ret=0 +BC did=acccffff gx=28 gy=49 esi=1ce95cf0 +BR ret=0 +BC did=accdffff gx=28 gy=50 esi=1ce96a58 +BR ret=0 +BC did=ad9bffff gx=29 gy=0 esi=1ce96cc8 +BR ret=0 +BC did=ad9cffff gx=29 gy=1 esi=1ce977c0 +BR ret=0 +BC did=ad9dffff gx=29 gy=2 esi=1ce97688 +BR ret=0 +BC did=ad9effff gx=29 gy=3 esi=1ce97070 +BR ret=0 +BC did=ad9fffff gx=29 gy=4 esi=1ce95bb8 +BR ret=0 +BC did=ada0ffff gx=29 gy=5 esi=1ce971a8 +BR ret=0 +BC did=ada1ffff gx=29 gy=6 esi=1ce97b68 +BR ret=0 +BC did=ada2ffff gx=29 gy=7 esi=1ce95a80 +BR ret=0 +BC did=ada3ffff gx=29 gy=8 esi=1ce96e00 +BR ret=0 +BC did=ada4ffff gx=29 gy=9 esi=1ce961d0 +BR ret=0 +BC did=ada5ffff gx=29 gy=10 esi=1ce96308 +BR ret=0 +BC did=ada6ffff gx=29 gy=11 esi=1ce95e28 +BR ret=0 +BC did=ada7ffff gx=29 gy=12 esi=1ce97dd8 +BR ret=0 +BC did=ada8ffff gx=29 gy=13 esi=1ce972e0 +BR ret=0 +BC did=ada9ffff gx=29 gy=14 esi=1ce96440 +BR ret=0 +BC did=adaaffff gx=29 gy=15 esi=1ce966b0 +BR ret=0 +BC did=adabffff gx=29 gy=16 esi=1ce967e8 +BR ret=0 +BC did=adacffff gx=29 gy=17 esi=1ce96920 +BR ret=0 +BC did=adadffff gx=29 gy=18 esi=1ce96f38 +BR ret=0 +BC did=adaeffff gx=29 gy=19 esi=1ce99500 +BR ret=0 +BC did=adafffff gx=29 gy=20 esi=1ce9a130 +BR ret=0 +BC did=adb0ffff gx=29 gy=21 esi=1ce99ff8 +BR ret=0 +BC did=adb1ffff gx=29 gy=22 esi=1ce98a08 +BR ret=0 +BC did=adb2ffff gx=29 gy=23 esi=1ce99d88 +BR ret=0 +BC did=adb3ffff gx=29 gy=24 esi=1ce99290 +BR ret=0 +BC did=adb4ffff gx=29 gy=25 esi=1ce99b18 +BR ret=0 +BC did=adb5ffff gx=29 gy=26 esi=1ce98b40 +BR ret=0 +BC did=adb6ffff gx=29 gy=27 esi=1ce988d0 +BR ret=0 +BC did=adb7ffff gx=29 gy=28 esi=1ce99ec0 +BR ret=0 +BC did=adb8ffff gx=29 gy=29 esi=1ce98180 +BR ret=0 +BC did=adb9ffff gx=29 gy=30 esi=1ce9a268 +BR ret=0 +BC did=adbaffff gx=29 gy=31 esi=1ce98660 +BR ret=0 +BC did=adbbffff gx=29 gy=32 esi=1ce9a3a0 +BR ret=0 +BC did=adbcffff gx=29 gy=33 esi=1ce999e0 +BR ret=0 +BC did=adbdffff gx=29 gy=34 esi=1ce9a4d8 +BR ret=0 +BC did=adbeffff gx=29 gy=35 esi=1ce97f10 +BR ret=0 +BC did=adbfffff gx=29 gy=36 esi=1ce99c50 +BR ret=0 +BC did=adc0ffff gx=29 gy=37 esi=1ce98798 +BR ret=0 +BC did=adc1ffff gx=29 gy=38 esi=1ce98048 +BR ret=0 +BC did=adc2ffff gx=29 gy=39 esi=1ce982b8 +BR ret=0 +BC did=adc3ffff gx=29 gy=40 esi=1ce983f0 +BR ret=0 +BC did=adc4ffff gx=29 gy=41 esi=1ce98528 +BR ret=0 +BC did=adc5ffff gx=29 gy=42 esi=1ce98c78 +BR ret=0 +BC did=adc6ffff gx=29 gy=43 esi=1ce98db0 +BR ret=0 +BC did=adc7ffff gx=29 gy=44 esi=1ce98ee8 +BR ret=0 +BC did=adc8ffff gx=29 gy=45 esi=1ce99020 +BR ret=0 +BC did=adc9ffff gx=29 gy=46 esi=1ce99158 +BR ret=0 +BC did=adcaffff gx=29 gy=47 esi=1ce99638 +BR ret=0 +BC did=adcbffff gx=29 gy=48 esi=1ce993c8 +BR ret=0 +BC did=adccffff gx=29 gy=49 esi=1ce99770 +BR ret=0 +BC did=adcdffff gx=29 gy=50 esi=1ce998a8 +BR ret=0 +BC did=ae9bffff gx=30 gy=0 esi=1ce9b5e8 +BR ret=0 +BC did=ae9cffff gx=30 gy=1 esi=1ce9ae98 +BR ret=0 +BC did=ae9dffff gx=30 gy=2 esi=1ce9caa0 +BR ret=0 +BC did=ae9effff gx=30 gy=3 esi=1ce9c6f8 +BR ret=0 +BC did=ae9fffff gx=30 gy=4 esi=1ce9b4b0 +BR ret=0 +BC did=aea0ffff gx=30 gy=5 esi=1ce9c5c0 +BR ret=0 +BC did=aea1ffff gx=30 gy=6 esi=1ce9bfa8 +BR ret=0 +BC did=aea2ffff gx=30 gy=7 esi=1ce9cbd8 +BR ret=0 +BC did=aea3ffff gx=30 gy=8 esi=1ce9c350 +BR ret=0 +BC did=aea4ffff gx=30 gy=9 esi=1ce9bc00 +BR ret=0 +BC did=aea5ffff gx=30 gy=10 esi=1ce9c830 +BR ret=0 +BC did=aea6ffff gx=30 gy=11 esi=1ce9c968 +BR ret=0 +BC did=aea7ffff gx=30 gy=12 esi=1ce9afd0 +BR ret=0 +BC did=aea8ffff gx=30 gy=13 esi=1ce9bd38 +BR ret=0 +BC did=aea9ffff gx=30 gy=14 esi=1ce9a610 +BR ret=0 +BC did=aeaaffff gx=30 gy=15 esi=1ce9b108 +BR ret=0 +BC did=aeabffff gx=30 gy=16 esi=1ce9a748 +BR ret=0 +BC did=aeacffff gx=30 gy=17 esi=1ce9a880 +BR ret=0 +BC did=aeadffff gx=30 gy=18 esi=1ce9b240 +BR ret=0 +BC did=aeaeffff gx=30 gy=19 esi=1ce9a9b8 +BR ret=0 +BC did=aeafffff gx=30 gy=20 esi=1ce9b720 +BR ret=0 +BC did=aeb0ffff gx=30 gy=21 esi=1ce9b378 +BR ret=0 +BC did=aeb1ffff gx=30 gy=22 esi=1ce9aaf0 +BR ret=0 +BC did=aeb2ffff gx=30 gy=23 esi=1ce9be70 +BR ret=0 +BC did=aeb3ffff gx=30 gy=24 esi=1ce9b858 +BR ret=0 +BC did=aeb4ffff gx=30 gy=25 esi=1ce9ac28 +BR ret=0 +BC did=aeb5ffff gx=30 gy=26 esi=1ce9b990 +BR ret=0 +BC did=aeb6ffff gx=30 gy=27 esi=1ce9bac8 +BR ret=0 +BC did=aeb7ffff gx=30 gy=28 esi=1ce9c0e0 +BR ret=0 +BC did=aeb8ffff gx=30 gy=29 esi=1ce9c218 +BR ret=0 +BC did=aeb9ffff gx=30 gy=30 esi=1ce9c488 +BR ret=0 +BC did=aebaffff gx=30 gy=31 esi=1ce9ad60 +BR ret=0 +BC did=aebbffff gx=30 gy=32 esi=1ce9ea50 +BR ret=0 +BC did=aebcffff gx=30 gy=33 esi=1ce9dbb0 +BR ret=0 +BC did=aebdffff gx=30 gy=34 esi=1ce9ecc0 +BR ret=0 +BC did=aebeffff gx=30 gy=35 esi=1ce9df58 +BR ret=0 +BC did=aebfffff gx=30 gy=36 esi=1ce9e090 +BR ret=0 +BC did=aec0ffff gx=30 gy=37 esi=1ce9e1c8 +BR ret=0 +BC did=aec1ffff gx=30 gy=38 esi=1ce9d0b8 +BR ret=0 +BC did=aec2ffff gx=30 gy=39 esi=1ce9e300 +BR ret=0 +BC did=aec3ffff gx=30 gy=40 esi=1ce9d808 +BR ret=0 +BC did=aec4ffff gx=30 gy=41 esi=1ce9e570 +BR ret=0 +BC did=aec5ffff gx=30 gy=42 esi=1ce9de20 +BR ret=0 +BC did=aec6ffff gx=30 gy=43 esi=1ce9d940 +BR ret=0 +BC did=aec7ffff gx=30 gy=44 esi=1ce9cd10 +BR ret=0 +BC did=aec8ffff gx=30 gy=45 esi=1ce9d6d0 +BR ret=0 +BC did=aec9ffff gx=30 gy=46 esi=1ce9cf80 +BR ret=0 +BC did=aecaffff gx=30 gy=47 esi=1ce9edf8 +BR ret=0 +BC did=aecbffff gx=30 gy=48 esi=1ce9da78 +BR ret=0 +BC did=aeccffff gx=30 gy=49 esi=1ce9ce48 +BR ret=0 +BC did=aecdffff gx=30 gy=50 esi=1ce9d598 +BR ret=0 +BC did=af9bffff gx=31 gy=0 esi=1ce9dce8 +BR ret=0 +BC did=af9cffff gx=31 gy=1 esi=1ce9e438 +BR ret=0 +BC did=af9dffff gx=31 gy=2 esi=1ce9e6a8 +BR ret=0 +BC did=af9effff gx=31 gy=3 esi=1ce9d1f0 +BR ret=0 +BC did=af9fffff gx=31 gy=4 esi=1ce9e7e0 +BR ret=0 +BC did=afa0ffff gx=31 gy=5 esi=1ce9d328 +BR ret=0 +BC did=afa1ffff gx=31 gy=6 esi=1ce9e918 +BR ret=0 +BC did=afa2ffff gx=31 gy=7 esi=1ce9d460 +BR ret=0 +BC did=afa3ffff gx=31 gy=8 esi=1ce9eb88 +BR ret=0 +BC did=afa4ffff gx=31 gy=9 esi=1ce9ef30 +BR ret=0 +BC did=afa5ffff gx=31 gy=10 esi=1ce9f2d8 +BR ret=0 +BC did=afa6ffff gx=31 gy=11 esi=1ce9f068 +BR ret=0 +BC did=afa7ffff gx=31 gy=12 esi=1ce9f1a0 +BR ret=0 +BC did=afa8ffff gx=31 gy=13 esi=1ce9fb60 +BR ret=0 +BC did=afa9ffff gx=31 gy=14 esi=1ce9f548 +BR ret=0 +BC did=afaaffff gx=31 gy=15 esi=1ce9f8f0 +BR ret=0 +BC did=afabffff gx=31 gy=16 esi=1cea1150 +BR ret=0 +BC did=afacffff gx=31 gy=17 esi=1cea13c0 +BR ret=0 +BC did=afadffff gx=31 gy=18 esi=1cea1288 +BR ret=0 +BC did=afaeffff gx=31 gy=19 esi=1cea0c70 +BR ret=0 +BC did=afafffff gx=31 gy=20 esi=1cea18a0 +BR ret=0 +BC did=afb0ffff gx=31 gy=21 esi=1cea0ee0 +BR ret=0 +BC did=afb1ffff gx=31 gy=22 esi=1cea0da8 +BR ret=0 +BC did=afb2ffff gx=31 gy=23 esi=1cea1018 +BR ret=0 +BC did=afb3ffff gx=31 gy=24 esi=1cea14f8 +BR ret=0 +BC did=afb4ffff gx=31 gy=25 esi=1cea1630 +BR ret=0 +BC did=afb5ffff gx=31 gy=26 esi=1cea02b0 +BR ret=0 +BC did=afb6ffff gx=31 gy=27 esi=1ce9ff08 +BR ret=0 +BC did=afb7ffff gx=31 gy=28 esi=1cea0b38 +BR ret=0 +BC did=afb8ffff gx=31 gy=29 esi=1ce9f7b8 +BR ret=0 +BC did=afb9ffff gx=31 gy=30 esi=1cea0a00 +BR ret=0 +BC did=afbaffff gx=31 gy=31 esi=1cea0178 +BR ret=0 +BC did=afbbffff gx=31 gy=32 esi=1cea1768 +BR ret=0 +BC did=afbcffff gx=31 gy=33 esi=1cea19d8 +BR ret=0 +BC did=afbdffff gx=31 gy=34 esi=1ce9f410 +BR ret=0 +BC did=afbeffff gx=31 gy=35 esi=1ce9f680 +BR ret=0 +BC did=afbfffff gx=31 gy=36 esi=1ce9fa28 +BR ret=0 +BC did=afc0ffff gx=31 gy=37 esi=1ce9fc98 +BR ret=0 +BC did=afc1ffff gx=31 gy=38 esi=1ce9fdd0 +BR ret=0 +BC did=afc2ffff gx=31 gy=39 esi=1cea0040 +BR ret=0 +BC did=afc3ffff gx=31 gy=40 esi=1cea03e8 +BR ret=0 +BC did=afc4ffff gx=31 gy=41 esi=1cea0520 +BR ret=0 +BC did=afc5ffff gx=31 gy=42 esi=1cea0658 +BR ret=0 +BC did=afc6ffff gx=31 gy=43 esi=1cea0790 +BR ret=0 +BC did=afc7ffff gx=31 gy=44 esi=1cea08c8 +BR ret=0 +BC did=afc8ffff gx=31 gy=45 esi=1cea3fa0 +BR ret=0 +BC did=afc9ffff gx=31 gy=46 esi=1cea3bf8 +BR ret=0 +BC did=afcaffff gx=31 gy=47 esi=1cea35e0 +BR ret=0 +BC did=afcbffff gx=31 gy=48 esi=1cea2ae8 +BR ret=0 +BC did=afccffff gx=31 gy=49 esi=1cea1eb8 +BR ret=0 +BC did=afcdffff gx=31 gy=50 esi=1cea34a8 +BR ret=0 +BC did=b09bffff gx=32 gy=0 esi=1cea3718 +BR ret=0 +BC did=b09cffff gx=32 gy=1 esi=1cea3e68 +BR ret=0 +BC did=b09dffff gx=32 gy=2 esi=1cea3988 +BR ret=0 +BC did=b09effff gx=32 gy=3 esi=1cea40d8 +BR ret=0 +BC did=b09fffff gx=32 gy=4 esi=1cea3d30 +BR ret=0 +BC did=b0a0ffff gx=32 gy=5 esi=1cea1b10 +BR ret=0 +BC did=b0a1ffff gx=32 gy=6 esi=1cea1c48 +BR ret=0 +BC did=b0a2ffff gx=32 gy=7 esi=1cea3238 +BR ret=0 +BC did=b0a3ffff gx=32 gy=8 esi=1cea1d80 +BR ret=0 +BC did=b0a4ffff gx=32 gy=9 esi=1cea2d58 +BR ret=0 +BC did=b0a5ffff gx=32 gy=10 esi=1cea2c20 +BR ret=0 +BC did=b0a6ffff gx=32 gy=11 esi=1cea2878 +BR ret=0 +BC did=b0a7ffff gx=32 gy=12 esi=1cea29b0 +BR ret=0 +BC did=b0a8ffff gx=32 gy=13 esi=1cea1ff0 +BR ret=0 +BC did=b0a9ffff gx=32 gy=14 esi=1cea2740 +BR ret=0 +BC did=b0aaffff gx=32 gy=15 esi=1cea3850 +BR ret=0 +BC did=b0abffff gx=32 gy=16 esi=1cea2e90 +BR ret=0 +BC did=b0acffff gx=32 gy=17 esi=1cea2260 +BR ret=0 +BC did=b0adffff gx=32 gy=18 esi=1cea2fc8 +BR ret=0 +BC did=b0aeffff gx=32 gy=19 esi=1cea2128 +BR ret=0 +BC did=b0afffff gx=32 gy=20 esi=1cea3370 +BR ret=0 +BC did=b0b0ffff gx=32 gy=21 esi=1cea3ac0 +BR ret=0 +BC did=b0b1ffff gx=32 gy=22 esi=1cea3100 +BR ret=0 +BC did=b0b2ffff gx=32 gy=23 esi=1cea2398 +BR ret=0 +BC did=b0b3ffff gx=32 gy=24 esi=1cea24d0 +BR ret=0 +BC did=b0b4ffff gx=32 gy=25 esi=1cea2608 +BR ret=0 +BC did=b0b5ffff gx=32 gy=26 esi=1cea6568 +BR ret=0 +BC did=b0b6ffff gx=32 gy=27 esi=1cea66a0 +BR ret=0 +BC did=b0b7ffff gx=32 gy=28 esi=1cea46f0 +BR ret=0 +BC did=b0b8ffff gx=32 gy=29 esi=1cea4828 +BR ret=0 +BC did=b0b9ffff gx=32 gy=30 esi=1cea5f50 +BR ret=0 +BC did=b0baffff gx=32 gy=31 esi=1cea4a98 +BR ret=0 +BC did=b0bbffff gx=32 gy=32 esi=1cea4210 +BR ret=0 +BC did=b0bcffff gx=32 gy=33 esi=1cea5938 +BR ret=0 +BC did=b0bdffff gx=32 gy=34 esi=1cea4960 +BR ret=0 +BC did=b0beffff gx=32 gy=35 esi=1cea4f78 +BR ret=0 +BC did=b0bfffff gx=32 gy=36 esi=1cea4d08 +BR ret=0 +BC did=b0c0ffff gx=32 gy=37 esi=1cea4bd0 +BR ret=0 +BC did=b0c1ffff gx=32 gy=38 esi=1cea5ba8 +BR ret=0 +BC did=b0c2ffff gx=32 gy=39 esi=1cea4e40 +BR ret=0 +BC did=b0c3ffff gx=32 gy=40 esi=1cea5320 +BR ret=0 +BC did=b0c4ffff gx=32 gy=41 esi=1cea4480 +BR ret=0 +BC did=b0c5ffff gx=32 gy=42 esi=1cea4348 +BR ret=0 +BC did=b0c6ffff gx=32 gy=43 esi=1cea50b0 +BR ret=0 +BC did=b0c7ffff gx=32 gy=44 esi=1cea45b8 +BR ret=0 +BC did=b0c8ffff gx=32 gy=45 esi=1cea51e8 +BR ret=0 +BC did=b0c9ffff gx=32 gy=46 esi=1cea5ce0 +BR ret=0 +BC did=b0caffff gx=32 gy=47 esi=1cea5458 +BR ret=0 +BC did=b0cbffff gx=32 gy=48 esi=1cea5e18 +BR ret=0 +BC did=b0ccffff gx=32 gy=49 esi=1cea5590 +BR ret=0 +BC did=b0cdffff gx=32 gy=50 esi=1cea56c8 +BR ret=0 +BC did=b19bffff gx=33 gy=0 esi=1cea6088 +BR ret=0 +BC did=b19cffff gx=33 gy=1 esi=1cea5800 +BR ret=0 +BC did=b19dffff gx=33 gy=2 esi=1cea67d8 +BR ret=0 +BC did=b19effff gx=33 gy=3 esi=1cea5a70 +BR ret=0 +BC did=b19fffff gx=33 gy=4 esi=1cea62f8 +BR ret=0 +BC did=b1a0ffff gx=33 gy=5 esi=1cea61c0 +BR ret=0 +BC did=b1a1ffff gx=33 gy=6 esi=1cea6430 +BR ret=0 +BC did=b1a2ffff gx=33 gy=7 esi=1cea6df0 +BR ret=0 +BC did=b1a3ffff gx=33 gy=8 esi=1cea8650 +BR ret=0 +BC did=b1a4ffff gx=33 gy=9 esi=1cea8b30 +BR ret=0 +BC did=b1a5ffff gx=33 gy=10 esi=1cea8ed8 +BR ret=0 +BC did=b1a6ffff gx=33 gy=11 esi=1cea7dc8 +BR ret=0 +BC did=b1a7ffff gx=33 gy=12 esi=1cea78e8 +BR ret=0 +BC did=b1a8ffff gx=33 gy=13 esi=1cea6a48 +BR ret=0 +BC did=b1a9ffff gx=33 gy=14 esi=1cea7f00 +BR ret=0 +BC did=b1aaffff gx=33 gy=15 esi=1cea6cb8 +BR ret=0 +BC did=b1abffff gx=33 gy=16 esi=1cea7b58 +BR ret=0 +BC did=b1acffff gx=33 gy=17 esi=1cea7540 +BR ret=0 +BC did=b1adffff gx=33 gy=18 esi=1cea7678 +BR ret=0 +BC did=b1aeffff gx=33 gy=19 esi=1cea8c68 +BR ret=0 +BC did=b1afffff gx=33 gy=20 esi=1cea6910 +BR ret=0 +BC did=b1b0ffff gx=33 gy=21 esi=1cea8038 +BR ret=0 +BC did=b1b1ffff gx=33 gy=22 esi=1cea7a20 +BR ret=0 +BC did=b1b2ffff gx=33 gy=23 esi=1cea6b80 +BR ret=0 +BC did=b1b3ffff gx=33 gy=24 esi=1cea8170 +BR ret=0 +BC did=b1b4ffff gx=33 gy=25 esi=1cea6f28 +BR ret=0 +BC did=b1b5ffff gx=33 gy=26 esi=1cea7c90 +BR ret=0 +BC did=b1b6ffff gx=33 gy=27 esi=1cea7060 +BR ret=0 +BC did=b1b7ffff gx=33 gy=28 esi=1cea82a8 +BR ret=0 +BC did=b1b8ffff gx=33 gy=29 esi=1cea7198 +BR ret=0 +BC did=b1b9ffff gx=33 gy=30 esi=1cea77b0 +BR ret=0 +BC did=b1baffff gx=33 gy=31 esi=1cea83e0 +BR ret=0 +BC did=b1bbffff gx=33 gy=32 esi=1cea8518 +BR ret=0 +BC did=b1bcffff gx=33 gy=33 esi=1cea8788 +BR ret=0 +BC did=b1bdffff gx=33 gy=34 esi=1cea7408 +BR ret=0 +BC did=b1beffff gx=33 gy=35 esi=1cea88c0 +BR ret=0 +BC did=b1bfffff gx=33 gy=36 esi=1cea72d0 +BR ret=0 +BC did=b1c0ffff gx=33 gy=37 esi=1cea89f8 +BR ret=0 +BC did=b1c1ffff gx=33 gy=38 esi=1cea8da0 +BR ret=0 +BC did=b1c2ffff gx=33 gy=39 esi=1ceaafc0 +BR ret=0 +BC did=b1c3ffff gx=33 gy=40 esi=1ceaa258 +BR ret=0 +BC did=b1c4ffff gx=33 gy=41 esi=1ceaa390 +BR ret=0 +BC did=b1c5ffff gx=33 gy=42 esi=1ceaa4c8 +BR ret=0 +BC did=b1c6ffff gx=33 gy=43 esi=1ceaa600 +BR ret=0 +BC did=b1c7ffff gx=33 gy=44 esi=1cea93b8 +BR ret=0 +BC did=b1c8ffff gx=33 gy=45 esi=1ceab230 +BR ret=0 +BC did=b1c9ffff gx=33 gy=46 esi=1cea94f0 +BR ret=0 +BC did=b1caffff gx=33 gy=47 esi=1cea9628 +BR ret=0 +BC did=b1cbffff gx=33 gy=48 esi=1ceab5d8 +BR ret=0 +BC did=b1ccffff gx=33 gy=49 esi=1ceaa738 +BR ret=0 +BC did=b1cdffff gx=33 gy=50 esi=1ceab0f8 +BR ret=0 +BC did=b29bffff gx=34 gy=0 esi=1cea9760 +BR ret=0 +BC did=b29cffff gx=34 gy=1 esi=1ceab368 +BR ret=0 +BC did=b29dffff gx=34 gy=2 esi=1ceaa870 +BR ret=0 +BC did=b29effff gx=34 gy=3 esi=1cea9898 +BR ret=0 +BC did=b29fffff gx=34 gy=4 esi=1ceaa9a8 +BR ret=0 +BC did=b2a0ffff gx=34 gy=5 esi=1cea9d78 +BR ret=0 +BC did=b2a1ffff gx=34 gy=6 esi=1ceaaae0 +BR ret=0 +BC did=b2a2ffff gx=34 gy=7 esi=1cea99d0 +BR ret=0 +BC did=b2a3ffff gx=34 gy=8 esi=1cea9280 +BR ret=0 +BC did=b2a4ffff gx=34 gy=9 esi=1cea9b08 +BR ret=0 +BC did=b2a5ffff gx=34 gy=10 esi=1cea9010 +BR ret=0 +BC did=b2a6ffff gx=34 gy=11 esi=1cea9148 +BR ret=0 +BC did=b2a7ffff gx=34 gy=12 esi=1cea9c40 +BR ret=0 +BC did=b2a8ffff gx=34 gy=13 esi=1cea9eb0 +BR ret=0 +BC did=b2a9ffff gx=34 gy=14 esi=1cea9fe8 +BR ret=0 +BC did=b2aaffff gx=34 gy=15 esi=1ceaac18 +BR ret=0 +BC did=b2abffff gx=34 gy=16 esi=1ceaa120 +BR ret=0 +BC did=b2acffff gx=34 gy=17 esi=1ceab4a0 +BR ret=0 +BC did=b2adffff gx=34 gy=18 esi=1ceaad50 +BR ret=0 +BC did=b2aeffff gx=34 gy=19 esi=1ceaae88 +BR ret=0 +BC did=b2afffff gx=34 gy=20 esi=1ceadcd8 +BR ret=0 +BC did=b2b0ffff gx=34 gy=21 esi=1ceace38 +BR ret=0 +BC did=b2b1ffff gx=34 gy=22 esi=1cead7f8 +BR ret=0 +BC did=b2b2ffff gx=34 gy=23 esi=1ceabe60 +BR ret=0 +BC did=b2b3ffff gx=34 gy=24 esi=1ceab848 +BR ret=0 +BC did=b2b4ffff gx=34 gy=25 esi=1ceac340 +BR ret=0 +BC did=b2b5ffff gx=34 gy=26 esi=1ceab710 +BR ret=0 +BC did=b2b6ffff gx=34 gy=27 esi=1ceabf98 +BR ret=0 +BC did=b2b7ffff gx=34 gy=28 esi=1ceac0d0 +BR ret=0 +BC did=b2b8ffff gx=34 gy=29 esi=1ceabbf0 +BR ret=0 +BC did=b2b9ffff gx=34 gy=30 esi=1ceabab8 +BR ret=0 +BC did=b2baffff gx=34 gy=31 esi=1ceab980 +BR ret=0 +BC did=b2bbffff gx=34 gy=32 esi=1ceacbc8 +BR ret=0 +BC did=b2bcffff gx=34 gy=33 esi=1ceabd28 +BR ret=0 +BC did=b2bdffff gx=34 gy=34 esi=1ceac958 +BR ret=0 +BC did=b2beffff gx=34 gy=35 esi=1ceac208 +BR ret=0 +BC did=b2bfffff gx=34 gy=36 esi=1ceacf70 +BR ret=0 +BC did=b2c0ffff gx=34 gy=37 esi=1ceac478 +BR ret=0 +BC did=b2c1ffff gx=34 gy=38 esi=1ceac5b0 +BR ret=0 +BC did=b2c2ffff gx=34 gy=39 esi=1cead0a8 +BR ret=0 +BC did=b2c3ffff gx=34 gy=40 esi=1ceac820 +BR ret=0 +BC did=b2c4ffff gx=34 gy=41 esi=1ceac6e8 +BR ret=0 +BC did=b2c5ffff gx=34 gy=42 esi=1ceaca90 +BR ret=0 +BC did=b2c6ffff gx=34 gy=43 esi=1ceacd00 +BR ret=0 +BC did=b2c7ffff gx=34 gy=44 esi=1cead1e0 +BR ret=0 +BC did=b2c8ffff gx=34 gy=45 esi=1cead6c0 +BR ret=0 +BC did=b2c9ffff gx=34 gy=46 esi=1cead318 +BR ret=0 +BC did=b2caffff gx=34 gy=47 esi=1cead450 +BR ret=0 +BC did=b2cbffff gx=34 gy=48 esi=1cead930 +BR ret=0 +BC did=b2ccffff gx=34 gy=49 esi=1cead588 +BR ret=0 +BC did=b2cdffff gx=34 gy=50 esi=1ceada68 +BR ret=0 +BC did=b39bffff gx=35 gy=0 esi=1ceadba0 +BR ret=0 +BC did=b39cffff gx=35 gy=1 esi=1ceaf2c8 +BR ret=0 +BC did=b39dffff gx=35 gy=2 esi=1ceaf400 +BR ret=0 +BC did=b39effff gx=35 gy=3 esi=1ceb02a0 +BR ret=0 +BC did=b39fffff gx=35 gy=4 esi=1ceafc88 +BR ret=0 +BC did=b3a0ffff gx=35 gy=5 esi=1ceae560 +BR ret=0 +BC did=b3a1ffff gx=35 gy=6 esi=1ceaf538 +BR ret=0 +BC did=b3a2ffff gx=35 gy=7 esi=1ceaf8e0 +BR ret=0 +BC did=b3a3ffff gx=35 gy=8 esi=1ceaede8 +BR ret=0 +BC did=b3a4ffff gx=35 gy=9 esi=1ceae1b8 +BR ret=0 +BC did=b3a5ffff gx=35 gy=10 esi=1ceaf7a8 +BR ret=0 +BC did=b3a6ffff gx=35 gy=11 esi=1ceafa18 +BR ret=0 +BC did=b3a7ffff gx=35 gy=12 esi=1ceadf48 +BR ret=0 +BC did=b3a8ffff gx=35 gy=13 esi=1ceae698 +BR ret=0 +BC did=b3a9ffff gx=35 gy=14 esi=1ceaef20 +BR ret=0 +BC did=b3aaffff gx=35 gy=15 esi=1ceafb50 +BR ret=0 +BC did=b3abffff gx=35 gy=16 esi=1ceae2f0 +BR ret=0 +BC did=b3acffff gx=35 gy=17 esi=1ceb03d8 +BR ret=0 +BC did=b3adffff gx=35 gy=18 esi=1ceaf670 +BR ret=0 +BC did=b3aeffff gx=35 gy=19 esi=1ceafdc0 +BR ret=0 +BC did=b3afffff gx=35 gy=20 esi=1ceaeb78 +BR ret=0 +BC did=b3b0ffff gx=35 gy=21 esi=1ceae428 +BR ret=0 +BC did=b3b1ffff gx=35 gy=22 esi=1ceaf058 +BR ret=0 +BC did=b3b2ffff gx=35 gy=23 esi=1ceaf190 +BR ret=0 +BC did=b3b3ffff gx=35 gy=24 esi=1ceaea40 +BR ret=0 +BC did=b3b4ffff gx=35 gy=25 esi=1ceade10 +BR ret=0 +BC did=b3b5ffff gx=35 gy=26 esi=1ceae7d0 +BR ret=0 +BC did=b3b6ffff gx=35 gy=27 esi=1ceae080 +BR ret=0 +BC did=b3b7ffff gx=35 gy=28 esi=1ceafef8 +BR ret=0 +BC did=b3b8ffff gx=35 gy=29 esi=1ceaecb0 +BR ret=0 +BC did=b3b9ffff gx=35 gy=30 esi=1ceae908 +BR ret=0 +BC did=b3baffff gx=35 gy=31 esi=1ceb0030 +BR ret=0 +BC did=b3bbffff gx=35 gy=32 esi=1ceb0168 +BR ret=0 +BC did=b3bcffff gx=35 gy=33 esi=1ceb0648 +BR ret=0 +BC did=b3bdffff gx=35 gy=34 esi=1ceb0780 +BR ret=0 +BC did=b3beffff gx=35 gy=35 esi=1ceb08b8 +BR ret=0 +BC did=b3bfffff gx=35 gy=36 esi=1ceb0c60 +BR ret=0 +BC did=b3c0ffff gx=35 gy=37 esi=1ceb0d98 +BR ret=0 +BC did=b3c1ffff gx=35 gy=38 esi=1ceb09f0 +BR ret=0 +BC did=b3c2ffff gx=35 gy=39 esi=1ceb0b28 +BR ret=0 +BC did=b3c3ffff gx=35 gy=40 esi=1ceb0ed0 +BR ret=0 +BC did=b3c4ffff gx=35 gy=41 esi=1ceb0510 +BR ret=0 +BC did=b3c5ffff gx=35 gy=42 esi=1ce71798 +BR ret=0 +BC did=b3c6ffff gx=35 gy=43 esi=1ce72020 +BR ret=0 +BC did=b3c7ffff gx=35 gy=44 esi=1ce72158 +BR ret=0 +BC did=b3c8ffff gx=35 gy=45 esi=1ce72d88 +BR ret=0 +BC did=b3c9ffff gx=35 gy=46 esi=1ce71a08 +BR ret=0 +BC did=b3caffff gx=35 gy=47 esi=1ce72290 +BR ret=0 +BC did=b3cbffff gx=35 gy=48 esi=1ce73268 +BR ret=0 +BC did=b3ccffff gx=35 gy=49 esi=1ce70f10 +BR ret=0 +BC did=b3cdffff gx=35 gy=50 esi=1ce71660 +BR ret=0 +BC did=b49bffff gx=36 gy=0 esi=1ce71180 +BR ret=0 +BC did=b49cffff gx=36 gy=1 esi=1ce723c8 +BR ret=0 +BC did=b49dffff gx=36 gy=2 esi=1ce72500 +BR ret=0 +BC did=b49effff gx=36 gy=3 esi=1ce72638 +BR ret=0 +BC did=b49fffff gx=36 gy=4 esi=1ce72770 +BR ret=0 +BC did=b4a0ffff gx=36 gy=5 esi=1ce712b8 +BR ret=0 +BC did=b4a1ffff gx=36 gy=6 esi=1ce73130 +BR ret=0 +BC did=b4a2ffff gx=36 gy=7 esi=1ce713f0 +BR ret=0 +BC did=b4a3ffff gx=36 gy=8 esi=1ce729e0 +BR ret=0 +BC did=b4a4ffff gx=36 gy=9 esi=1ce728a8 +BR ret=0 +BC did=b4a5ffff gx=36 gy=10 esi=1ce72b18 +BR ret=0 +BC did=b4a6ffff gx=36 gy=11 esi=1ce72c50 +BR ret=0 +BC did=b4a7ffff gx=36 gy=12 esi=1ce71048 +BR ret=0 +BC did=b4a8ffff gx=36 gy=13 esi=1ce72ec0 +BR ret=0 +BC did=b4a9ffff gx=36 gy=14 esi=1ce72ff8 +BR ret=0 +BC did=b4aaffff gx=36 gy=15 esi=1ce733a0 +BR ret=0 +BC did=b4abffff gx=36 gy=16 esi=1ce734d8 +BR ret=0 +BC did=b4acffff gx=36 gy=17 esi=1ce718d0 +BR ret=0 +BC did=b4adffff gx=36 gy=18 esi=1ce71528 +BR ret=0 +BC did=b4aeffff gx=36 gy=19 esi=1ce71b40 +BR ret=0 +BC did=b4afffff gx=36 gy=20 esi=1ce71c78 +BR ret=0 +BC did=b4b0ffff gx=36 gy=21 esi=1ce71db0 +BR ret=0 +BC did=b4b1ffff gx=36 gy=22 esi=1ce71ee8 +BR ret=0 +BC did=b4b2ffff gx=36 gy=23 esi=1ce75830 +BR ret=0 +BC did=b4b3ffff gx=36 gy=24 esi=1ce73880 +BR ret=0 +BC did=b4b4ffff gx=36 gy=25 esi=1ce74858 +BR ret=0 +BC did=b4b5ffff gx=36 gy=26 esi=1ce74990 +BR ret=0 +BC did=b4b6ffff gx=36 gy=27 esi=1ce73fd0 +BR ret=0 +BC did=b4b7ffff gx=36 gy=28 esi=1ce73af0 +BR ret=0 +BC did=b4b8ffff gx=36 gy=29 esi=1ce75bd8 +BR ret=0 +BC did=b4b9ffff gx=36 gy=30 esi=1ce74e70 +BR ret=0 +BC did=b4baffff gx=36 gy=31 esi=1ce74fa8 +BR ret=0 +BC did=b4bbffff gx=36 gy=32 esi=1ce74378 +BR ret=0 +BC did=b4bcffff gx=36 gy=33 esi=1ce73c28 +BR ret=0 +BC did=b4bdffff gx=36 gy=34 esi=1ce74720 +BR ret=0 +BC did=b4beffff gx=36 gy=35 esi=1ce73d60 +BR ret=0 +BC did=b4bfffff gx=36 gy=36 esi=1ce74c00 +BR ret=0 +BC did=b4c0ffff gx=36 gy=37 esi=1ce75968 +BR ret=0 +BC did=b4c1ffff gx=36 gy=38 esi=1ce756f8 +BR ret=0 +BC did=b4c2ffff gx=36 gy=39 esi=1ce74108 +BR ret=0 +BC did=b4c3ffff gx=36 gy=40 esi=1ce75488 +BR ret=0 +BC did=b4c4ffff gx=36 gy=41 esi=1ce74ac8 +BR ret=0 +BC did=b4c5ffff gx=36 gy=42 esi=1ce75218 +BR ret=0 +BC did=b4c6ffff gx=36 gy=43 esi=1ce74240 +BR ret=0 +BC did=b4c7ffff gx=36 gy=44 esi=1ce75350 +BR ret=0 +BC did=b4c8ffff gx=36 gy=45 esi=1ce73610 +BR ret=0 +BC did=b4c9ffff gx=36 gy=46 esi=1ce750e0 +BR ret=0 +BC did=b4caffff gx=36 gy=47 esi=1ce755c0 +BR ret=0 +BC did=b4cbffff gx=36 gy=48 esi=1ce744b0 +BR ret=0 +BC did=b4ccffff gx=36 gy=49 esi=1ce73e98 +BR ret=0 +BC did=b4cdffff gx=36 gy=50 esi=1ce74d38 +BR ret=0 +BC did=b59bffff gx=37 gy=0 esi=1ce745e8 +BR ret=0 +BC did=b59cffff gx=37 gy=1 esi=1ce739b8 +BR ret=0 +BC did=b59dffff gx=37 gy=2 esi=1ce75aa0 +BR ret=0 +BC did=b59effff gx=37 gy=3 esi=1ce73748 +BR ret=0 +BC did=b59fffff gx=37 gy=4 esi=1ceed778 +BR ret=0 +BC did=b5a0ffff gx=37 gy=5 esi=1ceef110 +BR ret=0 +BC did=b5a1ffff gx=37 gy=6 esi=1ceefc08 +BR ret=0 +BC did=b5a2ffff gx=37 gy=7 esi=1ceef4b8 +BR ret=0 +BC did=b5a3ffff gx=37 gy=8 esi=1ceeed68 +BR ret=0 +BC did=b5a4ffff gx=37 gy=9 esi=1ceef728 +BR ret=0 +BC did=b5a5ffff gx=37 gy=10 esi=1ceef998 +BR ret=0 +BC did=b5a6ffff gx=37 gy=11 esi=1ceee000 +BR ret=0 +BC did=b5a7ffff gx=37 gy=12 esi=1ceeeea0 +BR ret=0 +BC did=b5a8ffff gx=37 gy=13 esi=1ceefad0 +BR ret=0 +BC did=b5a9ffff gx=37 gy=14 esi=1ceee138 +BR ret=0 +BC did=b5aaffff gx=37 gy=15 esi=1ceefd40 +BR ret=0 +BC did=b5abffff gx=37 gy=16 esi=1ceef860 +BR ret=0 +BC did=b5acffff gx=37 gy=17 esi=1ceee270 +BR ret=0 +BC did=b5adffff gx=37 gy=18 esi=1ceed8b0 +BR ret=0 +BC did=b5aeffff gx=37 gy=19 esi=1ceee888 +BR ret=0 +BC did=b5afffff gx=37 gy=20 esi=1ceee3a8 +BR ret=0 +BC did=b5b0ffff gx=37 gy=21 esi=1ceed9e8 +BR ret=0 +BC did=b5b1ffff gx=37 gy=22 esi=1ceedb20 +BR ret=0 +BC did=b5b2ffff gx=37 gy=23 esi=1ceee4e0 +BR ret=0 +BC did=b5b3ffff gx=37 gy=24 esi=1ceedc58 +BR ret=0 +BC did=b5b4ffff gx=37 gy=25 esi=1ceedd90 +BR ret=0 +BC did=b5b5ffff gx=37 gy=26 esi=1ceee9c0 +BR ret=0 +BC did=b5b6ffff gx=37 gy=27 esi=1ceeeaf8 +BR ret=0 +BC did=b5b7ffff gx=37 gy=28 esi=1ceee618 +BR ret=0 +BC did=b5b8ffff gx=37 gy=29 esi=1ceef5f0 +BR ret=0 +BC did=b5b9ffff gx=37 gy=30 esi=1ceee750 +BR ret=0 +BC did=b5baffff gx=37 gy=31 esi=1ceedec8 +BR ret=0 +BC did=b5bbffff gx=37 gy=32 esi=1ceeec30 +BR ret=0 +BC did=b5bcffff gx=37 gy=33 esi=1ceeefd8 +BR ret=0 +BC did=b5bdffff gx=37 gy=34 esi=1ceef248 +BR ret=0 +BC did=b5beffff gx=37 gy=35 esi=1ceef380 +BR ret=0 +BC did=b5bfffff gx=37 gy=36 esi=1cef0f88 +BR ret=0 +BC did=b5c0ffff gx=37 gy=37 esi=1cef16d8 +BR ret=0 +BC did=b5c1ffff gx=37 gy=38 esi=1cef0700 +BR ret=0 +BC did=b5c2ffff gx=37 gy=39 esi=1cef1bb8 +BR ret=0 +BC did=b5c3ffff gx=37 gy=40 esi=1cef0d18 +BR ret=0 +BC did=b5c4ffff gx=37 gy=41 esi=1cef1e28 +BR ret=0 +BC did=b5c5ffff gx=37 gy=42 esi=1cef10c0 +BR ret=0 +BC did=b5c6ffff gx=37 gy=43 esi=1cef11f8 +BR ret=0 +BC did=b5c7ffff gx=37 gy=44 esi=1cef1330 +BR ret=0 +BC did=b5c8ffff gx=37 gy=45 esi=1cef1468 +BR ret=0 +BC did=b5c9ffff gx=37 gy=46 esi=1cef0220 +BR ret=0 +BC did=b5caffff gx=37 gy=47 esi=1cef2098 +BR ret=0 +BC did=b5cbffff gx=37 gy=48 esi=1cef0358 +BR ret=0 +BC did=b5ccffff gx=37 gy=49 esi=1cef0490 +BR ret=0 +BC did=b5cdffff gx=37 gy=50 esi=1cef2440 +BR ret=0 +BC did=b69bffff gx=38 gy=0 esi=1cef0e50 +BR ret=0 +BC did=b69cffff gx=38 gy=1 esi=1cef0838 +BR ret=0 +BC did=b69dffff gx=38 gy=2 esi=1cef00e8 +BR ret=0 +BC did=b69effff gx=38 gy=3 esi=1cef1f60 +BR ret=0 +BC did=b69fffff gx=38 gy=4 esi=1cef0aa8 +BR ret=0 +BC did=b6a0ffff gx=38 gy=5 esi=1ceefe78 +BR ret=0 +BC did=b6a1ffff gx=38 gy=6 esi=1cef0970 +BR ret=0 +BC did=b6a2ffff gx=38 gy=7 esi=1cef0be0 +BR ret=0 +BC did=b6a3ffff gx=38 gy=8 esi=1cef05c8 +BR ret=0 +BC did=b6a4ffff gx=38 gy=9 esi=1cef15a0 +BR ret=0 +BC did=b6a5ffff gx=38 gy=10 esi=1cef1810 +BR ret=0 +BC did=b6a6ffff gx=38 gy=11 esi=1cef1cf0 +BR ret=0 +BC did=b6a7ffff gx=38 gy=12 esi=1cef1948 +BR ret=0 +BC did=b6a8ffff gx=38 gy=13 esi=1cef1a80 +BR ret=0 +BC did=b6a9ffff gx=38 gy=14 esi=1cef21d0 +BR ret=0 +BC did=b6aaffff gx=38 gy=15 esi=1cef2308 +BR ret=0 +BC did=b6abffff gx=38 gy=16 esi=1ceeffb0 +BR ret=0 +BC did=b6acffff gx=38 gy=17 esi=1cef4a08 +BR ret=0 +BC did=b6adffff gx=38 gy=18 esi=1cef42b8 +BR ret=0 +BC did=b6aeffff gx=38 gy=19 esi=1cef3b68 +BR ret=0 +BC did=b6afffff gx=38 gy=20 esi=1cef4528 +BR ret=0 +BC did=b6b0ffff gx=38 gy=21 esi=1cef4798 +BR ret=0 +BC did=b6b1ffff gx=38 gy=22 esi=1cef2e00 +BR ret=0 +BC did=b6b2ffff gx=38 gy=23 esi=1cef3ca0 +BR ret=0 +BC did=b6b3ffff gx=38 gy=24 esi=1cef48d0 +BR ret=0 +BC did=b6b4ffff gx=38 gy=25 esi=1cef2f38 +BR ret=0 +BC did=b6b5ffff gx=38 gy=26 esi=1cef4b40 +BR ret=0 +BC did=b6b6ffff gx=38 gy=27 esi=1cef4660 +BR ret=0 +BC did=b6b7ffff gx=38 gy=28 esi=1cef3070 +BR ret=0 +BC did=b6b8ffff gx=38 gy=29 esi=1cef2578 +BR ret=0 +BC did=b6b9ffff gx=38 gy=30 esi=1cef3688 +BR ret=0 +BC did=b6baffff gx=38 gy=31 esi=1cef31a8 +BR ret=0 +BC did=b6bbffff gx=38 gy=32 esi=1cef26b0 +BR ret=0 +BC did=b6bcffff gx=38 gy=33 esi=1cef27e8 +BR ret=0 +BC did=b6bdffff gx=38 gy=34 esi=1cef32e0 +BR ret=0 +BC did=b6beffff gx=38 gy=35 esi=1cef2920 +BR ret=0 +BC did=b6bfffff gx=38 gy=36 esi=1cef2a58 +BR ret=0 +BC did=b6c0ffff gx=38 gy=37 esi=1cef37c0 +BR ret=0 +BC did=b6c1ffff gx=38 gy=38 esi=1cef38f8 +BR ret=0 +BC did=b6c2ffff gx=38 gy=39 esi=1cef3418 +BR ret=0 +BC did=b6c3ffff gx=38 gy=40 esi=1cef2b90 +BR ret=0 +BC did=b6c4ffff gx=38 gy=41 esi=1cef2cc8 +BR ret=0 +BC did=b6c5ffff gx=38 gy=42 esi=1cef3dd8 +BR ret=0 +BC did=b6c6ffff gx=38 gy=43 esi=1cef3f10 +BR ret=0 +BC did=b6c7ffff gx=38 gy=44 esi=1cef4180 +BR ret=0 +BC did=b6c8ffff gx=38 gy=45 esi=1cef3550 +BR ret=0 +BC did=b6c9ffff gx=38 gy=46 esi=1cef3a30 +BR ret=0 +BC did=b6caffff gx=38 gy=47 esi=1cef4048 +BR ret=0 +BC did=b6cbffff gx=38 gy=48 esi=1cef43f0 +BR ret=0 +BC did=b6ccffff gx=38 gy=49 esi=1cef58a8 +BR ret=0 +BC did=b6cdffff gx=38 gy=50 esi=1cef53c8 +BR ret=0 +BC did=b79bffff gx=39 gy=0 esi=1cef59e0 +BR ret=0 +BC did=b79cffff gx=39 gy=1 esi=1cef5b18 +BR ret=0 +BC did=b79dffff gx=39 gy=2 esi=1cef5290 +BR ret=0 +BC did=b79effff gx=39 gy=3 esi=1cef5d88 +BR ret=0 +BC did=b79fffff gx=39 gy=4 esi=1cef5500 +BR ret=0 +BC did=b7a0ffff gx=39 gy=5 esi=1cef6268 +BR ret=0 +BC did=b7a1ffff gx=39 gy=6 esi=1cef6e98 +BR ret=0 +BC did=b7a2ffff gx=39 gy=7 esi=1cef6d60 +BR ret=0 +BC did=b7a3ffff gx=39 gy=8 esi=1cef7108 +BR ret=0 +BC did=b7a4ffff gx=39 gy=9 esi=1cef6af0 +BR ret=0 +BC did=b7a5ffff gx=39 gy=10 esi=1cef5ff8 +BR ret=0 +BC did=b7a6ffff gx=39 gy=11 esi=1cef6880 +BR ret=0 +BC did=b7a7ffff gx=39 gy=12 esi=1cef5c50 +BR ret=0 +BC did=b7a8ffff gx=39 gy=13 esi=1cef5ec0 +BR ret=0 +BC did=b7a9ffff gx=39 gy=14 esi=1cef6c28 +BR ret=0 +BC did=b7aaffff gx=39 gy=15 esi=1cef4ee8 +BR ret=0 +BC did=b7abffff gx=39 gy=16 esi=1cef6fd0 +BR ret=0 +BC did=b7acffff gx=39 gy=17 esi=1cef5638 +BR ret=0 +BC did=b7adffff gx=39 gy=18 esi=1cef7240 +BR ret=0 +BC did=b7aeffff gx=39 gy=19 esi=1cef6748 +BR ret=0 +BC did=b7afffff gx=39 gy=20 esi=1cef5158 +BR ret=0 +BC did=b7b0ffff gx=39 gy=21 esi=1cef5770 +BR ret=0 +BC did=b7b1ffff gx=39 gy=22 esi=1cef69b8 +BR ret=0 +BC did=b7b2ffff gx=39 gy=23 esi=1cef6130 +BR ret=0 +BC did=b7b3ffff gx=39 gy=24 esi=1cef4c78 +BR ret=0 +BC did=b7b4ffff gx=39 gy=25 esi=1cef5020 +BR ret=0 +BC did=b7b5ffff gx=39 gy=26 esi=1cef63a0 +BR ret=0 +BC did=b7b6ffff gx=39 gy=27 esi=1cef64d8 +BR ret=0 +BC did=b7b7ffff gx=39 gy=28 esi=1cef6610 +BR ret=0 +BC did=b7b8ffff gx=39 gy=29 esi=1cef4db0 +BR ret=0 +BC did=b7b9ffff gx=39 gy=30 esi=1cef8bd8 +BR ret=0 +BC did=b7baffff gx=39 gy=31 esi=1cef7c00 +BR ret=0 +BC did=b7bbffff gx=39 gy=32 esi=1cef90b8 +BR ret=0 +BC did=b7bcffff gx=39 gy=33 esi=1cef8218 +BR ret=0 +BC did=b7bdffff gx=39 gy=34 esi=1cef9328 +BR ret=0 +BC did=b7beffff gx=39 gy=35 esi=1cef85c0 +BR ret=0 +BC did=b7bfffff gx=39 gy=36 esi=1cef7720 +BR ret=0 +BC did=b7c0ffff gx=39 gy=37 esi=1cef7858 +BR ret=0 +BC did=b7c1ffff gx=39 gy=38 esi=1cef91f0 +BR ret=0 +BC did=b7c2ffff gx=39 gy=39 esi=1cef7990 +BR ret=0 +BC did=b7c3ffff gx=39 gy=40 esi=1cef86f8 +BR ret=0 +BC did=b7c4ffff gx=39 gy=41 esi=1cef7378 +BR ret=0 +BC did=b7c5ffff gx=39 gy=42 esi=1cef8aa0 +BR ret=0 +BC did=b7c6ffff gx=39 gy=43 esi=1cef7ac8 +BR ret=0 +BC did=b7c7ffff gx=39 gy=44 esi=1cef80e0 +BR ret=0 +BC did=b7c8ffff gx=39 gy=45 esi=1cef7e70 +BR ret=0 +BC did=b7c9ffff gx=39 gy=46 esi=1cef7d38 +BR ret=0 +BC did=b7caffff gx=39 gy=47 esi=1cef8d10 +BR ret=0 +BC did=b7cbffff gx=39 gy=48 esi=1cef8830 +BR ret=0 +BC did=b7ccffff gx=39 gy=49 esi=1cef8968 +BR ret=0 +BC did=b7cdffff gx=39 gy=50 esi=1cef7fa8 +BR ret=0 +BC did=b89bffff gx=40 gy=0 esi=1cef8350 +BR ret=0 +BC did=b89cffff gx=40 gy=1 esi=1cef8488 +BR ret=0 +BC did=b89dffff gx=40 gy=2 esi=1cef9460 +BR ret=0 +BC did=b89effff gx=40 gy=3 esi=1cef8e48 +BR ret=0 +BC did=b89fffff gx=40 gy=4 esi=1cef8f80 +BR ret=0 +BC did=b8a0ffff gx=40 gy=5 esi=1cef9598 +BR ret=0 +BC did=b8a1ffff gx=40 gy=6 esi=1cef96d0 +BR ret=0 +BC did=b8a2ffff gx=40 gy=7 esi=1cef9808 +BR ret=0 +BC did=b8a3ffff gx=40 gy=8 esi=1cef9940 +BR ret=0 +BC did=b8a4ffff gx=40 gy=9 esi=1cef74b0 +BR ret=0 +BC did=b8a5ffff gx=40 gy=10 esi=1cef75e8 +BR ret=0 +BC did=b8a6ffff gx=40 gy=11 esi=1cef9a78 +BR ret=0 +BC did=b8a7ffff gx=40 gy=12 esi=1cefb410 +BR ret=0 +BC did=b8a8ffff gx=40 gy=13 esi=1cefa438 +BR ret=0 +BC did=b8a9ffff gx=40 gy=14 esi=1cefaf30 +BR ret=0 +BC did=b8aaffff gx=40 gy=15 esi=1cefb068 +BR ret=0 +BC did=b8abffff gx=40 gy=16 esi=1cefb548 +BR ret=0 +BC did=b8acffff gx=40 gy=17 esi=1cefa570 +BR ret=0 +BC did=b8adffff gx=40 gy=18 esi=1cefba28 +BR ret=0 +BC did=b8aeffff gx=40 gy=19 esi=1cef9ce8 +BR ret=0 +BC did=b8afffff gx=40 gy=20 esi=1cefb2d8 +BR ret=0 +BC did=b8b0ffff gx=40 gy=21 esi=1cefbf08 +BR ret=0 +BC did=b8b1ffff gx=40 gy=22 esi=1cefb680 +BR ret=0 +BC did=b8b2ffff gx=40 gy=23 esi=1cefb7b8 +BR ret=0 +BC did=b8b3ffff gx=40 gy=24 esi=1cefb8f0 +BR ret=0 +BC did=b8b4ffff gx=40 gy=25 esi=1cefbb60 +BR ret=0 +BC did=b8b5ffff gx=40 gy=26 esi=1cefbc98 +BR ret=0 +BC did=b8b6ffff gx=40 gy=27 esi=1cefa918 +BR ret=0 +BC did=b8b7ffff gx=40 gy=28 esi=1cefa6a8 +BR ret=0 +BC did=b8b8ffff gx=40 gy=29 esi=1cefb1a0 +BR ret=0 +BC did=b8b9ffff gx=40 gy=30 esi=1cef9e20 +BR ret=0 +BC did=b8baffff gx=40 gy=31 esi=1cefa090 +BR ret=0 +BC did=b8bbffff gx=40 gy=32 esi=1cef9bb0 +BR ret=0 +BC did=b8bcffff gx=40 gy=33 esi=1cefa1c8 +BR ret=0 +BC did=b8bdffff gx=40 gy=34 esi=1cefa7e0 +BR ret=0 +BC did=b8beffff gx=40 gy=35 esi=1cef9f58 +BR ret=0 +BC did=b8bfffff gx=40 gy=36 esi=1cefa300 +BR ret=0 +BC did=b8c0ffff gx=40 gy=37 esi=1cefaa50 +BR ret=0 +BC did=b8c1ffff gx=40 gy=38 esi=1cefab88 +BR ret=0 +BC did=b8c2ffff gx=40 gy=39 esi=1cefacc0 +BR ret=0 +BC did=b8c3ffff gx=40 gy=40 esi=1cefadf8 +BR ret=0 +BC did=b8c4ffff gx=40 gy=41 esi=1cefbdd0 +BR ret=0 +BC did=b8c5ffff gx=40 gy=42 esi=1cefc040 +BR ret=0 +BC did=b8c6ffff gx=40 gy=43 esi=1cefd150 +BR ret=0 +BC did=b8c7ffff gx=40 gy=44 esi=1cefcee0 +BR ret=0 +BC did=b8c8ffff gx=40 gy=45 esi=1cefd018 +BR ret=0 +BC did=b8c9ffff gx=40 gy=46 esi=1cefc3e8 +BR ret=0 +BC did=b8caffff gx=40 gy=47 esi=1cefcda8 +BR ret=0 +BC did=b8cbffff gx=40 gy=48 esi=1cefdeb8 +BR ret=0 +BC did=b8ccffff gx=40 gy=49 esi=1cefc178 +BR ret=0 +BC did=b8cdffff gx=40 gy=50 esi=1cefc2b0 +BR ret=0 +BC did=b99bffff gx=41 gy=0 esi=1cefc658 +BR ret=0 +BC did=b99cffff gx=41 gy=1 esi=1cefc790 +BR ret=0 +BC did=b99dffff gx=41 gy=2 esi=1cefdff0 +BR ret=0 +BC did=b99effff gx=41 gy=3 esi=1cefe128 +BR ret=0 +BC did=b99fffff gx=41 gy=4 esi=1cefcb38 +BR ret=0 +BC did=b9a0ffff gx=41 gy=5 esi=1cefe608 +BR ret=0 +BC did=b9a1ffff gx=41 gy=6 esi=1cefe260 +BR ret=0 +BC did=b9a2ffff gx=41 gy=7 esi=1cefd768 +BR ret=0 +BC did=b9a3ffff gx=41 gy=8 esi=1cefe398 +BR ret=0 +BC did=b9a4ffff gx=41 gy=9 esi=1cefe4d0 +BR ret=0 +BC did=b9a5ffff gx=41 gy=10 esi=1cefca00 +BR ret=0 +BC did=b9a6ffff gx=41 gy=11 esi=1cefd8a0 +BR ret=0 +BC did=b9a7ffff gx=41 gy=12 esi=1cefe740 +BR ret=0 +BC did=b9a8ffff gx=41 gy=13 esi=1cefcc70 +BR ret=0 +BC did=b9a9ffff gx=41 gy=14 esi=1cefc520 +BR ret=0 +BC did=b9aaffff gx=41 gy=15 esi=1cefc8c8 +BR ret=0 +BC did=b9abffff gx=41 gy=16 esi=1cefd288 +BR ret=0 +BC did=b9acffff gx=41 gy=17 esi=1cefd3c0 +BR ret=0 +BC did=b9adffff gx=41 gy=18 esi=1cefd4f8 +BR ret=0 +BC did=b9aeffff gx=41 gy=19 esi=1cefd630 +BR ret=0 +BC did=b9afffff gx=41 gy=20 esi=1cefd9d8 +BR ret=0 +BC did=b9b0ffff gx=41 gy=21 esi=1cefdb10 +BR ret=0 +BC did=b9b1ffff gx=41 gy=22 esi=1cefdc48 +BR ret=0 +BC did=b9b2ffff gx=41 gy=23 esi=1cefdd80 +BR ret=0 +BC did=b9b3ffff gx=41 gy=24 esi=1cefeae8 +BR ret=0 +BC did=b9b4ffff gx=41 gy=25 esi=1ceffac0 +BR ret=0 +BC did=b9b5ffff gx=41 gy=26 esi=1ceffbf8 +BR ret=0 +BC did=b9b6ffff gx=41 gy=27 esi=1ceff238 +BR ret=0 +BC did=b9b7ffff gx=41 gy=28 esi=1cefed58 +BR ret=0 +BC did=b9b8ffff gx=41 gy=29 esi=1cf00e40 +BR ret=0 +BC did=b9b9ffff gx=41 gy=30 esi=1cf000d8 +BR ret=0 +BC did=b9baffff gx=41 gy=31 esi=1cf00210 +BR ret=0 +BC did=b9bbffff gx=41 gy=32 esi=1ceff5e0 +BR ret=0 +BC did=b9bcffff gx=41 gy=33 esi=1cefffa0 +BR ret=0 +BC did=b9bdffff gx=41 gy=34 esi=1ceff850 +BR ret=0 +BC did=b9beffff gx=41 gy=35 esi=1ceff988 +BR ret=0 +BC did=b9bfffff gx=41 gy=36 esi=1ceff370 +BR ret=0 +BC did=b9c0ffff gx=41 gy=37 esi=1cf00480 +BR ret=0 +BC did=b9c1ffff gx=41 gy=38 esi=1cefe878 +BR ret=0 +BC did=b9c2ffff gx=41 gy=39 esi=1ceff4a8 +BR ret=0 +BC did=b9c3ffff gx=41 gy=40 esi=1ceff718 +BR ret=0 +BC did=b9c4ffff gx=41 gy=41 esi=1cf00348 +BR ret=0 +BC did=b9c5ffff gx=41 gy=42 esi=1ceffd30 +BR ret=0 +BC did=b9c6ffff gx=41 gy=43 esi=1cf00828 +BR ret=0 +BC did=b9c7ffff gx=41 gy=44 esi=1cefec20 +BR ret=0 +BC did=b9c8ffff gx=41 gy=45 esi=1cf00a98 +BR ret=0 +BC did=b9c9ffff gx=41 gy=46 esi=1cefefc8 +BR ret=0 +BC did=b9caffff gx=41 gy=47 esi=1cf00bd0 +BR ret=0 +BC did=b9cbffff gx=41 gy=48 esi=1cf005b8 +BR ret=0 +BC did=b9ccffff gx=41 gy=49 esi=1cf006f0 +BR ret=0 +BC did=b9cdffff gx=41 gy=50 esi=1cf00960 +BR ret=0 +BC did=ba9bffff gx=42 gy=0 esi=1cf00d08 +BR ret=0 +BC did=ba9cffff gx=42 gy=1 esi=1ceff100 +BR ret=0 +BC did=ba9dffff gx=42 gy=2 esi=1cefe9b0 +BR ret=0 +BC did=ba9effff gx=42 gy=3 esi=1cefee90 +BR ret=0 +BC did=ba9fffff gx=42 gy=4 esi=1ceffe68 +BR ret=0 +BC did=baa0ffff gx=42 gy=5 esi=1cf02910 +BR ret=0 +BC did=baa1ffff gx=42 gy=6 esi=1cf02a48 +BR ret=0 +BC did=baa2ffff gx=42 gy=7 esi=1cf010b0 +BR ret=0 +BC did=baa3ffff gx=42 gy=8 esi=1cf01800 +BR ret=0 +BC did=baa4ffff gx=42 gy=9 esi=1cf02088 +BR ret=0 +BC did=baa5ffff gx=42 gy=10 esi=1cf02cb8 +BR ret=0 +BC did=baa6ffff gx=42 gy=11 esi=1cf02b80 +BR ret=0 +BC did=baa7ffff gx=42 gy=12 esi=1cf01a70 +BR ret=0 +BC did=baa8ffff gx=42 gy=13 esi=1cf016c8 +BR ret=0 +BC did=baa9ffff gx=42 gy=14 esi=1cf01ba8 +BR ret=0 +BC did=baaaffff gx=42 gy=15 esi=1cf02df0 +BR ret=0 +BC did=baabffff gx=42 gy=16 esi=1cf01320 +BR ret=0 +BC did=baacffff gx=42 gy=17 esi=1cf022f8 +BR ret=0 +BC did=baadffff gx=42 gy=18 esi=1cf01ce0 +BR ret=0 +BC did=baaeffff gx=42 gy=19 esi=1cf027d8 +BR ret=0 +BC did=baafffff gx=42 gy=20 esi=1cf021c0 +BR ret=0 +BC did=bab0ffff gx=42 gy=21 esi=1cf01e18 +BR ret=0 +BC did=bab1ffff gx=42 gy=22 esi=1cf01938 +BR ret=0 +BC did=bab2ffff gx=42 gy=23 esi=1cf01f50 +BR ret=0 +BC did=bab3ffff gx=42 gy=24 esi=1cf011e8 +BR ret=0 +BC did=bab4ffff gx=42 gy=25 esi=1cf02f28 +BR ret=0 +BC did=bab5ffff gx=42 gy=26 esi=1cf02430 +BR ret=0 +BC did=bab6ffff gx=42 gy=27 esi=1cf026a0 +BR ret=0 +BC did=bab7ffff gx=42 gy=28 esi=1cf01458 +BR ret=0 +BC did=bab8ffff gx=42 gy=29 esi=1cf02568 +BR ret=0 +BC did=bab9ffff gx=42 gy=30 esi=1cf03060 +BR ret=0 +BC did=babaffff gx=42 gy=31 esi=1cf03198 +BR ret=0 +BC did=babbffff gx=42 gy=32 esi=1cf032d0 +BR ret=0 +BC did=babcffff gx=42 gy=33 esi=1cf03408 +BR ret=0 +BC did=babdffff gx=42 gy=34 esi=1cf03540 +BR ret=0 +BC did=babeffff gx=42 gy=35 esi=1cf00f78 +BR ret=0 +BC did=babfffff gx=42 gy=36 esi=1cf01590 +BR ret=0 +BC did=bac0ffff gx=42 gy=37 esi=1cf04788 +BR ret=0 +BC did=bac1ffff gx=42 gy=38 esi=1cf04da0 +BR ret=0 +BC did=bac2ffff gx=42 gy=39 esi=1cf059d0 +BR ret=0 +BC did=bac3ffff gx=42 gy=40 esi=1cf048c0 +BR ret=0 +BC did=bac4ffff gx=42 gy=41 esi=1cf04ed8 +BR ret=0 +BC did=bac5ffff gx=42 gy=42 esi=1cf04650 +BR ret=0 +BC did=bac6ffff gx=42 gy=43 esi=1cf049f8 +BR ret=0 +BC did=bac7ffff gx=42 gy=44 esi=1cf04038 +BR ret=0 +BC did=bac8ffff gx=42 gy=45 esi=1cf05280 +BR ret=0 +BC did=bac9ffff gx=42 gy=46 esi=1cf03678 +BR ret=0 +BC did=bacaffff gx=42 gy=47 esi=1cf042a8 +BR ret=0 +BC did=bacbffff gx=42 gy=48 esi=1cf05010 +BR ret=0 +BC did=baccffff gx=42 gy=49 esi=1cf03b58 +BR ret=0 +BC did=bacdffff gx=42 gy=50 esi=1cf04b30 +BR ret=0 +BC did=bb9bffff gx=43 gy=0 esi=1cf04c68 +BR ret=0 +BC did=bb9cffff gx=43 gy=1 esi=1cf05628 +BR ret=0 +BC did=bb9dffff gx=43 gy=2 esi=1cf054f0 +BR ret=0 +BC did=bb9effff gx=43 gy=3 esi=1cf05148 +BR ret=0 +BC did=bb9fffff gx=43 gy=4 esi=1cf05b08 +BR ret=0 +BC did=bba0ffff gx=43 gy=5 esi=1cf03c90 +BR ret=0 +BC did=bba1ffff gx=43 gy=6 esi=1cf053b8 +BR ret=0 +BC did=bba2ffff gx=43 gy=7 esi=1cf05760 +BR ret=0 +BC did=bba3ffff gx=43 gy=8 esi=1cf04518 +BR ret=0 +BC did=bba4ffff gx=43 gy=9 esi=1cf03dc8 +BR ret=0 +BC did=bba5ffff gx=43 gy=10 esi=1cf05898 +BR ret=0 +BC did=bba6ffff gx=43 gy=11 esi=1cf05c40 +BR ret=0 +BC did=bba7ffff gx=43 gy=12 esi=1cf037b0 +BR ret=0 +BC did=bba8ffff gx=43 gy=13 esi=1cf038e8 +BR ret=0 +BC did=bba9ffff gx=43 gy=14 esi=1cf03a20 +BR ret=0 +BC did=bbaaffff gx=43 gy=15 esi=1cf03f00 +BR ret=0 +BC did=bbabffff gx=43 gy=16 esi=1cf04170 +BR ret=0 +BC did=bbacffff gx=43 gy=17 esi=1cf043e0 +BR ret=0 +BC did=bbadffff gx=43 gy=18 esi=1cf07368 +BR ret=0 +BC did=bbaeffff gx=43 gy=19 esi=1cf07d28 +BR ret=0 +BC did=bbafffff gx=43 gy=20 esi=1cf07f98 +BR ret=0 +BC did=bbb0ffff gx=43 gy=21 esi=1cf075d8 +BR ret=0 +BC did=bbb1ffff gx=43 gy=22 esi=1cf08208 +BR ret=0 +BC did=bbb2ffff gx=43 gy=23 esi=1cf07848 +BR ret=0 +BC did=bbb3ffff gx=43 gy=24 esi=1cf07710 +BR ret=0 +BC did=bbb4ffff gx=43 gy=25 esi=1cf07980 +BR ret=0 +BC did=bbb5ffff gx=43 gy=26 esi=1cf07ab8 +BR ret=0 +BC did=bbb6ffff gx=43 gy=27 esi=1cf07bf0 +BR ret=0 +BC did=bbb7ffff gx=43 gy=28 esi=1cf06c18 +BR ret=0 +BC did=bbb8ffff gx=43 gy=29 esi=1cf06870 +BR ret=0 +BC did=bbb9ffff gx=43 gy=30 esi=1cf074a0 +BR ret=0 +BC did=bbbaffff gx=43 gy=31 esi=1cf06120 +BR ret=0 +BC did=bbbbffff gx=43 gy=32 esi=1cf07e60 +BR ret=0 +BC did=bbbcffff gx=43 gy=33 esi=1cf06ae0 +BR ret=0 +BC did=bbbdffff gx=43 gy=34 esi=1cf080d0 +BR ret=0 +BC did=bbbeffff gx=43 gy=35 esi=1cf08340 +BR ret=0 +BC did=bbbfffff gx=43 gy=36 esi=1cf06d50 +BR ret=0 +BC did=bbc0ffff gx=43 gy=37 esi=1cf05d78 +BR ret=0 +BC did=bbc1ffff gx=43 gy=38 esi=1cf05eb0 +BR ret=0 +BC did=bbc2ffff gx=43 gy=39 esi=1cf05fe8 +BR ret=0 +BC did=bbc3ffff gx=43 gy=40 esi=1cf06e88 +BR ret=0 +BC did=bbc4ffff gx=43 gy=41 esi=1cf06258 +BR ret=0 +BC did=bbc5ffff gx=43 gy=42 esi=1cf06390 +BR ret=0 +BC did=bbc6ffff gx=43 gy=43 esi=1cf06fc0 +BR ret=0 +BC did=bbc7ffff gx=43 gy=44 esi=1cf064c8 +BR ret=0 +BC did=bbc8ffff gx=43 gy=45 esi=1cf070f8 +BR ret=0 +BC did=bbc9ffff gx=43 gy=46 esi=1cf07230 +BR ret=0 +BC did=bbcaffff gx=43 gy=47 esi=1cf06600 +BR ret=0 +BC did=bbcbffff gx=43 gy=48 esi=1cf06738 +BR ret=0 +BC did=bbccffff gx=43 gy=49 esi=1cf069a8 +BR ret=0 +BC did=bbcdffff gx=43 gy=50 esi=1cf0a908 +BR ret=0 +BC did=bc9bffff gx=44 gy=0 esi=1cf0a560 +BR ret=0 +BC did=bc9cffff gx=44 gy=1 esi=1cf09f48 +BR ret=0 +BC did=bc9dffff gx=44 gy=2 esi=1cf08478 +BR ret=0 +BC did=bc9effff gx=44 gy=3 esi=1cf0a1b8 +BR ret=0 +BC did=bc9fffff gx=44 gy=4 esi=1cf0a428 +BR ret=0 +BC did=bca0ffff gx=44 gy=5 esi=1cf090a8 +BR ret=0 +BC did=bca1ffff gx=44 gy=6 esi=1cf091e0 +BR ret=0 +BC did=bca2ffff gx=44 gy=7 esi=1cf0a698 +BR ret=0 +BC did=bca3ffff gx=44 gy=8 esi=1cf0aa40 +BR ret=0 +BC did=bca4ffff gx=44 gy=9 esi=1cf09930 +BR ret=0 +BC did=bca5ffff gx=44 gy=10 esi=1cf09450 +BR ret=0 +BC did=bca6ffff gx=44 gy=11 esi=1cf085b0 +BR ret=0 +BC did=bca7ffff gx=44 gy=12 esi=1cf09a68 +BR ret=0 +BC did=bca8ffff gx=44 gy=13 esi=1cf08820 +BR ret=0 +BC did=bca9ffff gx=44 gy=14 esi=1cf096c0 +BR ret=0 +BC did=bcaaffff gx=44 gy=15 esi=1cf086e8 +BR ret=0 +BC did=bcabffff gx=44 gy=16 esi=1cf09ba0 +BR ret=0 +BC did=bcacffff gx=44 gy=17 esi=1cf08958 +BR ret=0 +BC did=bcadffff gx=44 gy=18 esi=1cf08d00 +BR ret=0 +BC did=bcaeffff gx=44 gy=19 esi=1cf09318 +BR ret=0 +BC did=bcafffff gx=44 gy=20 esi=1cf08f70 +BR ret=0 +BC did=bcb0ffff gx=44 gy=21 esi=1cf09588 +BR ret=0 +BC did=bcb1ffff gx=44 gy=22 esi=1cf097f8 +BR ret=0 +BC did=bcb2ffff gx=44 gy=23 esi=1cf09cd8 +BR ret=0 +BC did=bcb3ffff gx=44 gy=24 esi=1cf08e38 +BR ret=0 +BC did=bcb4ffff gx=44 gy=25 esi=1cf0a2f0 +BR ret=0 +BC did=bcb5ffff gx=44 gy=26 esi=1cf09e10 +BR ret=0 +BC did=bcb6ffff gx=44 gy=27 esi=1cf0a080 +BR ret=0 +BC did=bcb7ffff gx=44 gy=28 esi=1cf0a7d0 +BR ret=0 +BC did=bcb8ffff gx=44 gy=29 esi=1cf08a90 +BR ret=0 +BC did=bcb9ffff gx=44 gy=30 esi=1cf08bc8 +BR ret=0 +BC did=bcbaffff gx=44 gy=31 esi=1cf0bef8 +BR ret=0 +BC did=bcbbffff gx=44 gy=32 esi=1cf0bb50 +BR ret=0 +BC did=bcbcffff gx=44 gy=33 esi=1cf0b538 +BR ret=0 +BC did=bcbdffff gx=44 gy=34 esi=1cf0c780 +BR ret=0 +BC did=bcbeffff gx=44 gy=35 esi=1cf0ab78 +BR ret=0 +BC did=bcbfffff gx=44 gy=36 esi=1cf0b7a8 +BR ret=0 +BC did=bcc0ffff gx=44 gy=37 esi=1cf0acb0 +BR ret=0 +BC did=bcc1ffff gx=44 gy=38 esi=1cf0c030 +BR ret=0 +BC did=bcc2ffff gx=44 gy=39 esi=1cf0c168 +BR ret=0 +BC did=bcc3ffff gx=44 gy=40 esi=1cf0c648 +BR ret=0 +BC did=bcc4ffff gx=44 gy=41 esi=1cf0b670 +BR ret=0 +BC did=bcc5ffff gx=44 gy=42 esi=1cf0cb28 +BR ret=0 +BC did=bcc6ffff gx=44 gy=43 esi=1cf0ade8 +BR ret=0 +BC did=bcc7ffff gx=44 gy=44 esi=1cf0cd98 +BR ret=0 +BC did=bcc8ffff gx=44 gy=45 esi=1cf0b2c8 +BR ret=0 +BC did=bcc9ffff gx=44 gy=46 esi=1cf0ced0 +BR ret=0 +BC did=bccaffff gx=44 gy=47 esi=1cf0c8b8 +BR ret=0 +BC did=bccbffff gx=44 gy=48 esi=1cf0b058 +BR ret=0 +BC did=bcccffff gx=44 gy=49 esi=1cf0b190 +BR ret=0 +BC did=bccdffff gx=44 gy=50 esi=1cf0c9f0 +BR ret=0 +BC did=bd9bffff gx=45 gy=0 esi=1cf0b400 +BR ret=0 +BC did=bd9cffff gx=45 gy=1 esi=1cf0cc60 +BR ret=0 +BC did=bd9dffff gx=45 gy=2 esi=1cf0bc88 +BR ret=0 +BC did=bd9effff gx=45 gy=3 esi=1cf0af20 +BR ret=0 +BC did=bd9fffff gx=45 gy=4 esi=1cf0b8e0 +BR ret=0 +BC did=bda0ffff gx=45 gy=5 esi=1cf0d008 +BR ret=0 +BC did=bda1ffff gx=45 gy=6 esi=1cf0d140 +BR ret=0 +BC did=bda2ffff gx=45 gy=7 esi=1cf0ba18 +BR ret=0 +BC did=bda3ffff gx=45 gy=8 esi=1cf0bdc0 +BR ret=0 +BC did=bda4ffff gx=45 gy=9 esi=1cf0c2a0 +BR ret=0 +BC did=bda5ffff gx=45 gy=10 esi=1cf0c3d8 +BR ret=0 +BC did=bda6ffff gx=45 gy=11 esi=1cf0c510 +BR ret=0 +BC did=bda7ffff gx=45 gy=12 esi=1cf0e9a0 +BR ret=0 +BC did=bda8ffff gx=45 gy=13 esi=1cf0f5d0 +BR ret=0 +BC did=bda9ffff gx=45 gy=14 esi=1cf0e4c0 +BR ret=0 +BC did=bdaaffff gx=45 gy=15 esi=1cf0ead8 +BR ret=0 +BC did=bdabffff gx=45 gy=16 esi=1cf0e250 +BR ret=0 +BC did=bdacffff gx=45 gy=17 esi=1cf0e5f8 +BR ret=0 +BC did=bdadffff gx=45 gy=18 esi=1cf0ec10 +BR ret=0 +BC did=bdaeffff gx=45 gy=19 esi=1cf0db00 +BR ret=0 +BC did=bdafffff gx=45 gy=20 esi=1cf0d758 +BR ret=0 +BC did=bdb0ffff gx=45 gy=21 esi=1cf0d620 +BR ret=0 +BC did=bdb1ffff gx=45 gy=22 esi=1cf0d890 +BR ret=0 +BC did=bdb2ffff gx=45 gy=23 esi=1cf0f840 +BR ret=0 +BC did=bdb3ffff gx=45 gy=24 esi=1cf0ed48 +BR ret=0 +BC did=bdb4ffff gx=45 gy=25 esi=1cf0d278 +BR ret=0 +BC did=bdb5ffff gx=45 gy=26 esi=1cf0efb8 +BR ret=0 +BC did=bdb6ffff gx=45 gy=27 esi=1cf0d3b0 +BR ret=0 +BC did=bdb7ffff gx=45 gy=28 esi=1cf0d9c8 +BR ret=0 +BC did=bdb8ffff gx=45 gy=29 esi=1cf0f0f0 +BR ret=0 +BC did=bdb9ffff gx=45 gy=30 esi=1cf0f228 +BR ret=0 +BC did=bdbaffff gx=45 gy=31 esi=1cf0f360 +BR ret=0 +BC did=bdbbffff gx=45 gy=32 esi=1cf0ee80 +BR ret=0 +BC did=bdbcffff gx=45 gy=33 esi=1cf0f708 +BR ret=0 +BC did=bdbdffff gx=45 gy=34 esi=1cf0f498 +BR ret=0 +BC did=bdbeffff gx=45 gy=35 esi=1cf0d4e8 +BR ret=0 +BC did=bdbfffff gx=45 gy=36 esi=1cf0dc38 +BR ret=0 +BC did=bdc0ffff gx=45 gy=37 esi=1cf0dd70 +BR ret=0 +BC did=bdc1ffff gx=45 gy=38 esi=1cf0dea8 +BR ret=0 +BC did=bdc2ffff gx=45 gy=39 esi=1cf0e118 +BR ret=0 +BC did=bdc3ffff gx=45 gy=40 esi=1cf0dfe0 +BR ret=0 +BC did=bdc4ffff gx=45 gy=41 esi=1cf0e388 +BR ret=0 +BC did=bdc5ffff gx=45 gy=42 esi=1cf0e730 +BR ret=0 +BC did=bdc6ffff gx=45 gy=43 esi=1cf0e868 +BR ret=0 +BC did=bdc7ffff gx=45 gy=44 esi=1cf0fab0 +BR ret=0 +BC did=bdc8ffff gx=45 gy=45 esi=1cf0ff90 +BR ret=0 +BC did=bdc9ffff gx=45 gy=46 esi=1cf10338 +BR ret=0 +BC did=bdcaffff gx=45 gy=47 esi=1cf0fbe8 +BR ret=0 +BC did=bdcbffff gx=45 gy=48 esi=1cf0fd20 +BR ret=0 +BC did=bdccffff gx=45 gy=49 esi=1cf0f978 +BR ret=0 +BC did=bdcdffff gx=45 gy=50 esi=1cf0fe58 +BR ret=0 +BC did=be9bffff gx=46 gy=0 esi=1cf100c8 +BR ret=0 +BC did=be9cffff gx=46 gy=1 esi=1cf10200 +BR ret=0 +BC did=be9dffff gx=46 gy=2 esi=1cf10470 +BR ret=0 +BC did=be9effff gx=46 gy=3 esi=1cf106e0 +BR ret=0 +BC did=be9fffff gx=46 gy=4 esi=1cf10a88 +BR ret=0 +BC did=bea0ffff gx=46 gy=5 esi=1cf111d8 +BR ret=0 +BC did=bea1ffff gx=46 gy=6 esi=1cf10bc0 +BR ret=0 +BC did=bea2ffff gx=46 gy=7 esi=1cf116b8 +BR ret=0 +BC did=bea3ffff gx=46 gy=8 esi=1cf11580 +BR ret=0 +BC did=bea4ffff gx=46 gy=9 esi=1cf105a8 +BR ret=0 +BC did=bea5ffff gx=46 gy=10 esi=1cf10818 +BR ret=0 +BC did=bea6ffff gx=46 gy=11 esi=1cf10950 +BR ret=0 +BC did=bea7ffff gx=46 gy=12 esi=1cf11310 +BR ret=0 +BC did=bea8ffff gx=46 gy=13 esi=1cf10cf8 +BR ret=0 +BC did=bea9ffff gx=46 gy=14 esi=1cf10e30 +BR ret=0 +BC did=beaaffff gx=46 gy=15 esi=1cf10f68 +BR ret=0 +BC did=beabffff gx=46 gy=16 esi=1cf11448 +BR ret=0 +BC did=beacffff gx=46 gy=17 esi=1cf110a0 +BR ret=0 +BC did=beadffff gx=46 gy=18 esi=1cf117f0 +BR ret=0 +BC did=beaeffff gx=46 gy=19 esi=1cf11928 +BR ret=0 +BC did=beafffff gx=46 gy=20 esi=1cf11f40 +BR ret=0 +BC did=beb0ffff gx=46 gy=21 esi=1cf11a60 +BR ret=0 +BC did=beb1ffff gx=46 gy=22 esi=1cf11b98 +BR ret=0 +BC did=beb2ffff gx=46 gy=23 esi=1cf11cd0 +BR ret=0 +BC did=beb3ffff gx=46 gy=24 esi=1cf11e08 +BR ret=0 +BC did=beb4ffff gx=46 gy=25 esi=1cf12900 +BR ret=0 +BC did=beb5ffff gx=46 gy=26 esi=1cf12a38 +BR ret=0 +BC did=beb6ffff gx=46 gy=27 esi=1cf12558 +BR ret=0 +BC did=beb7ffff gx=46 gy=28 esi=1cf12420 +BR ret=0 +BC did=beb8ffff gx=46 gy=29 esi=1cf12690 +BR ret=0 +BC did=beb9ffff gx=46 gy=30 esi=1cf13db8 +BR ret=0 +BC did=bebaffff gx=46 gy=31 esi=1cf13b48 +BR ret=0 +BC did=bebbffff gx=46 gy=32 esi=1cf12f18 +BR ret=0 +BC did=bebcffff gx=46 gy=33 esi=1cf127c8 +BR ret=0 +BC did=bebdffff gx=46 gy=34 esi=1cf132c0 +BR ret=0 +BC did=bebeffff gx=46 gy=35 esi=1cf12b70 +BR ret=0 +BC did=bebfffff gx=46 gy=36 esi=1cf13c80 +BR ret=0 +BC did=bec0ffff gx=46 gy=37 esi=1cf12ca8 +BR ret=0 +BC did=bec1ffff gx=46 gy=38 esi=1cf12de0 +BR ret=0 +BC did=bec2ffff gx=46 gy=39 esi=1cf14508 +BR ret=0 +BC did=bec3ffff gx=46 gy=40 esi=1cf138d8 +BR ret=0 +BC did=bec4ffff gx=46 gy=41 esi=1cf13a10 +BR ret=0 +BC did=bec5ffff gx=46 gy=42 esi=1cf13050 +BR ret=0 +BC did=bec6ffff gx=46 gy=43 esi=1cf13188 +BR ret=0 +BC did=bec7ffff gx=46 gy=44 esi=1cf13ef0 +BR ret=0 +BC did=bec8ffff gx=46 gy=45 esi=1cf14640 +BR ret=0 +BC did=bec9ffff gx=46 gy=46 esi=1cf143d0 +BR ret=0 +BC did=becaffff gx=46 gy=47 esi=1cf12078 +BR ret=0 +BC did=becbffff gx=46 gy=48 esi=1cf133f8 +BR ret=0 +BC did=beccffff gx=46 gy=49 esi=1cf13530 +BR ret=0 +BC did=becdffff gx=46 gy=50 esi=1cf14028 +BR ret=0 +BC did=bf9bffff gx=47 gy=0 esi=1cf13668 +BR ret=0 +BC did=bf9cffff gx=47 gy=1 esi=1cf137a0 +BR ret=0 +BC did=bf9dffff gx=47 gy=2 esi=1cf121b0 +BR ret=0 +BC did=bf9effff gx=47 gy=3 esi=1cf122e8 +BR ret=0 +BC did=bf9fffff gx=47 gy=4 esi=1cf14160 +BR ret=0 +BC did=bfa0ffff gx=47 gy=5 esi=1cf14298 +BR ret=0 +BC did=bfa1ffff gx=47 gy=6 esi=1cf149e8 +BR ret=0 +BC did=bfa2ffff gx=47 gy=7 esi=1cf159c0 +BR ret=0 +BC did=bfa3ffff gx=47 gy=8 esi=1cf15af8 +BR ret=0 +BC did=bfa4ffff gx=47 gy=9 esi=1cf15138 +BR ret=0 +BC did=bfa5ffff gx=47 gy=10 esi=1cf14c58 +BR ret=0 +BC did=bfa6ffff gx=47 gy=11 esi=1cf16d40 +BR ret=0 +BC did=bfa7ffff gx=47 gy=12 esi=1cf15fd8 +BR ret=0 +BC did=bfa8ffff gx=47 gy=13 esi=1cf16110 +BR ret=0 +BC did=bfa9ffff gx=47 gy=14 esi=1cf154e0 +BR ret=0 +BC did=bfaaffff gx=47 gy=15 esi=1cf14d90 +BR ret=0 +BC did=bfabffff gx=47 gy=16 esi=1cf15888 +BR ret=0 +BC did=bfacffff gx=47 gy=17 esi=1cf14ec8 +BR ret=0 +BC did=bfadffff gx=47 gy=18 esi=1cf15d68 +BR ret=0 +BC did=bfaeffff gx=47 gy=19 esi=1cf16998 +BR ret=0 +BC did=bfafffff gx=47 gy=20 esi=1cf16860 +BR ret=0 +BC did=bfb0ffff gx=47 gy=21 esi=1cf15000 +BR ret=0 +BC did=bfb1ffff gx=47 gy=22 esi=1cf15270 +BR ret=0 +BC did=bfb2ffff gx=47 gy=23 esi=1cf15c30 +BR ret=0 +BC did=bfb3ffff gx=47 gy=24 esi=1cf153a8 +BR ret=0 +BC did=bfb4ffff gx=47 gy=25 esi=1cf16380 +BR ret=0 +BC did=bfb5ffff gx=47 gy=26 esi=1cf15618 +BR ret=0 +BC did=bfb6ffff gx=47 gy=27 esi=1cf14778 +BR ret=0 +BC did=bfb7ffff gx=47 gy=28 esi=1cf16c08 +BR ret=0 +BC did=bfb8ffff gx=47 gy=29 esi=1cf148b0 +BR ret=0 +BC did=bfb9ffff gx=47 gy=30 esi=1cf15750 +BR ret=0 +BC did=bfbaffff gx=47 gy=31 esi=1cf164b8 +BR ret=0 +BC did=bfbbffff gx=47 gy=32 esi=1cf16728 +BR ret=0 +BC did=bfbcffff gx=47 gy=33 esi=1cf165f0 +BR ret=0 +BC did=bfbdffff gx=47 gy=34 esi=1cf16248 +BR ret=0 +BC did=bfbeffff gx=47 gy=35 esi=1cf14b20 +BR ret=0 +BC did=bfbfffff gx=47 gy=36 esi=1cf16ad0 +BR ret=0 +BC did=bfc0ffff gx=47 gy=37 esi=1cf15ea0 +BR ret=0 +BC did=bfc1ffff gx=47 gy=38 esi=1cf18948 +BR ret=0 +BC did=bfc2ffff gx=47 gy=39 esi=1cf18a80 +BR ret=0 +BC did=bfc3ffff gx=47 gy=40 esi=1cf18bb8 +BR ret=0 +BC did=bfc4ffff gx=47 gy=41 esi=1cf17d18 +BR ret=0 +BC did=bfc5ffff gx=47 gy=42 esi=1cf17970 +BR ret=0 +BC did=bfc6ffff gx=47 gy=43 esi=1cf185a0 +BR ret=0 +BC did=bfc7ffff gx=47 gy=44 esi=1cf17220 +BR ret=0 +BC did=bfc8ffff gx=47 gy=45 esi=1cf18468 +BR ret=0 +BC did=bfc9ffff gx=47 gy=46 esi=1cf17be0 +BR ret=0 +BC did=bfcaffff gx=47 gy=47 esi=1cf18cf0 +BR ret=0 +BC did=bfcbffff gx=47 gy=48 esi=1cf191d0 +BR ret=0 +BC did=bfccffff gx=47 gy=49 esi=1cf17e50 +BR ret=0 +BC did=bfcdffff gx=47 gy=50 esi=1cf19308 +BR ret=0 +BC did=c09bffff gx=48 gy=0 esi=1cf19098 +BR ret=0 +BC did=c09cffff gx=48 gy=1 esi=1cf16fb0 +BR ret=0 +BC did=c09dffff gx=48 gy=2 esi=1cf17358 +BR ret=0 +BC did=c09effff gx=48 gy=3 esi=1cf17490 +BR ret=0 +BC did=c09fffff gx=48 gy=4 esi=1cf17aa8 +BR ret=0 +BC did=c0a0ffff gx=48 gy=5 esi=1cf18e28 +BR ret=0 +BC did=c0a1ffff gx=48 gy=6 esi=1cf17f88 +BR ret=0 +BC did=c0a2ffff gx=48 gy=7 esi=1cf180c0 +BR ret=0 +BC did=c0a3ffff gx=48 gy=8 esi=1cf181f8 +BR ret=0 +BC did=c0a4ffff gx=48 gy=9 esi=111924f8 +BR ret=0 +BC did=c0a5ffff gx=48 gy=10 esi=11191b38 +BR ret=0 +BC did=c0a6ffff gx=48 gy=11 esi=111928a0 +BR ret=0 +BC did=c0a7ffff gx=48 gy=12 esi=11191da8 +BR ret=0 +BC did=c0a8ffff gx=48 gy=13 esi=11193fc8 +BR ret=0 +BC did=c0a9ffff gx=48 gy=14 esi=11194e68 +BR ret=0 +BC did=c0aaffff gx=48 gy=15 esi=11194fa0 +BR ret=0 +BC did=c0abffff gx=48 gy=16 esi=11194bf8 +BR ret=0 +BC did=c0acffff gx=48 gy=17 esi=111950d8 +BR ret=0 +BC did=c0adffff gx=48 gy=18 esi=11194ac0 +BR ret=0 +BC did=c0aeffff gx=48 gy=19 esi=11193c20 +BR ret=0 +BC did=c0afffff gx=48 gy=20 esi=111945e0 +BR ret=0 +BC did=c0b0ffff gx=48 gy=21 esi=11194370 +BR ret=0 +BC did=c0b1ffff gx=48 gy=22 esi=11193ae8 +BR ret=0 +BC did=c0b2ffff gx=48 gy=23 esi=111939b0 +BR ret=0 +BC did=c0b3ffff gx=48 gy=24 esi=11194100 +BR ret=0 +BC did=c0b4ffff gx=48 gy=25 esi=11193d58 +BR ret=0 +BC did=c0b5ffff gx=48 gy=26 esi=11194718 +BR ret=0 +BC did=c0b6ffff gx=48 gy=27 esi=11194850 +BR ret=0 +BC did=c0b7ffff gx=48 gy=28 esi=11194238 +BR ret=0 +BC did=c0b8ffff gx=48 gy=29 esi=11193e90 +BR ret=0 +BC did=c0b9ffff gx=48 gy=30 esi=111944a8 +BR ret=0 +BC did=c0baffff gx=48 gy=31 esi=11194988 +BR ret=0 +BC did=c0bbffff gx=48 gy=32 esi=11194d30 +BR ret=0 +BC did=c0bcffff gx=48 gy=33 esi=16f00c90 +BR ret=0 +BC did=c0bdffff gx=48 gy=34 esi=16f02010 +BR ret=0 +BC did=c0beffff gx=48 gy=35 esi=16f01038 +BR ret=0 +BC did=c0bfffff gx=48 gy=36 esi=16f02148 +BR ret=0 +BC did=c0c0ffff gx=48 gy=37 esi=16f02898 +BR ret=0 +BC did=c0c1ffff gx=48 gy=38 esi=16f00dc8 +BR ret=0 +BC did=c0c2ffff gx=48 gy=39 esi=16f01650 +BR ret=0 +BC did=c0c3ffff gx=48 gy=40 esi=16f01b30 +BR ret=0 +BC did=c0c4ffff gx=48 gy=41 esi=16f01c68 +BR ret=0 +BC did=c0c5ffff gx=48 gy=42 esi=16f02628 +BR ret=0 +BC did=c0c6ffff gx=48 gy=43 esi=16f01170 +BR ret=0 +BC did=c0c7ffff gx=48 gy=44 esi=16f01788 +BR ret=0 +BC did=c0c8ffff gx=48 gy=45 esi=16f02760 +BR ret=0 +BC did=c0c9ffff gx=48 gy=46 esi=16f013e0 +BR ret=0 +BC did=c0caffff gx=48 gy=47 esi=16f008e8 +BR ret=0 +BC did=c0cbffff gx=48 gy=48 esi=16f01518 +BR ret=0 +BC did=c0ccffff gx=48 gy=49 esi=16f01da0 +BR ret=0 +BC did=c0cdffff gx=48 gy=50 esi=16f01ed8 +BR ret=0 +BC did=c19bffff gx=49 gy=0 esi=16f018c0 +BR ret=0 +BC did=c19cffff gx=49 gy=1 esi=16f02280 +BR ret=0 +BC did=c19dffff gx=49 gy=2 esi=16f029d0 +BR ret=0 +BC did=c19effff gx=49 gy=3 esi=16f02c40 +BR ret=0 +BC did=c19fffff gx=49 gy=4 esi=16f019f8 +BR ret=0 +BC did=c1a0ffff gx=49 gy=5 esi=16f023b8 +BR ret=0 +BC did=c1a1ffff gx=49 gy=6 esi=16f024f0 +BR ret=0 +BC did=c1a2ffff gx=49 gy=7 esi=16f02b08 +BR ret=0 +BC did=c1a3ffff gx=49 gy=8 esi=16f012a8 +BR ret=0 +BC did=c1a4ffff gx=49 gy=9 esi=16f02d78 +BR ret=0 +BC did=c1a5ffff gx=49 gy=10 esi=16f00f00 +BR ret=0 +BC did=c1a6ffff gx=49 gy=11 esi=16f007b0 +BR ret=0 +BC did=c1a7ffff gx=49 gy=12 esi=16f00a20 +BR ret=0 +BC did=c1a8ffff gx=49 gy=13 esi=16f00b58 +BR ret=0 +BC did=c1a9ffff gx=49 gy=14 esi=16f03e88 +BR ret=0 +BC did=c1aaffff gx=49 gy=15 esi=16f03258 +BR ret=0 +BC did=c1abffff gx=49 gy=16 esi=16f044a0 +BR ret=0 +BC did=c1acffff gx=49 gy=17 esi=16f03120 +BR ret=0 +BC did=c1adffff gx=49 gy=18 esi=16f03ae0 +BR ret=0 +BC did=c1aeffff gx=49 gy=19 esi=16f03870 +BR ret=0 +BC did=c1afffff gx=49 gy=20 esi=16f03c18 +BR ret=0 +BC did=c1b0ffff gx=49 gy=21 esi=16f039a8 +BR ret=0 +BC did=c1b1ffff gx=49 gy=22 esi=16f03fc0 +BR ret=0 +BC did=c1b2ffff gx=49 gy=23 esi=16f02eb0 +BR ret=0 +BC did=c1b3ffff gx=49 gy=24 esi=16f03738 +BR ret=0 +BC did=c1b4ffff gx=49 gy=25 esi=16f03d50 +BR ret=0 +BC did=c1b5ffff gx=49 gy=26 esi=16f045d8 +BR ret=0 +BC did=c1b6ffff gx=49 gy=27 esi=16f02fe8 +BR ret=0 +BC did=c1b7ffff gx=49 gy=28 esi=16f040f8 +BR ret=0 +BC did=c1b8ffff gx=49 gy=29 esi=16f04230 +BR ret=0 +BC did=c1b9ffff gx=49 gy=30 esi=16f04368 +BR ret=0 +BC did=c1baffff gx=49 gy=31 esi=16f03390 +BR ret=0 +BC did=c1bbffff gx=49 gy=32 esi=16f034c8 +BR ret=0 +BC did=c1bcffff gx=49 gy=33 esi=16f03600 +BR ret=0 +BC did=c1bdffff gx=49 gy=34 esi=11196770 +BR ret=0 +BC did=c1beffff gx=49 gy=35 esi=11197610 +BR ret=0 +BC did=c1bfffff gx=49 gy=36 esi=11196ec0 +BR ret=0 +BC did=c1c0ffff gx=49 gy=37 esi=11195ee8 +BR ret=0 +BC did=c1c1ffff gx=49 gy=38 esi=111953f0 +BR ret=0 +BC did=c1c2ffff gx=49 gy=39 esi=11197268 +BR ret=0 +BC did=c1c3ffff gx=49 gy=40 esi=111968a8 +BR ret=0 +BC did=c1c4ffff gx=49 gy=41 esi=111973a0 +BR ret=0 +BC did=c1c5ffff gx=49 gy=42 esi=11195798 +BR ret=0 +BC did=c1c6ffff gx=49 gy=43 esi=11196d88 +BR ret=0 +BC did=c1c7ffff gx=49 gy=44 esi=11196b18 +BR ret=0 +BC did=c1c8ffff gx=49 gy=45 esi=111974d8 +BR ret=0 +BC did=c1c9ffff gx=49 gy=46 esi=11196ff8 +BR ret=0 +BC did=c1caffff gx=49 gy=47 esi=11196020 +BR ret=0 +BC did=c1cbffff gx=49 gy=48 esi=111969e0 +BR ret=0 +BC did=c1ccffff gx=49 gy=49 esi=111958d0 +BR ret=0 +BC did=c1cdffff gx=49 gy=50 esi=11196158 +BR ret=0 +BC did=c29bffff gx=50 gy=0 esi=11196290 +BR ret=0 +BC did=c29cffff gx=50 gy=1 esi=11197130 +BR ret=0 +BC did=c29dffff gx=50 gy=2 esi=11196c50 +BR ret=0 +BC did=c29effff gx=50 gy=3 esi=11197748 +BR ret=0 +BC did=c29fffff gx=50 gy=4 esi=11197880 +BR ret=0 +BC did=c2a0ffff gx=50 gy=5 esi=11195a08 +BR ret=0 +BC did=c2a1ffff gx=50 gy=6 esi=111952b8 +BR ret=0 +BC did=c2a2ffff gx=50 gy=7 esi=11195528 +BR ret=0 +BC did=c2a3ffff gx=50 gy=8 esi=111963c8 +BR ret=0 +BC did=c2a4ffff gx=50 gy=9 esi=11196500 +BR ret=0 +BC did=c2a5ffff gx=50 gy=10 esi=11196638 +BR ret=0 +BC did=c2a6ffff gx=50 gy=11 esi=11195660 +BR ret=0 +BC did=c2a7ffff gx=50 gy=12 esi=11195b40 +BR ret=0 +BC did=c2a8ffff gx=50 gy=13 esi=11195c78 +BR ret=0 +BC did=c2a9ffff gx=50 gy=14 esi=11195db0 +BR ret=0 +BC did=c2aaffff gx=50 gy=15 esi=11197e98 +BR ret=0 +BC did=c2abffff gx=50 gy=16 esi=11198858 +BR ret=0 +BC did=c2acffff gx=50 gy=17 esi=111984b0 +BR ret=0 +BC did=c2adffff gx=50 gy=18 esi=111985e8 +BR ret=0 +BC did=c2aeffff gx=50 gy=19 esi=11198378 +BR ret=0 +BC did=c2afffff gx=50 gy=20 esi=11198ac8 +BR ret=0 +BC did=c2b0ffff gx=50 gy=21 esi=11197fd0 +BR ret=0 +BC did=c2b1ffff gx=50 gy=22 esi=111979b8 +BR ret=0 +BC did=c2b2ffff gx=50 gy=23 esi=11198720 +BR ret=0 +BC did=c2b3ffff gx=50 gy=24 esi=11198240 +BR ret=0 +BC did=c2b4ffff gx=50 gy=25 esi=11198990 +BR ret=0 +BC did=c2b5ffff gx=50 gy=26 esi=11197d60 +BR ret=0 +BC did=c2b6ffff gx=50 gy=27 esi=11198c00 +BR ret=0 +BC did=c2b7ffff gx=50 gy=28 esi=11198d38 +BR ret=0 +BC did=c2b8ffff gx=50 gy=29 esi=11197c28 +BR ret=0 +BC did=c2b9ffff gx=50 gy=30 esi=11197af0 +BR ret=0 +BC did=c2baffff gx=50 gy=31 esi=11198fa8 +BR ret=0 +BC did=c2bbffff gx=50 gy=32 esi=11198108 +BR ret=0 +BC did=c2bcffff gx=50 gy=33 esi=11198e70 +BR ret=0 +BC did=c2bdffff gx=50 gy=34 esi=111990e0 +BR ret=0 +BC did=c2beffff gx=50 gy=35 esi=1127f9b0 +BR ret=0 +BC did=c2bfffff gx=50 gy=36 esi=11280238 +BR ret=0 +BC did=c2c0ffff gx=50 gy=37 esi=1127f878 +BR ret=0 +BC did=c2c1ffff gx=50 gy=38 esi=1127f398 +BR ret=0 +BC did=c2c2ffff gx=50 gy=39 esi=1127fe90 +BR ret=0 +BC did=c2c3ffff gx=50 gy=40 esi=1127e018 +BR ret=0 +BC did=c2c4ffff gx=50 gy=41 esi=1127ed80 +BR ret=0 +BC did=c2c5ffff gx=50 gy=42 esi=1127fae8 +BR ret=0 +BC did=c2c6ffff gx=50 gy=43 esi=1127fc20 +BR ret=0 +BC did=c2c7ffff gx=50 gy=44 esi=1127dee0 +BR ret=0 +BC did=c2c8ffff gx=50 gy=45 esi=1127f4d0 +BR ret=0 +BC did=c2c9ffff gx=50 gy=46 esi=1127e150 +BR ret=0 +BC did=c2caffff gx=50 gy=47 esi=1127eeb8 +BR ret=0 +BC did=c2cbffff gx=50 gy=48 esi=1127e3c0 +BR ret=0 +BC did=c2ccffff gx=50 gy=49 esi=11280100 +BR ret=0 +BC did=c2cdffff gx=50 gy=50 esi=1127e288 +BR ret=0 +N 5679 +F 2 +P a9b4013f 4305432d 415c0f26 42c0a8fd bf7bf17f 3e13e8c3 3c74b1a3 bdd066c6 +eax=27948130 ebx=00000009 ecx=00a566d8 edx=3e900471 esi=00a566d8 edi=009a09b0 +eip=00453aa0 esp=001afe84 ebp=001aff74 iopl=0 nv up ei pl nz na pe nc +cs=0023 ss=002b ds=002b es=002b fs=0053 gs=002b efl=00200206 +acclient!SmartBox::RenderNormalMode: +00453aa0 a130f38600 mov eax,dword ptr [acclient!RenderDevice::render_device (0086f330)] ds:002b:0086f330=00a64b88 +0:000> .echo ===DETACHING=== +===DETACHING=== +0:000> qd +quit: +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\atlmfc.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\concurrency.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\cpp_rest.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\ObjectiveC.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\stl.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\Windows.Data.Json.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\Windows.Devices.Geolocation.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\Windows.Devices.Sensors.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\Windows.Media.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\windows.natvis' +NatVis script unloaded from 'C:\Program Files (x86)\Windows Kits\10\Debuggers\x86\Visualizers\winrt.natvis' diff --git a/tests/AcDream.App.Tests/Rendering/Walk/WalkTraceConformanceTests.cs b/tests/AcDream.App.Tests/Rendering/Walk/WalkTraceConformanceTests.cs index 58d7b0a6..7fed1612 100644 --- a/tests/AcDream.App.Tests/Rendering/Walk/WalkTraceConformanceTests.cs +++ b/tests/AcDream.App.Tests/Rendering/Walk/WalkTraceConformanceTests.cs @@ -188,6 +188,21 @@ public sealed class WalkTraceConformanceTests /// divergence stays at the SAME token index 165 (an LC/SC-only mismatch, /// upstream of any EC/OC content) under the new comparison; #458's /// position is unchanged. + /// + /// RESOLVED 2026-09-03 (lead, two live cdb captures — see + /// docs/ISSUES.md #458 and register row AD-118): it is a PRECISION + /// BOUNDARY, not a structural walk divergence. At this fixture pose the + /// replay's block test for a9c9 (ring 21 north, z slab 75..330) + /// has three of the four block corners OUTSIDE the doorway's fourth + /// edge plane and the south-west corner just INSIDE it, so + /// block_plane_check says PartiallyInside and the block draws; + /// retail's plane sits about 0.5% away (measured at a nearby pose: + /// retail's clip heights 300.4/310.2 m vs the replay's 298.8/308.5 m + /// for the same block, with the SAME sentinel pattern and the SAME + /// verdicts 1 then 0 in the two views) and puts that last corner + /// outside too. The row stays KnownFailure on purpose: the fixture is + /// retail's literal frame, and no bit-exact fix exists short of + /// reproducing D3D's x87 projection. /// [Fact] [Trait("Status", "KnownFailure")] diff --git a/tools/walk-oracle/oh/oh-capture-blockcheck.cdb.template b/tools/walk-oracle/oh/oh-capture-blockcheck.cdb.template index 6f29e11d..d6624e6d 100644 --- a/tools/walk-oracle/oh/oh-capture-blockcheck.cdb.template +++ b/tools/walk-oracle/oh/oh-capture-blockcheck.cdb.template @@ -33,7 +33,12 @@ r $t0 = 0 r $t8 = 0 bp 00453aa0 "r $t0 = @$t0 + 1; .printf \"F %d\\n\", @$t0; .printf \"P %08x %08x %08x %08x %08x %08x %08x %08x\\n\", poi(0081ef00+4), poi(0081ef00+0x3c), poi(0081ef00+0x40), poi(0081ef00+0x44), poi(0081ef00+8), poi(0081ef00+0xc), poi(0081ef00+0x10), poi(0081ef00+0x14); .if (@$t0 < 0n) { gc }" -bp 0054dc50 ".if (poi(@esi+0x28) == 0xa9c9ffff) { r $t8 = 1; .printf \"BC did=%08x gx=%d gy=%d max=%08x min=%08x\\n\", poi(@esi+0x28), @ebx, @ebp, poi(@esp+0x14), poi(@esp+0x18); .printf \"W0\"; dd poi(@esp+4) L20; .printf \"W1\"; dd poi(@esp+8) L20; .printf \"E0\"; dd poi(@esp+0xc) L20; .printf \"E1\"; dd poi(@esp+0x10) L20 }; gc" +* NOTE (2026-09-03, first run): `poi(...) == 0xa9c9ffff` never matched — cdb +* sign-extends the 32-bit read inside `.if`, so the equality is false for any +* DID with the top bit set. `dwo(...)` reads an unsigned dword; the blockset +* template proved the register facts (did=a9c9ffff at gx=25 gy=46, twice a +* frame for the two doorway views). +bp 0054dc50 ".if (dwo(@esi+0x28) == 0xa9c9ffff) { r $t8 = 1; .printf \"BC did=%08x gx=%d gy=%d max=%08x min=%08x\\n\", dwo(@esi+0x28), @ebx, @ebp, dwo(@esp+0x14), dwo(@esp+0x18); .printf \"W0\"; dd poi(@esp+4) L20; .printf \"W1\"; dd poi(@esp+8) L20; .printf \"E0\"; dd poi(@esp+0xc) L20; .printf \"E1\"; dd poi(@esp+0x10) L20 }; gc" bp 005061e9 ".if (@$t8 == 1) { .printf \"BR ret=%d\\n\", @eax; r $t8 = 0 }; gc" g .echo ===DETACHING=== diff --git a/tools/walk-oracle/oh/oh-capture-blockset.cdb.template b/tools/walk-oracle/oh/oh-capture-blockset.cdb.template new file mode 100644 index 00000000..585459a4 --- /dev/null +++ b/tools/walk-oracle/oh/oh-capture-blockset.cdb.template @@ -0,0 +1,37 @@ +* OH walk-oracle capture: BLOCK SET (2026-09-03, for docs/ISSUES.md #458). +* The filtered block-check template (oh-capture-blockcheck.cdb.template) +* printed NOTHING for block 0xA9C9FFFF at the doorway pose — either retail +* never calls Render::block_check for that block (it is not resident in +* LScape's block ring at that pose, so draw_check_blocks skips it) or the +* template's register facts are wrong. This template settles which: it prints +* EVERY Render::block_check @0x0054dc50 call for the captured frames — the +* block DID (esi = the caller's CLandBlock*, DBObj::m_DID at +0x28), the grid +* indices (ebx = x, ebp = y) and the returned BoundingType at the call's +* return site 0x005061e9 — plus a per-frame hit count, so the set of blocks +* retail checks can be diffed against acdream's WalkLandscape.Blocks at the +* same P pose. No interval dumps (cheap enough for the whole ring). +* +* LINE FORMATS: +* F -- frame marker (SmartBox::RenderNormalMode) +* P -- viewer pose, raw dwords +* N -- block_check calls seen since the last F +* BC did= gx= gy= esi= +* BR ret= -- the BoundingType returned for the last BC +* +* AUTO-DETACH: same fall-through + top-level qd recipe as the walk template. +* BEFORE USE: replace and . Use -Frames 2: the marker fires +* BEFORE a frame's checks, so frame 1's checks land between F 1 and F 2. + +.logopen +.sympath C:\Users\erikn\source\repos\acdream\refs +.symopt+ 0x40 +.reload /f acclient.exe +r $t0 = 0 +r $t9 = 0 +bp 00453aa0 "r $t0 = @$t0 + 1; .printf \"N %d\\n\", @$t9; r $t9 = 0; .printf \"F %d\\n\", @$t0; .printf \"P %08x %08x %08x %08x %08x %08x %08x %08x\\n\", poi(0081ef00+4), poi(0081ef00+0x3c), poi(0081ef00+0x40), poi(0081ef00+0x44), poi(0081ef00+8), poi(0081ef00+0xc), poi(0081ef00+0x10), poi(0081ef00+0x14); .if (@$t0 < 0n) { gc }" +bp 0054dc50 "r $t9 = @$t9 + 1; .printf \"BC did=%08x gx=%d gy=%d esi=%08x\\n\", poi(@esi+0x28), @ebx, @ebp, @esi; gc" +bp 005061e9 ".printf \"BR ret=%d\\n\", @eax; gc" +g +.echo ===DETACHING=== +qd +.logclose