unimsg provisional

examples/sijil.umsg

%unimsg 0 app/sijil/v1 · 1279 lines · 66681 bytes of text · 54698 bytes canonical · the raw file

Point at anything below — a sigil, a literal, a brace — and the card says what it is. Keyboard: tab through the document. Every explanation is also printed in full beneath the source.

%unimsg 0 app/sijil/v1

-- Sijil — an infinite-canvas note-taking application, described completely
-- enough to build a port or a clone from this document alone.
--
-- What is here: the domain model, every card kind and its fields, the
-- interaction surface, the persistence contract, the merge algebra, the
-- offline behaviour, the access model, and the reasoning behind each
-- decision that has one. A clone that keeps the shapes but discards the
-- reasons will rediscover the same bugs.
--
-- Two altitudes are mixed here deliberately, and marked where they change.
-- Most sections state *rules a port must satisfy*. The algorithms section
-- states *procedures it may transcribe*, with the constants, because prose
-- cannot reproduce them: an earlier draft called the ink engine "pressure and
-- velocity variable-width strokes" and treated that as a description. It is a
-- label, and it hid a fortnight of work.
--
-- What is genuinely not here: the stylesheet and DOM construction. Those are
-- the only parts a port to another toolkit replaces outright.

application @sijil {
  name      "Sijil"
  tagline   "Infinite-canvas note taking"
  version   "0.3.x"
  live-at   "https://takhzeen.ibrahim.ms/apps/sijil/"
  premise   "A board, not a list. Everything is a card on an unbounded plane,
             positioned by the person rather than ordered by the machine."

  footprint { modules 23, source-lines 8891, dependencies 0, build-step :none }

  no-build-step "Native ES modules, no bundler, no transpiler. Not minimalism
                 for its own sake: the app is served straight from a git
                 repository by its host, and a build step the deployed app
                 depends on has already broken it once — the deployment
                 silently fell back to browser storage with no sign-in, and a
                 query parameter in the URL was the only symptom."

  -- ===================================================================
  -- DOMAIN MODEL
  -- ===================================================================

  model {
    lawh "A board: the unit of storage, sharing and navigation. A lawh may
          contain a card that *is* another lawh, so boards nest arbitrarily
          deep. Every account has one home lawh, created server-side on first
          sign-in so two devices signing in at once land on the same record
          rather than each seeding their own. A sub-board's parent is verified
          on create — you may only nest under a board you can already edit, so
          a board cannot be smuggled into someone else's tree."

    identifiers "Prefix, underscore, eight base-36 characters, as in
                 n_4f2k8x1a. Client-minted for cards, server-minted for boards.
                 That asymmetry is why import runs in two passes."

    accents [ :violet, :cyan, :emerald, :amber, :rose, :blue, :slate ]

    document-doc "One JSON value per lawh. Readable on purpose — an op-log
                  would be opaque, would need a build step, and would grow
                  against the host's 1 MiB write ceiling."

    document [
      | field       type     purpose
      | :id         :text    "server-minted board id"
      | :v          :int     "document schema version, currently 1"
      | :title      :text    "board name"
      | :titleM     :int     "merge stamp for the title"
      | :layout     :symbol  "free or grid"
      | :layoutM    :int     "merge stamp for the layout"
      | :by         :text    "device id of the last writer"
      | :updatedAt  :int     "epoch milliseconds"
      | :nodes      :map     "card id to card"
      | :edges      :map     "edge id to connector"
      | :tomb       :map     "deleted card id to stamp"
      | :members    :seq     "sharing list, owner-maintained"
  ]
  }

  -- ===================================================================
  -- CARDS
  -- ===================================================================

  cards {
    doc "Nine kinds. Every card carries the common fields; the kinds table
         lists what each adds."

    common [
      | field    type      note
      | :type    :symbol   "one of the nine kinds"
      | :x       :number   "world coordinates, not screen"
      | :y       :number   "as above"
      | :w       :number   "width"
      | :h       :number   "height"
      | :color   :symbol   "an accent name"
      | :parent  :text     "containing frame, or null"
      | :z       :int      "stacking; containers sit at 0"
      | :m       :int      "merge stamp, assigned by diffing not at call sites"
  ]

    kinds [
      | kind      size        adds                        purpose
      | :note     "260x190"   "title, html"               "rich text"
      | :task     "250x200"   "title, items[{t,done}]"    "checklist with progress"
      | :frame    "420x320"   "title"                     "container; children travel with it"
      | :media    "280x210"   "title, blobId"             "image or video"
      | :ink      "200x160"   "title, strokes[]"          "freehand drawing"
      | :lawh     "132x124"   "title, boardId, count"     "a card that is another board"
      | :shape    "190x115"   "title, shape"              "outline with a label"
      | :contact  "290x250"   "title, fields{}, blobId"   "a person, often scanned"
      | :applet   "unstated"  "unstated"                  "animates but does not execute"
  ]

    lawh-card "Icon-sized rather than card-sized, because there is no content
               to give room to. Opening it navigates in. Deleting the card
               unlinks it: the board survives and stays reachable from the
               board list. Deleting a board is a separate, owner-only act."

    contact-fields [ :name, :title, :company, :email, :phone, :mobile, :website, :address ]

    contact-keeps-original "The photograph of the scanned card is kept, because
                            a scan is a guess and the original is the only
                            thing that can settle an argument with it."

    ink-storage "Flat array of x, y, pressure triples with size, colour and a
                 hue offset. The engine renders variable width from pressure
                 and velocity."

    marks "A card may carry an accent dot or an icon, chosen in the selection
           HUD."

    edges "Connectors between cards, made by dragging from one card's edge onto
           another, stored in their own map keyed by edge id."
  }

  -- ===================================================================
  -- INTERACTION
  -- ===================================================================

  interaction {
    canvas [
      | gesture        action
      | :drag-empty    "pan the viewport"
      | :wheel         "zoom"
      | :pinch         "zoom"
      | :long-press    "quick menu"
      | :marquee       "select several cards"
      | :group-key     "wrap the selection in a new container"
  ]

    card [
      | gesture         action
      | :drag           "move"
      | :drag-corner    "resize"
      | :drag-edge-onto "link two cards"
      | :drop-in-frame  "the card belongs to the container and travels with it"
      | :click-lawh     "navigate into that board"
      | :double-click   "edit inline"
  ]

    full-view "A note opens full-screen using the same builders as the card, so
               the full view *is* the note rather than a second editor that has
               to be kept in step with it."

    ink-capture "Press the pen key and draw directly onto the board; ink sticks
                 where it is put."

    layout-modes [ :free, :grid ]
    tidy "Rearranges the current lawh."

    navigation "Open a lawh card to go in; the breadcrumb walks parent ids back
                up; home returns to the account's home lawh; the last board is
                restored across devices."

    palette [
      "Search and commands", "Toggle theme", "View mode", "Lawh settings",
      "Tidy this lawh", "About Sijil", "Save a copy of everything",
      "Open a saved copy", "Change where boards are kept", "Sign out",
      "Reload Sijil"
    ]
  }

  -- ===================================================================
  -- ALGORITHMS
  -- ===================================================================

  -- These are stated as formulae and constants rather than as prose, because
  -- prose is not enough to reproduce them. An earlier draft of this document
  -- said "pressure and velocity variable-width strokes" and called that a
  -- description; it is a label. The constants below are the behaviour, and a
  -- port that guesses them produces ink that looks wrong in a way nobody can
  -- name.
  --
  -- Note the altitude difference: everything above is a rule the port must
  -- satisfy; this section is an algorithm it may transcribe. Both are
  -- legitimate, and mixing them without saying which is which is what made the
  -- earlier draft feel complete while omitting a fortnight of work.

  algorithms {

    ink {
      storage "Flat triples of x, y, pressure, so a busy board still serialises
               small. Rendering builds a closed outline rather than a stroked
               polyline, so width varies continuously and joins stay clean at
               any zoom."

      sample-admission "Reject a sample closer than 1.1 units to the previous
                        one — pointer jitter would otherwise become visible
                        texture."

      velocity "Exponentially smoothed: vel = vel * 0.72 + distance * 0.28."

      radius-formula [
        | quantity      formula                                    note
        | :speed-factor "1 - clamp(vel / 26, 0, 0.62)"             "fast is thin, slow is thick"
        | :has-pressure "pressure > 0 and pressure != 0.5"         "0.5 is the value a device reports when it has no sensor"
        | :force        "with pressure: 0.42 + pressure * 0.92"    "pressure drives width directly"
        | :force-alt    "without: 0.62 + speedFactor * 0.76"       "velocity substitutes for pressure"
        | :radius       "max(0.35, (size / 2) * force)"            "never vanishes entirely"
  ]

      position-smoothing "px = prev.x + (x - prev.x) * 0.62, and likewise for y.
                          Radius is smoothed separately and more gently:
                          r = prev.r + (r - prev.r) * 0.34."

      outline "For each point, take the direction from its neighbours,
               normalise, and offset by the radius along the perpendicular to
               produce a left and a right rail. The path is the left rail
               forward, the right rail reversed, closed."

      taper "The last 14% and first 10% of a stroke narrow to a point, so a pen
             lift reads as a lift:
             r *= clamp(min((n-1-i)/(n*0.14), i/(n*0.10), 1), 0.12, 1).
             Highlighter strokes skip this and stay flat."

      curve "Quadratic through midpoints: for each interior point, a quadratic
             control at the point itself ending at the midpoint of it and its
             successor. Cheap, and visually smooth enough."

      single-point "A stroke of one sample renders as a circle of its radius,
                    via two arc commands."
    }

    viewport {
      state "Three numbers: x, y translation and k scale. Applied as a single
             transform on the world layer — translate3d then scale — so the
             browser composites rather than relaying out."

      zoom-limits { minimum 0.08, maximum 6 }

      zoom-at-point "Zooming must keep the point under the cursor fixed:
                     f = newK / oldK
                     x = sx - (sx - x) * f
                     y = sy - (sy - y) * f
                     Anchoring on the viewport centre instead makes the board
                     slide out from under the pointer."

      wheel "With a modifier held, zoom by exp(-deltaY * 0.01) at the cursor.
             Without, pan by subtracting the deltas. The handler is registered
             as non-passive because it must prevent the page's own scroll."

      fit "Zoom and centre on the bounding box of the given cards, or of all of
           them; an empty board resets to the viewport centre at scale 1."
    }

    layout {
      modes [
        | mode       behaviour
        | :free      "a card sits exactly where it was put — the point of a canvas"
        | :autosnap  "cards pack into columns, shortest first, no gaps"
  ]

      constants { grid-step 20, gutter 24, row-width 1160 }

      mode-belongs-to-the-lawh "It is part of what that board *is*, and everyone
                                who opens it should find it as it was left."

      positions-do-not "The column count comes from the width of the window in
                        use, so two devices pack the same board differently and
                        neither is wrong. Autosnap coordinates are recomputed
                        locally on every render and never synced. What *is*
                        shared is the order, and that is what a drag changes."

      column-count [
        | quantity   formula                                        why
        | :usable    "max(col, width - pad * 2)"                    "the space actually available"
        | :ideal     "floor((usable + gutter) / (col + gutter))"    "how many preferred-width columns fit"
        | :columns   "max(1, min(ideal, cardCount))"                "never more columns than cards"
        | :colWidth  "(usable - gutter * (columns - 1)) / columns"  "columns share the whole width"
  ]

      why-both-halves "Fixing cards at their preferred width left the board a
                       narrow block with wide empty margins — space, on a board
                       whose whole purpose is not to have any. Capping the
                       count at the number of cards is what stops three cards on
                       a wide screen using three of eight possible columns and
                       calling the other five nothing."

      contained-cards-are-left-alone "Cards inside a container belong to the
                                      frame and travel with it; lifting them
                                      into the top-level flow would quietly
                                      dismantle a grouping someone made on
                                      purpose."
    }

    stacking "Containers sort before ordinary cards, then by the z field, so a
              frame never paints over its own children."
  }

  -- ===================================================================
  -- PERSISTENCE
  -- ===================================================================

  persistence {
    seam "One module is the entire backend integration. Feature code never
          calls the network or browser storage directly — if it did, adding the
          second backend would touch every file."

    interface     [ :load, :save, :putBlob, :blobURL, :me, :share ]
    also-provides [ :list, :home, :create, :reparent, :deleteBoard, :warm, :isSaved ]

    adapters [
      | name       storage           identity        nesting  sharing
      | :local     "browser"         :none           false    false
      | :takhzeen  "server account"  "email, OAuth"  true     true
  ]

    adapter-chosen :at-runtime

    adapter-selection "The page's own URL decides: a path of /apps/{slug}/ or an
                       apps subdomain means a backend is present, anything else
                       is local; an override variable forces either. This
                       replaced a build step that rewrote an import statement.
                       When the host began serving the repository as-is that
                       step stopped running, and the deployed app silently used
                       browser storage."

    save-debounced "Saves are debounced and must be flushed before navigating
                    away, or the write is discarded. Omitting the flush made
                    every lawh open mint a new board."

    undo "Snapshot-based. Restored cards are restamped — without that, a
          tombstone another replica still carries outranks the restored card
          and deletes it again on the next sync."
  }

  -- ===================================================================
  -- MERGE
  -- ===================================================================

  merge {
    doc "A deliberately small CRDT: a last-write-wins map keyed by card id,
         plus tombstones. Merge is commutative, associative and idempotent, so
         devices syncing in any order converge. Those three laws are asserted
         directly by tests — if one breaks, two devices hold different boards."

    laws [ :commutative, :associative, :idempotent ]

    clock "Hybrid logical. A stamp is the local wall time, but never less than
           the highest stamp already seen, plus one. Wall clocks disagree
           between devices; this keeps stamps monotonic per device and roughly
           ordered across devices. Ties break on device id — arbitrary, but
           identical everywhere, so all replicas agree."

    clock-fits-a-double "A stamp is milliseconds since the epoch, around
                         1.8 x 10^12, which is far inside the 2^53 a
                         double-backed integer holds exactly. This matters on
                         any runtime where integers are doubles — JavaScript,
                         and Dart compiled to it — and it is currently true by
                         accident rather than by statement.

                         A port that raises the resolution to microseconds is
                         still inside the range; nanoseconds are not, and
                         neither is packing a device id into the low bits to
                         make ties resolve arithmetically. Both are natural
                         things to do when reimplementing this, and both fail
                         silently, on web only, while every native test passes.
                         If a stamp stops being a millisecond count, say what
                         it is and check it against the target."

    stamping "Stamps are found by diffing each card against its last saved
              shape, not by stamping at call sites. Edits are written directly
              all over the application — a coordinate during a drag, markup
              from an editor — so any scheme relying on remembering to stamp
              would be wrong within a week."

    load-bearing [
      | rule                            if-dropped
      | "deletions write a tombstone"   "merge cannot tell deleted from not-yet-created, so everything deleted offline returns"
      | "undo restamps"                 "a surviving tombstone outranks the restored card and deletes it again"
      | "the viewport is never merged"  "where someone is looking would be forced onto their other devices"
  ]

    conflicts "Granularity is the whole card: two people editing the same card
               resolve to one winner. Nothing is discarded silently — the loser
               is kept as a copy beside the winner, offset and marked."

    rejected [ :yjs, :automerge ]

    why-rejected "They replace a readable document with an op-log, add a build
                  step to a project that has none, and grow history against the
                  1 MiB ceiling. What they buy is character-level merging of
                  concurrent text, which needs live multiplayer — and this
                  host's realtime applies the collection's list rule, so a
                  closed collection emits nothing. Paying that cost for a
                  capability the backend cannot deliver is the wrong trade.
                  Revisit if live co-editing ever lands."
  }

  -- ===================================================================
  -- OFFLINE
  -- ===================================================================

  offline {
    doc "A wrapper around the remote adapter, so neither the shell nor the
         document model knows anything about the network. Reads are cached,
         writes land locally first, and a board edited offline is reconciled on
         reconnect through the merge."

    rules [
      | rule                              reason
      | "connectivity judged by whether calls work"        "the browser's online flag reports the interface and says online behind a captive portal; its event only prods a retry"
      | "only network failures count as offline"           "a refusal such as cannot-read-this-board is a perfectly connected answer"
      | "reconcile writes the cache too"                   "skipping it left a reload straight after a sync showing the board without what the merge had just pulled in"
      | "save errors are swallowed while offline"          "an error per keystroke is noise, and the edit is safe locally"
  ]

    polling "Other devices' edits arrive by polling every 20 seconds while the
             tab is visible and idle — not a subscription, because the host's
             realtime applies the list rule and these collections are closed,
             so it would emit nothing. Safe to poll because the merge is
             idempotent: finding nothing costs one read."

    polling-takes-the-board-explicitly "The adapter's internal notion of the
                                        last document touched moves on an
                                        import or a background save, and
                                        polling that would refresh a board
                                        nobody is looking at while the visible
                                        one went stale."

    polling-writes-back-conditionally "Only when this device holds something
                                       the server does not, or every open tab
                                       takes turns saving the same board to
                                       each other."

    polling-skipped "Mid-gesture and mid-sentence, so a merge cannot pull a
                     card out from under the pointer."

    app-shell "A service worker caches the shell so the app starts with no
               network. Without it the data was local but the code was not, so
               use-on-this-device-only still needed a server. Network first,
               cache as fallback: deploys happen by pushing to the repository,
               and a cache-first worker would serve yesterday's modules to
               someone perfectly online."

    service-worker-trap "A plain fetch inside a worker still passes through the
                         browser's HTTP cache, so network-first silently became
                         HTTP-cache-first and served stale code. An explicit
                         no-cache on the worker's fetch is load-bearing."

    api-never-cached "A stale board read is worse than an honest failure."
  }

  -- ===================================================================
  -- ACCESS
  -- ===================================================================

  access {
    roles [
      | role      may
      | :owner    "everything, including sharing and deleting the board"
      | :edit     "change what the board holds, but not share or delete it"
      | :comment  "declared; currently behaves as view"
      | :view     "read"
  ]

    why-functions "The host's collection rules are per-collection, not
                   per-record: owner means only the creator so sharing is
                   impossible, auth means every signed-in user reads every
                   board, public means the internet does. None expresses
                   shared-with-these-three-people. So every collection is
                   closed and access runs through functions, which bypass rules
                   and can read a verified caller identity that cannot be
                   forged from function input."

    collections [
      | collection      rules    fields
      | :boards         :closed  "title, doc, owner_id, owner_name, updated_by, parent_id, is_home"
      | :board_members  :closed  "board, user_id, email, name, role"
      | :board_assets   :closed  "board, mime, name, blob"
  ]

    functions [
      | function       restricted-to  purpose
      | :board_home    :caller        "resolve or create the home lawh"
      | :board_list    :caller        "boards owned by or shared with the caller"
      | :board_get     :member        "read one board"
      | :board_save    :editor        "write one board"
      | :board_share   :owner         "membership changes"
      | :board_delete  :owner         "delete one board"
      | :asset_put     :editor        "store media"
      | :asset_get     :member        "fetch media"
  ]

    constraints [
      | rule                            reason
      | "sharing is owner-only"         "otherwise an edit member could widen access"
      | "deletion is owner-only"        "an edit member may change what a board holds but not destroy it"
      | "deletion refuses a home lawh"  "it would strand the account it belongs to"
      | "deletion is shallow"           "recursion is left to the client, so a deep tree cannot exhaust the function deadline halfway with no way to report where it stopped"
      | "membership is keyed by email"  "so a person can be invited before they have ever signed in; the invitation waits, including for a provider that links on verified email"
  ]

    filter-precedence-trap "The membership clause must be written
                            board = X && (user_id = U || email = E). The
                            parentheses are load-bearing: without them it binds
                            as (board = X && user_id = U) || email = E, which
                            matches the caller's membership of *any* board and
                            hands them boards they were never invited to."

    verified-by "24 end-to-end checks covering ownership, sharing, role
                 enforcement, revocation, direct-access bypass attempts and
                 media gating."
  }

  -- ===================================================================
  -- TRANSFER
  -- ===================================================================

  transfer {
    doc "One job — read every board and its media out, write them back in
         somewhere else — which covers three: a backup, moving work from a
         device into an account, and moving between servers. There is no
         separate migration tool because there does not need to be."

    two-pass "Board ids are minted by the server, so every one changes on the
              way in. Create every board first to learn its new id, then write
              the documents with references remapped."

    remap [
      | reference  held-by       if-missed
      | :boardId   "lawh card"   "cards that open nothing"
      | :blobId    "media card"  "pictures that never load"
  ]

    silent-failure "Both failures are silent, because both remain valid ids
                    that simply do not exist on this server."

    quiet-by-design "Boards made before signing in follow the person in
                     automatically, once, with a toast as the only sign.
                     Dropping a saved copy on the board just opens it — the
                     file is sniffed, so there is no import screen to find. The
                     palette offers saving and opening a copy for anyone who
                     goes looking, with no jargon and no format talk."

    sharing-travels "A membership is an email, a name and a role with no
                     server-specific id, so it can be restored elsewhere.
                     Carried only for boards you own, and restored only when
                     asked: re-inviting people grants access on a server they
                     may know nothing about, so it is never a silent effect of
                     opening a file."
  }

  -- ===================================================================
  -- INTERFACE RULES
  -- ===================================================================

  interface {
    two-menus "The mark in the top bar opens *app* things — search, theme,
               about. The account chip opens *your* things — where boards are
               kept, saving a copy, changing mode, signing out. Keeping that
               split is why both menus stay short, and it answers the two
               questions people actually arrive with."

    rules [
      | rule                                      reason
      | "signing out is a menu item, never the chip"  "tapping your own picture to see who you are should not end your session"
      | "local mode shows a device chip"              "otherwise saving a copy is only reachable from a palette needing a keyboard, which on a phone is the same as not existing"
      | "menus listen on the capture phase"           "so a click on the trigger closes the open menu instead of reopening it underneath"
      | "dialogs dismiss with a mark top right"       "never a button along the bottom; escape and a backdrop click also work"
      | "switches are toggles, not tickboxes"         "for settings; a task card's checklist is a to-do rather than a setting, so it keeps tickboxes"
      | "theme is applied in the head, inline"        "applying it after the stylesheet paints gives a light-mode user a dark flash and then watches every transitioned element animate, which reads as broken chrome rather than a fade"
      | "the hidden attribute needs an important"     "it loses to any author display rule, and without the override overlays render over the board and the share sheet eats every click"
      | "entrance animates scale, not transform"      "transform carries each card's world position, so a keyframe on it yanks every card to the origin"
  ]
  }

  -- ===================================================================
  -- CONSTRAINTS
  -- ===================================================================

  constraints {
    write-ceiling { bytes 1048576, applies-to "one board document, and one media upload" }

    media "Downscaled client-side through a quality ladder of 0.85, 0.7, 0.55,
           0.4. Video works but is capped by the same ceiling, so clips must be
           a few seconds; anything larger is refused with a clear message
           rather than failing silently."

    same-origin-only "An app served by this host runs under a connect-src of
                      self, so it can only ever talk to the origin it came
                      from. Pick-a-server therefore means this server or none —
                      an arbitrary address would be blocked by the browser
                      before the request left. This would widen if the app were
                      packaged natively, where the policy does not apply."

    provider-avatar "It reaches the client only in the sign-in callback
                     fragment. The host stores the name but not the picture, so
                     a token refresh never returns it; it must be captured then
                     or it is gone for good."
  }

  -- ===================================================================
  -- STATE
  -- ===================================================================

  state {
    working [
      "sign-in by password and by provider, with the provider's avatar",
      "home lawh resume across devices",
      "nested lawhs with back and home navigation",
      "sharing with view, comment and edit roles, enforced server-side",
      "card marks", "media upload with client-side downscaling", "ink",
      "containers", "connectors", "command palette", "undo",
      "offline use with reconciliation", "backup and transfer between servers"
    ]

    not-done [
      | feature            status
      | :live-multiplayer  "blocked — the host's realtime applies the list rule, so closed collections emit nothing; a function-authorised subscription would unblock it"
      | :comments          "the role exists but behaves as view"
      | :workflows         "animate but do not execute"
      | :applets           "designed, not built"
  ]
  }

  -- ===================================================================
  -- CONFORMANCE
  -- ===================================================================

  -- The point of this section is to make "derived from this document" a claim
  -- a machine settles rather than a claim a person asserts. Everything below
  -- is a pure function: two documents in and one out, a caller and an action
  -- and an outcome, samples in and radii out. No browser, no server, no board.
  --
  -- An implementation conforms when it satisfies every vector here. It may be
  -- written in any language, by any means, sharing no code with the original —
  -- exactly as three independent implementations of unimsg itself were
  -- verified against a table of vectors carried in its specification.
  --
  -- The suite is deliberately small and load-bearing rather than broad. Each
  -- vector below corresponds to a failure that has actually happened or that
  -- would be silent if it did.

  conformance {

    claim "An implementation is derived from this document if it satisfies
           every vector in this section. Nothing else is required, and passing
           by a different internal design is not merely permitted but expected."

    claims-name-their-platform "A conformance claim states where the vectors
                                were run. An implementation may claim as many
                                platforms as it likes and may not claim none.

                                This is not a testing mandate — the
                                specification has no business dictating how
                                anyone works — but `all vectors pass` and `all
                                vectors pass on Flutter web` are different
                                statements, and only the second invites the
                                question that matters. A sibling project's
                                implementation passed every vector natively and
                                could not encode a floating-point number in a
                                browser, which was its own stated target."

    drift "This is also the only defence against the document going stale.
           Run the suite in the build: when the implementation stops satisfying
           it, the divergence surfaces immediately rather than silently, and
           the document stops being confidently wrong."

    -- ---------------------------------------------------------------
    -- MERGE — the three laws plus the cases each protects
    -- ---------------------------------------------------------------

    merge {
      notation "A card is written id/stamp, optionally with a field. A
                tombstone is written id@stamp. Merging is written a+b."

      laws [
        | law            statement                        vector
        | :commutative   "a+b equals b+a"                 :m-001
        | :associative   "(a+b)+c equals a+(b+c)"         :m-002
        | :idempotent    "(a+b)+b equals a+b"             :m-003
  ]

      vectors [
        | id      a                          b                        expect                                    guards
        | :m-001  "n1/10, n2/20"             "n2/30 x=99, n3/15"      "n1, n2 x=99, n3 — same either order"     "order of sync changing the board"
        | :m-002  "n1/10"                    "n1/30 x=3, n2/11"       "with c=n1/20 x=2, n3/40: n1 x=3 both pairings"  "three devices diverging on pairing"
        | :m-003  "n1/10"                    "n1/20 x=5, n2/12"       "merging b twice more changes nothing"    "repeated polls mutating the board"
        | :m-004  "tomb n1@50"               "n1/10"                  "n1 absent, tomb n1@50 carried"           "a card deleted offline coming back"
        | :m-005  "tomb n1@50"               "n1/80 x=7"              "n1 present, x=7"                         "a delete outranking a later edit"
        | :m-006  "tomb n1@50, n2@10"        "tomb n1@20, n3@70"      "tomb n1@50, n2@10, n3@70"                "tombstones regressing to older stamps"
        | :m-007  "n1/10 by=dev-a x=1"       "n1/10 by=dev-b x=2"     "identical result either order"           "a tie resolving differently per device"
        | :m-008  "n1/10 html=mine"          "n1/20 by=dev-b html=theirs"  "keeps theirs, reports lost=mine"    "a losing edit vanishing silently"
  ]

      tie-break "Equal stamps resolve on device id. Arbitrary, but identical
                 everywhere, so every replica agrees — which is the only
                 property a tie-break needs."

      conflict-requires-a-base "A conflict is a card *both* sides changed since
                                they last agreed, which cannot be judged from
                                the two versions alone. The base carries the
                                stamp each card held when this replica and the
                                server were last in step. One side moved off
                                it: take that one, nothing is in dispute. Both
                                moved: a genuine clash."

      self-conflict-vector [
        | id      local                    server                   expect                            guards
        | :m-009  "n1/20 html=typed-now"   "n1/10 html=last-saved"  "no conflict; local simply ahead" "a device forking against its own unsaved edit"
  ]

      why-m-009 "Without it, a poll landing in the gap between a keystroke and
                 the debounced save reported a clash against this device's own
                 work, and the board filled with (conflict) copies of one note
                 while nothing else was editing it."
    }

    -- ---------------------------------------------------------------
    -- ACCESS — the matrix, as outcomes rather than as prose
    -- ---------------------------------------------------------------

    access {
      note "Every row is a request that must succeed or must fail. The failures
            matter more than the successes: each is a way in that was tried."

      matrix [
        | id      caller             action                    expect
        | :a-001  :owner             "create a board"          :allowed
        | :a-002  :owner             "read own board"          :allowed
        | :a-003  :stranger          "read the board"          :refused
        | :a-004  :anonymous         "read the board"          :refused
        | :a-005  :stranger          "read the record directly"      :refused
        | :a-006  :stranger          "list the collection directly"  :refused
        | :a-007  :owner             "share the board"         :allowed
        | :a-008  :invited-editor    "read"                    :allowed
        | :a-009  :invited-viewer    "read"                    :allowed
        | :a-010  :invited-editor    "write"                   :allowed
        | :a-011  :invited-viewer    "write"                   :refused
        | :a-012  :invited-editor    "reshare"                 :refused
        | :a-013  :non-owner         "reshare"                 :refused
        | :a-014  :removed-member    "read"                    :refused
        | :a-015  :owner             "list boards"             "sees own"
        | :a-016  :member            "list boards"             "sees the shared board"
        | :a-017  :removed-member    "list boards"             "sees nothing"
        | :a-018  :owner             "obtain an upload ticket" :allowed
        | :a-019  :owner             "upload through the ticket"     :allowed
        | :a-020  :owner             "obtain a read ticket"    :allowed
        | :a-021  :owner             "read the asset back"     "byte for byte"
        | :a-022  :member            "read the asset"          :allowed
        | :a-023  :stranger          "read the asset"          :refused
        | :a-024  :stranger          "obtain any ticket"       :refused
        | :a-025  :stranger          "read the asset directly" :refused
        | :a-026  :anyone            "use a tampered ticket"   :refused
        | :a-027  :owner             "delete a home lawh"      :refused
        | :a-028  :invited-editor    "delete the board"        :refused
  ]

      the-filter-vector "The membership query must be
                         board = X && (user_id = U || email = E).
                         Test it by giving a caller membership of an unrelated
                         board and asking for this one: the answer must be
                         refused. Without the parentheses it is allowed, and
                         that is a data leak rather than a bug."
    }

    -- ---------------------------------------------------------------
    -- INK — the constants, as a sequence a port can check against
    -- ---------------------------------------------------------------

    ink {
      note "Size 6, samples along a straight line so only pressure and spacing
            vary. Radii are what the documented formulae produce; a port whose
            numbers differ has a different pen, whatever its code looks like."

      given { size 6, samples "x spaced 0, 10, 24, 40, 58 on one axis" }

      vectors [
        | i  pressure       x       y  radius
        | 0      0.30     0.0     0.0   2.088
        | 1      0.60     6.2     0.0   2.370
        | 2      0.90    17.2     0.0   2.837
        | 3      0.55    31.3     0.0   2.817
        | 4      0.20    47.9     0.0   2.475
  ]

      also-check [
        "a sample closer than 1.1 to its predecessor is dropped entirely",
        "a stroke of one sample renders as a circle of its radius",
        "the last 14% and first 10% taper, floored at 0.12 of full radius",
        "a highlighter stroke skips the taper and stays flat"
      ]
    }

    -- ---------------------------------------------------------------
    -- LAYOUT — packing is a pure function of cards and width
    -- ---------------------------------------------------------------

    layout {
      given { width 1200, column 268, gutter 24, pad 12 }

      vectors [
        | card  w    h    x       y     columns
        | :a    260  190   12.0   12.0        4
        | :b    260  120  312.0   12.0        4
        | :c    260  300  612.0   12.0        4
        | :d    260   80  912.0   12.0        4
  ]

      also-check [
        "four cards on a 1200 width produce four columns, not one per card",
        "a fifth card lands under the shortest column, leftmost breaking a tie",
        "only a stretchable kind is resized; the others keep their own width",
        "cards inside a container are not moved at all",
        "positions are recomputed per device and never synced; order is synced"
      ]
    }

    -- ---------------------------------------------------------------
    -- TRANSFER
    -- ---------------------------------------------------------------

    transfer {
      vectors [
        | id      given                                              expect
        | :t-001  "export two boards, one holding a lawh card"       "import remaps boardId to the new server-minted id"
        | :t-002  "export a board holding a media card"              "import remaps blobId and the picture loads"
        | :t-003  "import a file with memberships, without asking"   "nobody is invited"
        | :t-004  "import the same file with sharing requested"      "members are restored by email"
  ]

      note "t-001 and t-002 are the two silent failures: both ids stay valid
            and simply point at nothing on the new server, so a port that skips
            the remap looks like it worked."
    }

    -- ---------------------------------------------------------------
    -- RUNNING IT
    -- ---------------------------------------------------------------

    running {
      merge-and-layout-and-ink "Pure functions. No browser, no server, no
                                board — feed the inputs, compare the outputs."
      access "Needs a live instance and three accounts. The existing script
              registers them, runs the matrix and leaves them behind."
      in-the-build true
      why-in-the-build "A suite that is run when someone remembers is a suite
                        that reports drift after the drift has been shipped."
    }
  }

  -- ===================================================================
  -- PORTING
  -- ===================================================================

  porting {
    must-reproduce [
      "the document shape and every card kind's fields, or saved boards will not load",
      "the merge algebra — tombstones, the hybrid clock, restamping on undo — or devices diverge",
      "the two-pass import with both references remapped, or transfers fail silently",
      "owner-only sharing and deletion, and the parenthesised membership filter, or access control is wrong rather than merely different",
      "the adapter seam, or the second backend touches every file"
    ]

    absent-is-not-a-value "Every field that may be missing needs a stated
                           meaning, and this document does not yet give one
                           consistently — an audit not performed rather than an
                           audit passed. Where it is silent, an implementer must
                           choose, and two implementers choosing differently
                           both conform. Treat any unstated default as a
                           question for the author, not a decision to make
                           quietly."

    free-to-replace [
      "all presentation — stylesheet, DOM construction, animation",
      "the ink engine's curve fitting, provided stroke storage is unchanged",
      "the host, provided the eight functions and three collections have equivalents"
    ]

    what-actually-transfers "Measured, from an independent Flutter port of a
                             sibling project written from its specification.
                             Worth knowing before deciding how to write
                             anything you need reproduced faithfully."

    transfer-rates [
      | form-in-the-document                    outcome
      | "a table of unambiguous values"         "reproduced exactly, every value"
      | "a table whose cells are English"       "reproduced in part"
      | "a value competing with a toolkit default"  "the toolkit won"
      | "a prose description of behaviour"      "reinvented or absent"
  ]

    so "Anything that must come out the same goes in a table as values. A
        sentence describing behaviour is satisfied by whatever the reader
        understood it to mean, which is how two implementations pass the same
        suite and cannot read each other. Where a value competes with a
        framework default, say why it matters or expect to lose it."

    dart-and-flutter {
      note "Specific to the port being undertaken; harmless elsewhere."

      hazards [
        | hazard                                            what-happens
        | "ByteData.getUint64"                              "unsupported under dart2js; throws at run time, works natively"
        | "64-bit bitwise arithmetic"                       "silently yields zero on the web — (hi << 32) | lo gives 0"
        | "BigInt.from(a literal above 2^53)"               "refuses to compile for the web"
        | "int is 53-bit on the web and 64-bit natively"    "the same code is exact on one target and not the other"
  ]

      where-they-would-bite "Anywhere this document says :int and something
                             larger than a millisecond count ends up there, and
                             anywhere binary data is taken apart by hand rather
                             than passed through. The merge stamp is safe as
                             specified — see clock-fits-a-double — and would
                             stop being safe under an obvious optimisation."

      test-on-the-target "Compiling for the web is not running on it. A smoke
                          test that only confirms the code builds will pass
                          while every floating-point path throws, which is a
                          thing that has actually happened."
    }

    order [
      | step  build                          because
      | 1     "document model and store"     "everything else reads and writes it"
      | 2     "board, viewport, cards"       "the product is visible from here"
      | 3     "local adapter"                "usable without any backend"
      | 4     "merge, with its three laws tested"  "before a second device exists"
      | 5     "remote adapter and functions" "sharing and nesting need identity"
      | 6     "offline wrapper"              "it wraps the remote adapter, so it comes after"
      | 7     "transfer"                     "needs both adapters to be worth having"
  ]
  }

  -- ===================================================================
  -- THE TAKHZEEN WIRE CONTRACT
  -- ===================================================================

  -- Added to answer a deficiency report that found this document specified the
  -- application and not the connection: a port could build Sijil and could not
  -- talk to a server without inventing shapes. Every contract below was read
  -- out of the deployed function sources and the takhzeen server, which are
  -- authoritative over any prose — including over this section.
  --
  -- Two of the fifteen deficiencies are not answered here because the answer
  -- is that the thing does not exist. They are recorded as such rather than
  -- filled in, which is the more useful outcome.

  integration {
    boards-are-closed "Every rule on boards, board_members and board_assets is
                       `none`. There is no direct record access at all: the
                       eight functions are the entire surface, and a client
                       that tries the collection routes gets nothing."

    every-function-is-invoke-rule-auth "So an unauthenticated call fails before
                                        the body runs. The functions still
                                        check `takhzeen.auth()` themselves,
                                        because the rule protects the endpoint
                                        and the check protects the record."

    -- ---------------------------------------------------------------
    -- THE EIGHT FUNCTIONS
    -- ---------------------------------------------------------------

    functions [
      | name           sends                                          returns
      | :board_home    "nothing"                                      "id, title, created"
      | :board_list    "nothing"                                      "boards, an array of summaries"
      | :board_get     "id"                                           "id, title, doc, role, parentId, isHome, ownerName, members"
      | :board_save    "id?, title, doc, parentId?"                   "id, role, created, parentId"
      | :board_share   "id, members"                                  "the updated membership"
      | :board_delete  "id"                                           "id, deleted, members, assets — or alreadyGone"
      | :asset_put     "board, mime, name?"                           "id, mime, upload"
      | :asset_get     "id"                                           "mime, name, url, expires"
  ]

    board-summary "Each entry of board_list carries the board's id, its title,
                   the caller's role, and its parent — enough to draw the tree
                   without a second call."

    create-or-update "board_save does both, discriminated by `id`. Absent, it
                      creates and returns `created: true` with the caller as
                      owner. Present, it updates and requires the caller to be
                      owner or an `edit` member; `view` and `comment` are
                      refused."

    reparent-is-the-same-call "Sending `parentId` on an update moves the board.
                               The key's *presence* is what triggers a move, so
                               an update that omits it leaves the parent alone
                               and one that sends an empty value moves the board
                               to the top. A client that always sends every
                               field will reparent on every save."

    reparent-refusals [
      | condition                                    refusal
      | "the board is the home board"                "a home lawh cannot be moved"
      | "the new parent is the board itself"         "a lawh cannot be moved into itself"
      | "the new parent is inside the board's own subtree"  "the move would detach that subtree"
      | "the caller lacks edit on the new parent"    "you cannot add a board here"
  ]

    the-cycle-check "The server walks up from the proposed parent looking for
                     this board. A client need not repeat the walk, and must
                     handle the refusal — dragging a board onto its own
                     descendant is an ordinary gesture, not a malformed one."

    delete "Owner only, and the home board cannot be deleted. Deleting reports
            how many memberships and assets went with it. A second delete of
            the same board succeeds with `alreadyGone: true` rather than
            failing, so a retry after a lost response is safe."

    -- ---------------------------------------------------------------
    -- WHAT A DOCUMENT TRAVELS AS
    -- ---------------------------------------------------------------

    document-envelope {
      answer "A JSON object, in a `json` column named `doc`."

      not-unimsg "The deficiency report asked whether a board travels as
                  canonical unimsg text or as CBOR. It is neither. The board
                  document is JSON, and the format of this specification is not
                  the format of the application it specifies."

      round-trips-as-text "A takhzeen `json` field is stored as TEXT, so it
                           comes back from a record read as a string and the
                           functions parse it. A client sends an object and
                           receives an object; the string is internal to the
                           server and to the function."

      size "board_save refuses a document over roughly 900 000 bytes, held
            below the 1 MiB an invocation may carry. The refusal is by encoded
            size, so a document that grew by one image is refused whole."
    }

    -- ---------------------------------------------------------------
    -- CONCURRENCY: THE GAP
    -- ---------------------------------------------------------------

    concurrency {
      status :unresolved
      finding "There is no server-side revision, version, etag or
               compare-and-swap. Not in the collections, not in the functions,
               not anywhere. board_save writes what it is given."

      consequence "Two clients that both hold a board and both save will have
                   the second write win entirely. The offline merge this
                   document specifies runs in the *client*, against the copy it
                   last saw — and nothing on the server prevents a client that
                   never saw the other's work from overwriting it."

      why-it-has-not-bitten "Sijil's merge reconciles before saving, and a
                             single user with two devices usually serialises
                             naturally. The exposure is two clients writing the
                             same board within one save cycle."

      what-would-close-it "A revision column on boards, returned by board_get
                           and required by board_save, refused when stale. That
                           is a change to the collections and to two functions,
                           not to this document — recorded here so a port does
                           not assume the protection exists."

      what-a-port-must-do-meanwhile "Implement the client-side merge exactly as
                                     specified, and do not rely on the server
                                     to catch a lost update. It will not."
    }

    -- ---------------------------------------------------------------
    -- MEDIA
    -- ---------------------------------------------------------------

    assets {
      why-tickets "A function invocation may carry 1 MiB and would pay a base64
                   third. Instead the function authorises the transfer and
                   returns a short-lived URL the client uses directly, so a
                   file is bounded by the field's own ceiling."

      upload [
        | step  call                                    gives
        | 1     "asset_put with board, mime, name"      "id, mime, upload"
        | 2     "PUT or POST the bytes to `upload`"     "the file is stored"
  ]

      download [
        | step  call                    gives
        | 1     "asset_get with id"     "mime, name, url, expires"
        | 2     "GET `url`"             "the bytes"
  ]

      ticket-shape "The URL is /api/db/{slug}/files/t/{token}, where the token
                    is an opaque signed string naming one database, collection,
                    record, field and mode, with an expiry. It grants that one
                    file in that one direction and nothing else."

      lifetimes [
        | mode     seconds
        | :write   600
        | :read    900
  ]

      the-blob-id "The `id` returned by asset_put is the board_assets record
                   id, and it is what a board document should store. asset_get
                   takes that same id. There is no separate blob identifier —
                   a document holding anything else will resolve to nothing,
                   which is the failure the deficiency report anticipated."

      access "Both functions check the caller's role on the owning board before
              minting a ticket. A ticket cannot be obtained for a board the
              caller cannot reach, and an already-minted ticket is not revoked
              by losing access — it simply expires."
    }

    -- ---------------------------------------------------------------
    -- IDENTITY
    -- ---------------------------------------------------------------

    identity {
      login "POST /auth/login with email and password returns `token`,
             `expires`, and `record` — the record holding id, email, name,
             verified, created and updated."

      the-same-shape "refresh returns the same three keys. `me` returns the
                      record alone. logout returns nothing of interest."

      a-401 "means the session is over. Clear the token; do not retry."

      providers "GET /auth/oauth lists what this database has enabled. Each
                 entry carries the provider's name and its start URL. Do not
                 hard-code a provider: the list is per database."

      the-fragment [
        | parameter  present-when              carries
        | "token"    "the round trip succeeded"  "the session token"
        | "name"     "the provider supplied it"  "a display name"
        | "picture"  "the provider supplied it"  "an avatar URL"
        | "error"    "it failed or was cancelled"  "a message to show"
  ]

      read-the-fragment-once "name and picture arrive here and nowhere else —
                              a later refresh will not return the avatar. A
                              client that wants it must capture it on the
                              callback and keep it, then wipe the fragment so a
                              copied link carries no session."

      only-http-image-urls "The avatar goes into an img element. A picture
                            value that is not http or https must be discarded
                            rather than rendered."
    }

    -- ---------------------------------------------------------------
    -- DEPLOYMENT
    -- ---------------------------------------------------------------

    deployment {
      one-push "The `takhzeen/` directory in the repository is read on push and
                applied before the ref moves. The same commit deploys the site."

      layout "takhzeen/takhzeen.json, takhzeen/collections/<name>.json one per
              collection, and takhzeen/functions/<name>/ holding function.json
              and the source file."

      collection-file [
        | key                                          holds
        | "name"                                       "the collection's name"
        | "listRule, viewRule, createRule, updateRule, deleteRule"  "one of none, owner, auth, public"
        | "fields"                                     "an array of field objects"
  ]

      field-object [
        | key                  applies-to
        | "name"               "always"
        | "type"               "always — text, number, bool, json, file, relation, select, date, email, bytes"
        | "required"           "always"
        | "options, maxSelect" "select"
        | "relatedCollection"  "relation"
        | "maxSize"            "file"
  ]

      function-file [
        | key                holds
        | "name"             "must match the directory"
        | "description"      "shown in the dashboard"
        | "language"         "python"
        | "timeoutSeconds"   "15 for every Sijil function"
        | "invokeRule"       "auth for every Sijil function"
  ]

      apply-is-additive "Removing a file reports the difference and changes
                         nothing. Deliberate removal goes through the CLI with
                         -prune. A port that renames a collection has created a
                         second one."
    }

    -- ---------------------------------------------------------------
    -- ERRORS, PAGING AND LIMITS
    -- ---------------------------------------------------------------

    errors {
      status :partially-unresolved

      shape "A function that refuses returns `{\"error\": \"...\"}` with HTTP
             200. The message is prose written for a person."

      the-gap "There are no stable machine-readable codes. A client cannot
               reliably distinguish signed-out from refused from missing from
               transient, except by matching English text — which the
               deficiency report identified and which reading the source
               confirms rather than resolves."

      what-can-be-relied-on "Only two things. An HTTP 401 from any route means
                             the session ended. An `error` key present in a
                             function result means the call did not do what was
                             asked. Everything finer requires matching prose,
                             and a port should isolate that matching in one
                             place so it can be replaced when codes exist."

      the-deliberate-ambiguity "board_get answers `not found` both for a board
                                that does not exist and for one the caller may
                                not see, so a probe cannot enumerate board ids.
                                That is intentional and must not be 'fixed' by
                                a port into two distinguishable errors."
    }

    paging {
      record-routes "perPage defaults to 30 and is clamped to 200. A value
                     above 200 is silently reduced, so a client that asks for
                     1000 and reads what returns has truncated its own view."

      the-functions-do-not-page "board_list gathers up to 200 owned and 200
                                 shared boards and returns them in one array.
                                 An account past that ceiling is silently
                                 truncated, and no cursor is offered."

      status :bounded-not-paged
    }

    limits [
      | limit                          value
      | "function invocation body"     "1 MiB"
      | "board document"               "about 900 000 bytes, refused above"
      | "board_share members"          "bounded per call"
      | "record page"                  "30 by default, 200 maximum"
      | "write ticket"                 "600 seconds"
      | "read ticket"                  "900 seconds"
      | "repository"                   "256 MiB, never collected"
  ]

    -- ---------------------------------------------------------------

    what-remains-open [
      | id     item                                          why
      | :D05   "no server-side conditional write"            "the mechanism does not exist; a change to the system, not to this document"
      | :D13   "no stable error codes"                       "functions return prose; matching it is the only option today"
      | :D14   "board_list is bounded, not paged"            "no cursor exists; an account past 200 boards is truncated"
      | :L01   "the deployed takhzeen version"               "source may be ahead of or behind the running instance"
      | :L02   "which OAuth providers are enabled"           "per database, and only the live instance knows"
      | :L03   "public origin and redirect allowlist"        "operator configuration"
      | :L06   "the end-to-end access matrix"                "owner, editor, viewer, removed member, stranger and anonymous must be checked live"
  ]

    everything-else-is-answered "The remaining eight deficiencies — the function
                                shapes, create-or-update, reparent, the
                                document envelope, the ticket exchange, the
                                blob mapping, the sharing shapes, the identity
                                bodies, the OAuth fragment, and both
                                deployment schemas — are specified above, read
                                from the sources the report named."
  }
}

The canonical encoding

Produced by the reference encoder when this page was built. Decoding these bytes and printing them in the text form returns the document above, byte for byte — that round trip is the claim the whole format rests on.

a1 6b 61 70 70 6c 69 63 61 74 69 6f 6e da 00 01 11 d5 82 81 da 00 01 11
d6 65 73 69 6a 69 6c b6 64 6e 61 6d 65 65 53 69 6a 69 6c 65 63 61 72 64
73 a9 63 64 6f 63 78 60 4e 69 6e 65 20 6b 69 6e 64 73 2e 20 45 76 65 72
79 20 63 61 72 64 20 63 61 72 72 69 65 73 20 74 68 65 20 63 6f 6d 6d 6f
6e 20 66 69 65 6c 64 73 3b 20 74 68 65 20 6b 69 6e 64 73 20 74 61 62 6c
65 0a 20 20 20 20 20 20 20 20 20 6c 69 73 74 73 20 77 68 61 74 20 65 61
63 68 20 61 64 64 73 2e 65 65 64 67 65 73 78 82 43 6f 6e 6e 65 63 74 6f
72 73 20 62 65 74 77 65 65 6e 20 63 61 72 64 73 2c 20 6d 61 64 65 20 62
79 20 64 72 61 67 67 69 6e 67 20 66 72 6f 6d 20 6f 6e 65 20 63 61 72 64
27 73 20 65 64 67 65 20 6f 6e 74 6f 0a 20 20 20 20 20 20 20 20 20 20 20
61 6e 6f 74 68 65 72 2c 20 73 74 6f 72 65 64 20 69 6e 20 74 68 65 69 72
20 6f 77 6e 20 6d 61 70 20 6b 65 79 65 64 20 62 79 20 65 64 67 65 20 69
64 2e 65 6b 69 6e 64 73 89 a4 64 61 64 64 73 6b 74 69 74 6c 65 2c 20 68
74 6d 6c 64 6b 69 6e 64 da 00 01 11 d4 64 6e 6f 74 65 64 73 69 7a 65 67
32 36 30 78 31 39 30 67 70 75 72 70 6f 73 65 69 72 69 63 68 20 74 65 78
74 a4 64 61 64 64 73 76 74 69 74 6c 65 2c 20 69 74 65 6d 73 5b 7b 74 2c
64 6f 6e 65 7d 5d 64 6b 69 6e 64 da 00 01 11 d4 64 74 61 73 6b 64 73 69
7a 65 67 32 35 30 78 32 30 30 67 70 75 72 70 6f 73 65 77 63 68 65 63 6b
6c 69 73 74 20 77 69 74 68 20 70 72 6f 67 72 65 73 73 a4 64 61 64 64 73
65 74 69 74 6c 65 64 6b 69 6e 64 da 00 01 11 d4 65 66 72 61 6d 65 64 73
69 7a 65 67 34 32 30 78 33 32 30 67 70 75 72 70 6f 73 65 78 22 63 6f 6e
74 61 69 6e 65 72 3b 20 63 68 69 6c 64 72 65 6e 20 74 72 61 76 65 6c 20
77 69 74 68 20 69 74 a4 64 61 64 64 73 6d 74 69 74 6c 65 2c 20 62 6c 6f
62 49 64 64 6b 69 6e 64 da 00 01 11 d4 65 6d 65 64 69 61 64 73 69 7a 65
67 32 38 30 78 32 31 30 67 70 75 72 70 6f 73 65 6e 69 6d 61 67 65 20 6f
72 20 76 69 64 65 6f a4 64 61 64 64 73 70 74 69 74 6c 65 2c 20 73 74 72
6f 6b 65 73 5b 5d 64 6b 69 6e 64 da 00 01 11 d4 63 69 6e 6b 64 73 69 7a
65 67 32 30 30 78 31 36 30 67 70 75 72 70 6f 73 65 70 66 72 65 65 68 61
6e 64 20 64 72 61 77 69 6e 67 a4 64 61 64 64 73 75 74 69 74 6c 65 2c 20
62 6f 61 72 64 49 64 2c 20 63 6f 75 6e 74 64 6b 69 6e 64 da 00 01 11 d4
64 6c 61 77 68 64 73 69 7a 65 67 31 33 32 78 31 32 34 67 70 75 72 70 6f
73 65 78 1c 61 20 63 61 72 64 20 74 68 61 74 20 69 73 20 61 6e 6f 74 68
65 72 20 62 6f 61 72 64 a4 64 61 64 64 73 6c 74 69 74 6c 65 2c 20 73 68
61 70 65 64 6b 69 6e 64 da 00 01 11 d4 65 73 68 61 70 65 64 73 69 7a 65
67 31 39 30 78 31 31 35 67 70 75 72 70 6f 73 65 74 6f 75 74 6c 69 6e 65
20 77 69 74 68 20 61 20 6c 61 62 65 6c a4 64 61 64 64 73 77 74 69 74 6c
65 2c 20 66 69 65 6c 64 73 7b 7d 2c 20 62 6c 6f 62 49 64 64 6b 69 6e 64
da 00 01 11 d4 67 63 6f 6e 74 61 63 74 64 73 69 7a 65 67 32 39 30 78 32
35 30 67 70 75 72 70 6f 73 65 77 61 20 70 65 72 73 6f 6e 2c 20 6f 66 74
65 6e 20 73 63 61 6e 6e 65 64 a4 64 61 64 64 73 68 75 6e 73 74 61 74 65
64 64 6b 69 6e 64 da 00 01 11 d4 66 61 70 70 6c 65 74 64 73 69 7a 65 68
75 6e 73 74 61 74 65 64 67 70 75 72 70 6f 73 65 78 1d 61 6e 69 6d 61 74
65 73 20 62 75 74 20 64 6f 65 73 20 6e 6f 74 20 65 78 65 63 75 74 65 65
6d 61 72 6b 73 78 52 41 20 63 61 72 64 20 6d 61 79 20 63 61 72 72 79 20
61 6e 20 61 63 63 65 6e 74 20 64 6f 74 20 6f 72 20 61 6e 20 69 63 6f 6e
2c 20 63 68 6f 73 65 6e 20 69 6e 20 74 68 65 20 73 65 6c 65 63 74 69 6f
6e 0a 20 20 20 20 20 20 20 20 20 20 20 48 55 44 2e 66 63 6f 6d 6d 6f 6e
89 a3 64 6e 6f 74 65 75 6f 6e 65 20 6f 66 20 74 68 65 20 6e 69 6e 65 20
6b 69 6e 64 73 64 74 79 70 65 da 00 01 11 d4 66 73 79 6d 62 6f 6c 65 66
69 65 6c 64 da 00 01 11 d4 64 74 79 70 65 a3 64 6e 6f 74 65 78 1d 77 6f
72 6c 64 20 63 6f 6f 72 64 69 6e 61 74 65 73 2c 20 6e 6f 74 20 73 63 72
65 65 6e 64 74 79 70 65 da 00 01 11 d4 66 6e 75 6d 62 65 72 65 66 69 65
6c 64 da 00 01 11 d4 61 78 a3 64 6e 6f 74 65 68 61 73 20 61 62 6f 76 65
64 74 79 70 65 da 00 01 11 d4 66 6e 75 6d 62 65 72 65 66 69 65 6c 64 da
00 01 11 d4 61 79 a3 64 6e 6f 74 65 65 77 69 64 74 68 64 74 79 70 65 da
00 01 11 d4 66 6e 75 6d 62 65 72 65 66 69 65 6c 64 da 00 01 11 d4 61 77
a3 64 6e 6f 74 65 66 68 65 69 67 68 74 64 74 79 70 65 da 00 01 11 d4 66
6e 75 6d 62 65 72 65 66 69 65 6c 64 da 00 01 11 d4 61 68 a3 64 6e 6f 74
65 6e 61 6e 20 61 63 63 65 6e 74 20 6e 61 6d 65 64 74 79 70 65 da 00 01
11 d4 66 73 79 6d 62 6f 6c 65 66 69 65 6c 64 da 00 01 11 d4 65 63 6f 6c
6f 72 a3 64 6e 6f 74 65 78 19 63 6f 6e 74 61 69 6e 69 6e 67 20 66 72 61
6d 65 2c 20 6f 72 20 6e 75 6c 6c 64 74 79 70 65 da 00 01 11 d4 64 74 65
78 74 65 66 69 65 6c 64 da 00 01 11 d4 66 70 61 72 65 6e 74 a3 64 6e 6f
74 65 78 1d 73 74 61 63 6b 69 6e 67 3b 20 63 6f 6e 74 61 69 6e 65 72 73
20 73 69 74 20 61 74 20 30 64 74 79 70 65 da 00 01 11 d4 63 69 6e 74 65
66 69 65 6c 64 da 00 01 11 d4 61 7a a3 64 6e 6f 74 65 78 32 6d 65 72 67
65 20 73 74 61 6d 70 2c 20 61 73 73 69 67 6e 65 64 20 62 79 20 64 69 66
66 69 6e 67 20 6e 6f 74 20 61 74 20 63 61 6c 6c 20 73 69 74 65 73 64 74
79 70 65 da 00 01 11 d4 63 69 6e 74 65 66 69 65 6c 64 da 00 01 11 d4 61
6d 69 6c 61 77 68 2d 63 61 72 64 79 01 1f 49 63 6f 6e 2d 73 69 7a 65 64
20 72 61 74 68 65 72 20 74 68 61 6e 20 63 61 72 64 2d 73 69 7a 65 64 2c
20 62 65 63 61 75 73 65 20 74 68 65 72 65 20 69 73 20 6e 6f 20 63 6f 6e
74 65 6e 74 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 74 6f 20 67
69 76 65 20 72 6f 6f 6d 20 74 6f 2e 20 4f 70 65 6e 69 6e 67 20 69 74 20
6e 61 76 69 67 61 74 65 73 20 69 6e 2e 20 44 65 6c 65 74 69 6e 67 20 74
68 65 20 63 61 72 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 75
6e 6c 69 6e 6b 73 20 69 74 3a 20 74 68 65 20 62 6f 61 72 64 20 73 75 72
76 69 76 65 73 20 61 6e 64 20 73 74 61 79 73 20 72 65 61 63 68 61 62 6c
65 20 66 72 6f 6d 20 74 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 62 6f 61 72 64 20 6c 69 73 74 2e 20 44 65 6c 65 74 69 6e 67 20 61
20 62 6f 61 72 64 20 69 73 20 61 20 73 65 70 61 72 61 74 65 2c 20 6f 77
6e 65 72 2d 6f 6e 6c 79 20 61 63 74 2e 6b 69 6e 6b 2d 73 74 6f 72 61 67
65 78 a8 46 6c 61 74 20 61 72 72 61 79 20 6f 66 20 78 2c 20 79 2c 20 70
72 65 73 73 75 72 65 20 74 72 69 70 6c 65 73 20 77 69 74 68 20 73 69 7a
65 2c 20 63 6f 6c 6f 75 72 20 61 6e 64 20 61 0a 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 68 75 65 20 6f 66 66 73 65 74 2e 20 54 68 65
20 65 6e 67 69 6e 65 20 72 65 6e 64 65 72 73 20 76 61 72 69 61 62 6c 65
20 77 69 64 74 68 20 66 72 6f 6d 20 70 72 65 73 73 75 72 65 0a 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 61 6e 64 20 76 65 6c 6f 63 69
74 79 2e 6e 63 6f 6e 74 61 63 74 2d 66 69 65 6c 64 73 88 da 00 01 11 d4
64 6e 61 6d 65 da 00 01 11 d4 65 74 69 74 6c 65 da 00 01 11 d4 67 63 6f
6d 70 61 6e 79 da 00 01 11 d4 65 65 6d 61 69 6c da 00 01 11 d4 65 70 68
6f 6e 65 da 00 01 11 d4 66 6d 6f 62 69 6c 65 da 00 01 11 d4 67 77 65 62
73 69 74 65 da 00 01 11 d4 67 61 64 64 72 65 73 73 76 63 6f 6e 74 61 63
74 2d 6b 65 65 70 73 2d 6f 72 69 67 69 6e 61 6c 78 c5 54 68 65 20 70 68
6f 74 6f 67 72 61 70 68 20 6f 66 20 74 68 65 20 73 63 61 6e 6e 65 64 20
63 61 72 64 20 69 73 20 6b 65 70 74 2c 20 62 65 63 61 75 73 65 0a 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 61 20 73 63 61 6e 20 69 73 20 61 20 67 75 65 73 73 20 61 6e 64 20
74 68 65 20 6f 72 69 67 69 6e 61 6c 20 69 73 20 74 68 65 20 6f 6e 6c 79
0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 74 68 69 6e 67 20 74 68 61 74 20 63 61 6e 20 73 65 74 74
6c 65 20 61 6e 20 61 72 67 75 6d 65 6e 74 20 77 69 74 68 20 69 74 2e 65
6d 65 72 67 65 a9 63 64 6f 63 79 01 30 41 20 64 65 6c 69 62 65 72 61 74
65 6c 79 20 73 6d 61 6c 6c 20 43 52 44 54 3a 20 61 20 6c 61 73 74 2d 77
72 69 74 65 2d 77 69 6e 73 20 6d 61 70 20 6b 65 79 65 64 20 62 79 20 63
61 72 64 20 69 64 2c 0a 20 20 20 20 20 20 20 20 20 70 6c 75 73 20 74 6f
6d 62 73 74 6f 6e 65 73 2e 20 4d 65 72 67 65 20 69 73 20 63 6f 6d 6d 75
74 61 74 69 76 65 2c 20 61 73 73 6f 63 69 61 74 69 76 65 20 61 6e 64 20
69 64 65 6d 70 6f 74 65 6e 74 2c 20 73 6f 0a 20 20 20 20 20 20 20 20 20
64 65 76 69 63 65 73 20 73 79 6e 63 69 6e 67 20 69 6e 20 61 6e 79 20 6f
72 64 65 72 20 63 6f 6e 76 65 72 67 65 2e 20 54 68 6f 73 65 20 74 68 72
65 65 20 6c 61 77 73 20 61 72 65 20 61 73 73 65 72 74 65 64 0a 20 20 20
20 20 20 20 20 20 64 69 72 65 63 74 6c 79 20 62 79 20 74 65 73 74 73 20
e2 80 94 20 69 66 20 6f 6e 65 20 62 72 65 61 6b 73 2c 20 74 77 6f 20 64
65 76 69 63 65 73 20 68 6f 6c 64 20 64 69 66 66 65 72 65 6e 74 20 62 6f
61 72 64 73 2e 64 6c 61 77 73 83 da 00 01 11 d4 6b 63 6f 6d 6d 75 74 61
74 69 76 65 da 00 01 11 d4 6b 61 73 73 6f 63 69 61 74 69 76 65 da 00 01
11 d4 6a 69 64 65 6d 70 6f 74 65 6e 74 65 63 6c 6f 63 6b 79 01 62 48 79
62 72 69 64 20 6c 6f 67 69 63 61 6c 2e 20 41 20 73 74 61 6d 70 20 69 73
20 74 68 65 20 6c 6f 63 61 6c 20 77 61 6c 6c 20 74 69 6d 65 2c 20 62 75
74 20 6e 65 76 65 72 20 6c 65 73 73 20 74 68 61 6e 0a 20 20 20 20 20 20
20 20 20 20 20 74 68 65 20 68 69 67 68 65 73 74 20 73 74 61 6d 70 20 61
6c 72 65 61 64 79 20 73 65 65 6e 2c 20 70 6c 75 73 20 6f 6e 65 2e 20 57
61 6c 6c 20 63 6c 6f 63 6b 73 20 64 69 73 61 67 72 65 65 0a 20 20 20 20
20 20 20 20 20 20 20 62 65 74 77 65 65 6e 20 64 65 76 69 63 65 73 3b 20
74 68 69 73 20 6b 65 65 70 73 20 73 74 61 6d 70 73 20 6d 6f 6e 6f 74 6f
6e 69 63 20 70 65 72 20 64 65 76 69 63 65 20 61 6e 64 20 72 6f 75 67 68
6c 79 0a 20 20 20 20 20 20 20 20 20 20 20 6f 72 64 65 72 65 64 20 61 63
72 6f 73 73 20 64 65 76 69 63 65 73 2e 20 54 69 65 73 20 62 72 65 61 6b
20 6f 6e 20 64 65 76 69 63 65 20 69 64 20 e2 80 94 20 61 72 62 69 74 72
61 72 79 2c 20 62 75 74 0a 20 20 20 20 20 20 20 20 20 20 20 69 64 65 6e
74 69 63 61 6c 20 65 76 65 72 79 77 68 65 72 65 2c 20 73 6f 20 61 6c 6c
20 72 65 70 6c 69 63 61 73 20 61 67 72 65 65 2e 68 72 65 6a 65 63 74 65
64 82 da 00 01 11 d4 63 79 6a 73 da 00 01 11 d4 69 61 75 74 6f 6d 65 72
67 65 68 73 74 61 6d 70 69 6e 67 79 01 54 53 74 61 6d 70 73 20 61 72 65
20 66 6f 75 6e 64 20 62 79 20 64 69 66 66 69 6e 67 20 65 61 63 68 20 63
61 72 64 20 61 67 61 69 6e 73 74 20 69 74 73 20 6c 61 73 74 20 73 61 76
65 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 73 68 61 70 65 2c 20
6e 6f 74 20 62 79 20 73 74 61 6d 70 69 6e 67 20 61 74 20 63 61 6c 6c 20
73 69 74 65 73 2e 20 45 64 69 74 73 20 61 72 65 20 77 72 69 74 74 65 6e
20 64 69 72 65 63 74 6c 79 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20
61 6c 6c 20 6f 76 65 72 20 74 68 65 20 61 70 70 6c 69 63 61 74 69 6f 6e
20 e2 80 94 20 61 20 63 6f 6f 72 64 69 6e 61 74 65 20 64 75 72 69 6e 67
20 61 20 64 72 61 67 2c 20 6d 61 72 6b 75 70 0a 20 20 20 20 20 20 20 20
20 20 20 20 20 20 66 72 6f 6d 20 61 6e 20 65 64 69 74 6f 72 20 e2 80 94
20 73 6f 20 61 6e 79 20 73 63 68 65 6d 65 20 72 65 6c 79 69 6e 67 20 6f
6e 20 72 65 6d 65 6d 62 65 72 69 6e 67 20 74 6f 20 73 74 61 6d 70 0a 20
20 20 20 20 20 20 20 20 20 20 20 20 20 77 6f 75 6c 64 20 62 65 20 77 72
6f 6e 67 20 77 69 74 68 69 6e 20 61 20 77 65 65 6b 2e 69 63 6f 6e 66 6c
69 63 74 73 78 d8 47 72 61 6e 75 6c 61 72 69 74 79 20 69 73 20 74 68 65
20 77 68 6f 6c 65 20 63 61 72 64 3a 20 74 77 6f 20 70 65 6f 70 6c 65 20
65 64 69 74 69 6e 67 20 74 68 65 20 73 61 6d 65 20 63 61 72 64 0a 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 72 65 73 6f 6c 76 65 20 74 6f 20
6f 6e 65 20 77 69 6e 6e 65 72 2e 20 4e 6f 74 68 69 6e 67 20 69 73 20 64
69 73 63 61 72 64 65 64 20 73 69 6c 65 6e 74 6c 79 20 e2 80 94 20 74 68
65 20 6c 6f 73 65 72 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 69
73 20 6b 65 70 74 20 61 73 20 61 20 63 6f 70 79 20 62 65 73 69 64 65 20
74 68 65 20 77 69 6e 6e 65 72 2c 20 6f 66 66 73 65 74 20 61 6e 64 20 6d
61 72 6b 65 64 2e 6c 6c 6f 61 64 2d 62 65 61 72 69 6e 67 83 a2 64 72 75
6c 65 78 1b 64 65 6c 65 74 69 6f 6e 73 20 77 72 69 74 65 20 61 20 74 6f
6d 62 73 74 6f 6e 65 6a 69 66 2d 64 72 6f 70 70 65 64 78 55 6d 65 72 67
65 20 63 61 6e 6e 6f 74 20 74 65 6c 6c 20 64 65 6c 65 74 65 64 20 66 72
6f 6d 20 6e 6f 74 2d 79 65 74 2d 63 72 65 61 74 65 64 2c 20 73 6f 20 65
76 65 72 79 74 68 69 6e 67 20 64 65 6c 65 74 65 64 20 6f 66 66 6c 69 6e
65 20 72 65 74 75 72 6e 73 a2 64 72 75 6c 65 6d 75 6e 64 6f 20 72 65 73
74 61 6d 70 73 6a 69 66 2d 64 72 6f 70 70 65 64 78 45 61 20 73 75 72 76
69 76 69 6e 67 20 74 6f 6d 62 73 74 6f 6e 65 20 6f 75 74 72 61 6e 6b 73
20 74 68 65 20 72 65 73 74 6f 72 65 64 20 63 61 72 64 20 61 6e 64 20 64
65 6c 65 74 65 73 20 69 74 20 61 67 61 69 6e a2 64 72 75 6c 65 78 1c 74
68 65 20 76 69 65 77 70 6f 72 74 20 69 73 20 6e 65 76 65 72 20 6d 65 72
67 65 64 6a 69 66 2d 64 72 6f 70 70 65 64 78 41 77 68 65 72 65 20 73 6f
6d 65 6f 6e 65 20 69 73 20 6c 6f 6f 6b 69 6e 67 20 77 6f 75 6c 64 20 62
65 20 66 6f 72 63 65 64 20 6f 6e 74 6f 20 74 68 65 69 72 20 6f 74 68 65
72 20 64 65 76 69 63 65 73 6c 77 68 79 2d 72 65 6a 65 63 74 65 64 79 02
40 54 68 65 79 20 72 65 70 6c 61 63 65 20 61 20 72 65 61 64 61 62 6c 65
20 64 6f 63 75 6d 65 6e 74 20 77 69 74 68 20 61 6e 20 6f 70 2d 6c 6f 67
2c 20 61 64 64 20 61 20 62 75 69 6c 64 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 73 74 65 70 20 74 6f 20 61 20 70 72 6f 6a 65 63
74 20 74 68 61 74 20 68 61 73 20 6e 6f 6e 65 2c 20 61 6e 64 20 67 72 6f
77 20 68 69 73 74 6f 72 79 20 61 67 61 69 6e 73 74 20 74 68 65 0a 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 31 20 4d 69 42 20 63 65
69 6c 69 6e 67 2e 20 57 68 61 74 20 74 68 65 79 20 62 75 79 20 69 73 20
63 68 61 72 61 63 74 65 72 2d 6c 65 76 65 6c 20 6d 65 72 67 69 6e 67 20
6f 66 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 63 6f 6e
63 75 72 72 65 6e 74 20 74 65 78 74 2c 20 77 68 69 63 68 20 6e 65 65 64
73 20 6c 69 76 65 20 6d 75 6c 74 69 70 6c 61 79 65 72 20 e2 80 94 20 61
6e 64 20 74 68 69 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 68 6f 73 74 27 73 20 72 65 61 6c 74 69 6d 65 20 61 70 70 6c 69 65
73 20 74 68 65 20 63 6f 6c 6c 65 63 74 69 6f 6e 27 73 20 6c 69 73 74 20
72 75 6c 65 2c 20 73 6f 20 61 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 63 6c 6f 73 65 64 20 63 6f 6c 6c 65 63 74 69 6f 6e 20 65
6d 69 74 73 20 6e 6f 74 68 69 6e 67 2e 20 50 61 79 69 6e 67 20 74 68 61
74 20 63 6f 73 74 20 66 6f 72 20 61 0a 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 63 61 70 61 62 69 6c 69 74 79 20 74 68 65 20 62 61
63 6b 65 6e 64 20 63 61 6e 6e 6f 74 20 64 65 6c 69 76 65 72 20 69 73 20
74 68 65 20 77 72 6f 6e 67 20 74 72 61 64 65 2e 0a 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 52 65 76 69 73 69 74 20 69 66 20 6c 69
76 65 20 63 6f 2d 65 64 69 74 69 6e 67 20 65 76 65 72 20 6c 61 6e 64 73
2e 73 63 6c 6f 63 6b 2d 66 69 74 73 2d 61 2d 64 6f 75 62 6c 65 79 03 fd
41 20 73 74 61 6d 70 20 69 73 20 6d 69 6c 6c 69 73 65 63 6f 6e 64 73 20
73 69 6e 63 65 20 74 68 65 20 65 70 6f 63 68 2c 20 61 72 6f 75 6e 64 0a
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 31 2e 38 20 78 20 31 30 5e 31 32 2c 20 77 68 69 63 68 20 69 73 20 66
61 72 20 69 6e 73 69 64 65 20 74 68 65 20 32 5e 35 33 20 61 0a 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 64 6f
75 62 6c 65 2d 62 61 63 6b 65 64 20 69 6e 74 65 67 65 72 20 68 6f 6c 64
73 20 65 78 61 63 74 6c 79 2e 20 54 68 69 73 20 6d 61 74 74 65 72 73 20
6f 6e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 61 6e 79 20 72 75 6e 74 69 6d 65 20 77 68 65 72 65 20 69 6e
74 65 67 65 72 73 20 61 72 65 20 64 6f 75 62 6c 65 73 20 e2 80 94 20 4a
61 76 61 53 63 72 69 70 74 2c 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 61 6e 64 20 44 61 72 74 20 63 6f 6d
70 69 6c 65 64 20 74 6f 20 69 74 20 e2 80 94 20 61 6e 64 20 69 74 20 69
73 20 63 75 72 72 65 6e 74 6c 79 20 74 72 75 65 20 62 79 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 61 63 63
69 64 65 6e 74 20 72 61 74 68 65 72 20 74 68 61 6e 20 62 79 20 73 74 61
74 65 6d 65 6e 74 2e 0a 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 41 20 70 6f 72 74 20 74 68 61 74 20 72 61
69 73 65 73 20 74 68 65 20 72 65 73 6f 6c 75 74 69 6f 6e 20 74 6f 20 6d
69 63 72 6f 73 65 63 6f 6e 64 73 20 69 73 0a 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 73 74 69 6c 6c 20 69 6e
73 69 64 65 20 74 68 65 20 72 61 6e 67 65 3b 20 6e 61 6e 6f 73 65 63 6f
6e 64 73 20 61 72 65 20 6e 6f 74 2c 20 61 6e 64 0a 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 6e 65 69 74 68 65
72 20 69 73 20 70 61 63 6b 69 6e 67 20 61 20 64 65 76 69 63 65 20 69 64
20 69 6e 74 6f 20 74 68 65 20 6c 6f 77 20 62 69 74 73 20 74 6f 0a 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 6d
61 6b 65 20 74 69 65 73 20 72 65 73 6f 6c 76 65 20 61 72 69 74 68 6d 65
74 69 63 61 6c 6c 79 2e 20 42 6f 74 68 20 61 72 65 20 6e 61 74 75 72 61
6c 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 74 68 69 6e 67 73 20 74 6f 20 64 6f 20 77 68 65 6e 20 72 65 69
6d 70 6c 65 6d 65 6e 74 69 6e 67 20 74 68 69 73 2c 20 61 6e 64 20 62 6f
74 68 20 66 61 69 6c 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 73 69 6c 65 6e 74 6c 79 2c 20 6f 6e 20 77 65
62 20 6f 6e 6c 79 2c 20 77 68 69 6c 65 20 65 76 65 72 79 20 6e 61 74 69
76 65 20 74 65 73 74 20 70 61 73 73 65 73 2e 0a 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 49 66 20 61 20 73 74
61 6d 70 20 73 74 6f 70 73 20 62 65 69 6e 67 20 61 20 6d 69 6c 6c 69 73
65 63 6f 6e 64 20 63 6f 75 6e 74 2c 20 73 61 79 20 77 68 61 74 0a 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 69
74 20 69 73 20 61 6e 64 20 63 68 65 63 6b 20 69 74 20 61 67 61 69 6e 73
74 20 74 68 65 20 74 61 72 67 65 74 2e 65 6d 6f 64 65 6c a5 64 6c 61 77
68 79 02 05 41 20 62 6f 61 72 64 3a 20 74 68 65 20 75 6e 69 74 20 6f 66
20 73 74 6f 72 61 67 65 2c 20 73 68 61 72 69 6e 67 20 61 6e 64 20 6e 61
76 69 67 61 74 69 6f 6e 2e 20 41 20 6c 61 77 68 20 6d 61 79 0a 20 20 20
20 20 20 20 20 20 20 63 6f 6e 74 61 69 6e 20 61 20 63 61 72 64 20 74 68
61 74 20 2a 69 73 2a 20 61 6e 6f 74 68 65 72 20 6c 61 77 68 2c 20 73 6f
20 62 6f 61 72 64 73 20 6e 65 73 74 20 61 72 62 69 74 72 61 72 69 6c 79
0a 20 20 20 20 20 20 20 20 20 20 64 65 65 70 2e 20 45 76 65 72 79 20 61
63 63 6f 75 6e 74 20 68 61 73 20 6f 6e 65 20 68 6f 6d 65 20 6c 61 77 68
2c 20 63 72 65 61 74 65 64 20 73 65 72 76 65 72 2d 73 69 64 65 20 6f 6e
20 66 69 72 73 74 0a 20 20 20 20 20 20 20 20 20 20 73 69 67 6e 2d 69 6e
20 73 6f 20 74 77 6f 20 64 65 76 69 63 65 73 20 73 69 67 6e 69 6e 67 20
69 6e 20 61 74 20 6f 6e 63 65 20 6c 61 6e 64 20 6f 6e 20 74 68 65 20 73
61 6d 65 20 72 65 63 6f 72 64 0a 20 20 20 20 20 20 20 20 20 20 72 61 74
68 65 72 20 74 68 61 6e 20 65 61 63 68 20 73 65 65 64 69 6e 67 20 74 68
65 69 72 20 6f 77 6e 2e 20 41 20 73 75 62 2d 62 6f 61 72 64 27 73 20 70
61 72 65 6e 74 20 69 73 20 76 65 72 69 66 69 65 64 0a 20 20 20 20 20 20
20 20 20 20 6f 6e 20 63 72 65 61 74 65 20 e2 80 94 20 79 6f 75 20 6d 61
79 20 6f 6e 6c 79 20 6e 65 73 74 20 75 6e 64 65 72 20 61 20 62 6f 61 72
64 20 79 6f 75 20 63 61 6e 20 61 6c 72 65 61 64 79 20 65 64 69 74 2c 20
73 6f 0a 20 20 20 20 20 20 20 20 20 20 61 20 62 6f 61 72 64 20 63 61 6e
6e 6f 74 20 62 65 20 73 6d 75 67 67 6c 65 64 20 69 6e 74 6f 20 73 6f 6d
65 6f 6e 65 20 65 6c 73 65 27 73 20 74 72 65 65 2e 67 61 63 63 65 6e 74
73 87 da 00 01 11 d4 66 76 69 6f 6c 65 74 da 00 01 11 d4 64 63 79 61 6e
da 00 01 11 d4 67 65 6d 65 72 61 6c 64 da 00 01 11 d4 65 61 6d 62 65 72
da 00 01 11 d4 64 72 6f 73 65 da 00 01 11 d4 64 62 6c 75 65 da 00 01 11
d4 65 73 6c 61 74 65 68 64 6f 63 75 6d 65 6e 74 8c a3 64 74 79 70 65 da
00 01 11 d4 64 74 65 78 74 65 66 69 65 6c 64 da 00 01 11 d4 62 69 64 67
70 75 72 70 6f 73 65 76 73 65 72 76 65 72 2d 6d 69 6e 74 65 64 20 62 6f
61 72 64 20 69 64 a3 64 74 79 70 65 da 00 01 11 d4 63 69 6e 74 65 66 69
65 6c 64 da 00 01 11 d4 61 76 67 70 75 72 70 6f 73 65 78 24 64 6f 63 75
6d 65 6e 74 20 73 63 68 65 6d 61 20 76 65 72 73 69 6f 6e 2c 20 63 75 72
72 65 6e 74 6c 79 20 31 a3 64 74 79 70 65 da 00 01 11 d4 64 74 65 78 74
65 66 69 65 6c 64 da 00 01 11 d4 65 74 69 74 6c 65 67 70 75 72 70 6f 73
65 6a 62 6f 61 72 64 20 6e 61 6d 65 a3 64 74 79 70 65 da 00 01 11 d4 63
69 6e 74 65 66 69 65 6c 64 da 00 01 11 d4 66 74 69 74 6c 65 4d 67 70 75
72 70 6f 73 65 78 19 6d 65 72 67 65 20 73 74 61 6d 70 20 66 6f 72 20 74
68 65 20 74 69 74 6c 65 a3 64 74 79 70 65 da 00 01 11 d4 66 73 79 6d 62
6f 6c 65 66 69 65 6c 64 da 00 01 11 d4 66 6c 61 79 6f 75 74 67 70 75 72
70 6f 73 65 6c 66 72 65 65 20 6f 72 20 67 72 69 64 a3 64 74 79 70 65 da
00 01 11 d4 63 69 6e 74 65 66 69 65 6c 64 da 00 01 11 d4 67 6c 61 79 6f
75 74 4d 67 70 75 72 70 6f 73 65 78 1a 6d 65 72 67 65 20 73 74 61 6d 70
20 66 6f 72 20 74 68 65 20 6c 61 79 6f 75 74 a3 64 74 79 70 65 da 00 01
11 d4 64 74 65 78 74 65 66 69 65 6c 64 da 00 01 11 d4 62 62 79 67 70 75
72 70 6f 73 65 78 1c 64 65 76 69 63 65 20 69 64 20 6f 66 20 74 68 65 20
6c 61 73 74 20 77 72 69 74 65 72 a3 64 74 79 70 65 da 00 01 11 d4 63 69
6e 74 65 66 69 65 6c 64 da 00 01 11 d4 69 75 70 64 61 74 65 64 41 74 67
70 75 72 70 6f 73 65 72 65 70 6f 63 68 20 6d 69 6c 6c 69 73 65 63 6f 6e
64 73 a3 64 74 79 70 65 da 00 01 11 d4 63 6d 61 70 65 66 69 65 6c 64 da
00 01 11 d4 65 6e 6f 64 65 73 67 70 75 72 70 6f 73 65 6f 63 61 72 64 20
69 64 20 74 6f 20 63 61 72 64 a3 64 74 79 70 65 da 00 01 11 d4 63 6d 61
70 65 66 69 65 6c 64 da 00 01 11 d4 65 65 64 67 65 73 67 70 75 72 70 6f
73 65 74 65 64 67 65 20 69 64 20 74 6f 20 63 6f 6e 6e 65 63 74 6f 72 a3
64 74 79 70 65 da 00 01 11 d4 63 6d 61 70 65 66 69 65 6c 64 da 00 01 11
d4 64 74 6f 6d 62 67 70 75 72 70 6f 73 65 78 18 64 65 6c 65 74 65 64 20
63 61 72 64 20 69 64 20 74 6f 20 73 74 61 6d 70 a3 64 74 79 70 65 da 00
01 11 d4 63 73 65 71 65 66 69 65 6c 64 da 00 01 11 d4 67 6d 65 6d 62 65
72 73 67 70 75 72 70 6f 73 65 78 1e 73 68 61 72 69 6e 67 20 6c 69 73 74
2c 20 6f 77 6e 65 72 2d 6d 61 69 6e 74 61 69 6e 65 64 6b 69 64 65 6e 74
69 66 69 65 72 73 78 c5 50 72 65 66 69 78 2c 20 75 6e 64 65 72 73 63 6f
72 65 2c 20 65 69 67 68 74 20 62 61 73 65 2d 33 36 20 63 68 61 72 61 63
74 65 72 73 2c 20 61 73 20 69 6e 0a 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 6e 5f 34 66 32 6b 38 78 31 61 2e 20 43 6c 69 65 6e 74 2d
6d 69 6e 74 65 64 20 66 6f 72 20 63 61 72 64 73 2c 20 73 65 72 76 65 72
2d 6d 69 6e 74 65 64 20 66 6f 72 20 62 6f 61 72 64 73 2e 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 54 68 61 74 20 61 73 79 6d 6d 65
74 72 79 20 69 73 20 77 68 79 20 69 6d 70 6f 72 74 20 72 75 6e 73 20 69
6e 20 74 77 6f 20 70 61 73 73 65 73 2e 6c 64 6f 63 75 6d 65 6e 74 2d 64
6f 63 78 bf 4f 6e 65 20 4a 53 4f 4e 20 76 61 6c 75 65 20 70 65 72 20 6c
61 77 68 2e 20 52 65 61 64 61 62 6c 65 20 6f 6e 20 70 75 72 70 6f 73 65
20 e2 80 94 20 61 6e 20 6f 70 2d 6c 6f 67 0a 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 77 6f 75 6c 64 20 62 65 20 6f 70 61 71 75 65
2c 20 77 6f 75 6c 64 20 6e 65 65 64 20 61 20 62 75 69 6c 64 20 73 74 65
70 2c 20 61 6e 64 20 77 6f 75 6c 64 20 67 72 6f 77 0a 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 61 67 61 69 6e 73 74 20 74 68 65 20
68 6f 73 74 27 73 20 31 20 4d 69 42 20 77 72 69 74 65 20 63 65 69 6c 69
6e 67 2e 65 73 74 61 74 65 a2 67 77 6f 72 6b 69 6e 67 8d 78 3f 73 69 67
6e 2d 69 6e 20 62 79 20 70 61 73 73 77 6f 72 64 20 61 6e 64 20 62 79 20
70 72 6f 76 69 64 65 72 2c 20 77 69 74 68 20 74 68 65 20 70 72 6f 76 69
64 65 72 27 73 20 61 76 61 74 61 72 78 1f 68 6f 6d 65 20 6c 61 77 68 20
72 65 73 75 6d 65 20 61 63 72 6f 73 73 20 64 65 76 69 63 65 73 78 2a 6e
65 73 74 65 64 20 6c 61 77 68 73 20 77 69 74 68 20 62 61 63 6b 20 61 6e
64 20 68 6f 6d 65 20 6e 61 76 69 67 61 74 69 6f 6e 78 3f 73 68 61 72 69
6e 67 20 77 69 74 68 20 76 69 65 77 2c 20 63 6f 6d 6d 65 6e 74 20 61 6e
64 20 65 64 69 74 20 72 6f 6c 65 73 2c 20 65 6e 66 6f 72 63 65 64 20 73
65 72 76 65 72 2d 73 69 64 65 6a 63 61 72 64 20 6d 61 72 6b 73 78 29 6d
65 64 69 61 20 75 70 6c 6f 61 64 20 77 69 74 68 20 63 6c 69 65 6e 74 2d
73 69 64 65 20 64 6f 77 6e 73 63 61 6c 69 6e 67 63 69 6e 6b 6a 63 6f 6e
74 61 69 6e 65 72 73 6a 63 6f 6e 6e 65 63 74 6f 72 73 6f 63 6f 6d 6d 61
6e 64 20 70 61 6c 65 74 74 65 64 75 6e 64 6f 78 1f 6f 66 66 6c 69 6e 65
20 75 73 65 20 77 69 74 68 20 72 65 63 6f 6e 63 69 6c 69 61 74 69 6f 6e
78 23 62 61 63 6b 75 70 20 61 6e 64 20 74 72 61 6e 73 66 65 72 20 62 65
74 77 65 65 6e 20 73 65 72 76 65 72 73 68 6e 6f 74 2d 64 6f 6e 65 84 a2
66 73 74 61 74 75 73 78 8e 62 6c 6f 63 6b 65 64 20 e2 80 94 20 74 68 65
20 68 6f 73 74 27 73 20 72 65 61 6c 74 69 6d 65 20 61 70 70 6c 69 65 73
20 74 68 65 20 6c 69 73 74 20 72 75 6c 65 2c 20 73 6f 20 63 6c 6f 73 65
64 20 63 6f 6c 6c 65 63 74 69 6f 6e 73 20 65 6d 69 74 20 6e 6f 74 68 69
6e 67 3b 20 61 20 66 75 6e 63 74 69 6f 6e 2d 61 75 74 68 6f 72 69 73 65
64 20 73 75 62 73 63 72 69 70 74 69 6f 6e 20 77 6f 75 6c 64 20 75 6e 62
6c 6f 63 6b 20 69 74 67 66 65 61 74 75 72 65 da 00 01 11 d4 70 6c 69 76
65 2d 6d 75 6c 74 69 70 6c 61 79 65 72 a2 66 73 74 61 74 75 73 78 23 74
68 65 20 72 6f 6c 65 20 65 78 69 73 74 73 20 62 75 74 20 62 65 68 61 76
65 73 20 61 73 20 76 69 65 77 67 66 65 61 74 75 72 65 da 00 01 11 d4 68
63 6f 6d 6d 65 6e 74 73 a2 66 73 74 61 74 75 73 78 1a 61 6e 69 6d 61 74
65 20 62 75 74 20 64 6f 20 6e 6f 74 20 65 78 65 63 75 74 65 67 66 65 61
74 75 72 65 da 00 01 11 d4 69 77 6f 72 6b 66 6c 6f 77 73 a2 66 73 74 61
74 75 73 73 64 65 73 69 67 6e 65 64 2c 20 6e 6f 74 20 62 75 69 6c 74 67
66 65 61 74 75 72 65 da 00 01 11 d4 67 61 70 70 6c 65 74 73 66 61 63 63
65 73 73 a7 65 72 6f 6c 65 73 84 a2 63 6d 61 79 78 34 65 76 65 72 79 74
68 69 6e 67 2c 20 69 6e 63 6c 75 64 69 6e 67 20 73 68 61 72 69 6e 67 20
61 6e 64 20 64 65 6c 65 74 69 6e 67 20 74 68 65 20 62 6f 61 72 64 64 72
6f 6c 65 da 00 01 11 d4 65 6f 77 6e 65 72 a2 63 6d 61 79 78 37 63 68 61
6e 67 65 20 77 68 61 74 20 74 68 65 20 62 6f 61 72 64 20 68 6f 6c 64 73
2c 20 62 75 74 20 6e 6f 74 20 73 68 61 72 65 20 6f 72 20 64 65 6c 65 74
65 20 69 74 64 72 6f 6c 65 da 00 01 11 d4 64 65 64 69 74 a2 63 6d 61 79
78 23 64 65 63 6c 61 72 65 64 3b 20 63 75 72 72 65 6e 74 6c 79 20 62 65
68 61 76 65 73 20 61 73 20 76 69 65 77 64 72 6f 6c 65 da 00 01 11 d4 67
63 6f 6d 6d 65 6e 74 a2 63 6d 61 79 64 72 65 61 64 64 72 6f 6c 65 da 00
01 11 d4 64 76 69 65 77 69 66 75 6e 63 74 69 6f 6e 73 88 a3 67 70 75 72
70 6f 73 65 78 1f 72 65 73 6f 6c 76 65 20 6f 72 20 63 72 65 61 74 65 20
74 68 65 20 68 6f 6d 65 20 6c 61 77 68 68 66 75 6e 63 74 69 6f 6e da 00
01 11 d4 6a 62 6f 61 72 64 5f 68 6f 6d 65 6d 72 65 73 74 72 69 63 74 65
64 2d 74 6f da 00 01 11 d4 66 63 61 6c 6c 65 72 a3 67 70 75 72 70 6f 73
65 78 29 62 6f 61 72 64 73 20 6f 77 6e 65 64 20 62 79 20 6f 72 20 73 68
61 72 65 64 20 77 69 74 68 20 74 68 65 20 63 61 6c 6c 65 72 68 66 75 6e
63 74 69 6f 6e da 00 01 11 d4 6a 62 6f 61 72 64 5f 6c 69 73 74 6d 72 65
73 74 72 69 63 74 65 64 2d 74 6f da 00 01 11 d4 66 63 61 6c 6c 65 72 a3
67 70 75 72 70 6f 73 65 6e 72 65 61 64 20 6f 6e 65 20 62 6f 61 72 64 68
66 75 6e 63 74 69 6f 6e da 00 01 11 d4 69 62 6f 61 72 64 5f 67 65 74 6d
72 65 73 74 72 69 63 74 65 64 2d 74 6f da 00 01 11 d4 66 6d 65 6d 62 65
72 a3 67 70 75 72 70 6f 73 65 6f 77 72 69 74 65 20 6f 6e 65 20 62 6f 61
72 64 68 66 75 6e 63 74 69 6f 6e da 00 01 11 d4 6a 62 6f 61 72 64 5f 73
61 76 65 6d 72 65 73 74 72 69 63 74 65 64 2d 74 6f da 00 01 11 d4 66 65
64 69 74 6f 72 a3 67 70 75 72 70 6f 73 65 72 6d 65 6d 62 65 72 73 68 69
70 20 63 68 61 6e 67 65 73 68 66 75 6e 63 74 69 6f 6e da 00 01 11 d4 6b
62 6f 61 72 64 5f 73 68 61 72 65 6d 72 65 73 74 72 69 63 74 65 64 2d 74
6f da 00 01 11 d4 65 6f 77 6e 65 72 a3 67 70 75 72 70 6f 73 65 70 64 65
6c 65 74 65 20 6f 6e 65 20 62 6f 61 72 64 68 66 75 6e 63 74 69 6f 6e da
00 01 11 d4 6c 62 6f 61 72 64 5f 64 65 6c 65 74 65 6d 72 65 73 74 72 69
63 74 65 64 2d 74 6f da 00 01 11 d4 65 6f 77 6e 65 72 a3 67 70 75 72 70
6f 73 65 6b 73 74 6f 72 65 20 6d 65 64 69 61 68 66 75 6e 63 74 69 6f 6e
da 00 01 11 d4 69 61 73 73 65 74 5f 70 75 74 6d 72 65 73 74 72 69 63 74
65 64 2d 74 6f da 00 01 11 d4 66 65 64 69 74 6f 72 a3 67 70 75 72 70 6f
73 65 6b 66 65 74 63 68 20 6d 65 64 69 61 68 66 75 6e 63 74 69 6f 6e da
00 01 11 d4 69 61 73 73 65 74 5f 67 65 74 6d 72 65 73 74 72 69 63 74 65
64 2d 74 6f da 00 01 11 d4 66 6d 65 6d 62 65 72 6b 63 6f 6c 6c 65 63 74
69 6f 6e 73 83 a3 65 72 75 6c 65 73 da 00 01 11 d4 66 63 6c 6f 73 65 64
66 66 69 65 6c 64 73 78 40 74 69 74 6c 65 2c 20 64 6f 63 2c 20 6f 77 6e
65 72 5f 69 64 2c 20 6f 77 6e 65 72 5f 6e 61 6d 65 2c 20 75 70 64 61 74
65 64 5f 62 79 2c 20 70 61 72 65 6e 74 5f 69 64 2c 20 69 73 5f 68 6f 6d
65 6a 63 6f 6c 6c 65 63 74 69 6f 6e da 00 01 11 d4 66 62 6f 61 72 64 73
a3 65 72 75 6c 65 73 da 00 01 11 d4 66 63 6c 6f 73 65 64 66 66 69 65 6c
64 73 78 21 62 6f 61 72 64 2c 20 75 73 65 72 5f 69 64 2c 20 65 6d 61 69
6c 2c 20 6e 61 6d 65 2c 20 72 6f 6c 65 6a 63 6f 6c 6c 65 63 74 69 6f 6e
da 00 01 11 d4 6d 62 6f 61 72 64 5f 6d 65 6d 62 65 72 73 a3 65 72 75 6c
65 73 da 00 01 11 d4 66 63 6c 6f 73 65 64 66 66 69 65 6c 64 73 77 62 6f
61 72 64 2c 20 6d 69 6d 65 2c 20 6e 61 6d 65 2c 20 62 6c 6f 62 6a 63 6f
6c 6c 65 63 74 69 6f 6e da 00 01 11 d4 6c 62 6f 61 72 64 5f 61 73 73 65
74 73 6b 63 6f 6e 73 74 72 61 69 6e 74 73 85 a2 64 72 75 6c 65 75 73 68
61 72 69 6e 67 20 69 73 20 6f 77 6e 65 72 2d 6f 6e 6c 79 66 72 65 61 73
6f 6e 78 2b 6f 74 68 65 72 77 69 73 65 20 61 6e 20 65 64 69 74 20 6d 65
6d 62 65 72 20 63 6f 75 6c 64 20 77 69 64 65 6e 20 61 63 63 65 73 73 a2
64 72 75 6c 65 76 64 65 6c 65 74 69 6f 6e 20 69 73 20 6f 77 6e 65 72 2d
6f 6e 6c 79 66 72 65 61 73 6f 6e 78 3f 61 6e 20 65 64 69 74 20 6d 65 6d
62 65 72 20 6d 61 79 20 63 68 61 6e 67 65 20 77 68 61 74 20 61 20 62 6f
61 72 64 20 68 6f 6c 64 73 20 62 75 74 20 6e 6f 74 20 64 65 73 74 72 6f
79 20 69 74 a2 64 72 75 6c 65 78 1c 64 65 6c 65 74 69 6f 6e 20 72 65 66
75 73 65 73 20 61 20 68 6f 6d 65 20 6c 61 77 68 66 72 65 61 73 6f 6e 78
29 69 74 20 77 6f 75 6c 64 20 73 74 72 61 6e 64 20 74 68 65 20 61 63 63
6f 75 6e 74 20 69 74 20 62 65 6c 6f 6e 67 73 20 74 6f a2 64 72 75 6c 65
73 64 65 6c 65 74 69 6f 6e 20 69 73 20 73 68 61 6c 6c 6f 77 66 72 65 61
73 6f 6e 78 83 72 65 63 75 72 73 69 6f 6e 20 69 73 20 6c 65 66 74 20 74
6f 20 74 68 65 20 63 6c 69 65 6e 74 2c 20 73 6f 20 61 20 64 65 65 70 20
74 72 65 65 20 63 61 6e 6e 6f 74 20 65 78 68 61 75 73 74 20 74 68 65 20
66 75 6e 63 74 69 6f 6e 20 64 65 61 64 6c 69 6e 65 20 68 61 6c 66 77 61
79 20 77 69 74 68 20 6e 6f 20 77 61 79 20 74 6f 20 72 65 70 6f 72 74 20
77 68 65 72 65 20 69 74 20 73 74 6f 70 70 65 64 a2 64 72 75 6c 65 78 1c
6d 65 6d 62 65 72 73 68 69 70 20 69 73 20 6b 65 79 65 64 20 62 79 20 65
6d 61 69 6c 66 72 65 61 73 6f 6e 78 87 73 6f 20 61 20 70 65 72 73 6f 6e
20 63 61 6e 20 62 65 20 69 6e 76 69 74 65 64 20 62 65 66 6f 72 65 20 74
68 65 79 20 68 61 76 65 20 65 76 65 72 20 73 69 67 6e 65 64 20 69 6e 3b
20 74 68 65 20 69 6e 76 69 74 61 74 69 6f 6e 20 77 61 69 74 73 2c 20 69
6e 63 6c 75 64 69 6e 67 20 66 6f 72 20 61 20 70 72 6f 76 69 64 65 72 20
74 68 61 74 20 6c 69 6e 6b 73 20 6f 6e 20 76 65 72 69 66 69 65 64 20 65
6d 61 69 6c 6b 76 65 72 69 66 69 65 64 2d 62 79 78 a1 32 34 20 65 6e 64
2d 74 6f 2d 65 6e 64 20 63 68 65 63 6b 73 20 63 6f 76 65 72 69 6e 67 20
6f 77 6e 65 72 73 68 69 70 2c 20 73 68 61 72 69 6e 67 2c 20 72 6f 6c 65
0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 65 6e 66 6f 72 63
65 6d 65 6e 74 2c 20 72 65 76 6f 63 61 74 69 6f 6e 2c 20 64 69 72 65 63
74 2d 61 63 63 65 73 73 20 62 79 70 61 73 73 20 61 74 74 65 6d 70 74 73
20 61 6e 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 6d 65
64 69 61 20 67 61 74 69 6e 67 2e 6d 77 68 79 2d 66 75 6e 63 74 69 6f 6e
73 79 02 24 54 68 65 20 68 6f 73 74 27 73 20 63 6f 6c 6c 65 63 74 69 6f
6e 20 72 75 6c 65 73 20 61 72 65 20 70 65 72 2d 63 6f 6c 6c 65 63 74 69
6f 6e 2c 20 6e 6f 74 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 70 65 72 2d 72 65 63 6f 72 64 3a 20 6f 77 6e 65 72 20 6d 65 61
6e 73 20 6f 6e 6c 79 20 74 68 65 20 63 72 65 61 74 6f 72 20 73 6f 20 73
68 61 72 69 6e 67 20 69 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 69 6d 70 6f 73 73 69 62 6c 65 2c 20 61 75 74 68 20 6d 65
61 6e 73 20 65 76 65 72 79 20 73 69 67 6e 65 64 2d 69 6e 20 75 73 65 72
20 72 65 61 64 73 20 65 76 65 72 79 0a 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 62 6f 61 72 64 2c 20 70 75 62 6c 69 63 20 6d 65
61 6e 73 20 74 68 65 20 69 6e 74 65 72 6e 65 74 20 64 6f 65 73 2e 20 4e
6f 6e 65 20 65 78 70 72 65 73 73 65 73 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 73 68 61 72 65 64 2d 77 69 74 68 2d 74 68 65
73 65 2d 74 68 72 65 65 2d 70 65 6f 70 6c 65 2e 20 53 6f 20 65 76 65 72
79 20 63 6f 6c 6c 65 63 74 69 6f 6e 20 69 73 0a 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 63 6c 6f 73 65 64 20 61 6e 64 20 61 63
63 65 73 73 20 72 75 6e 73 20 74 68 72 6f 75 67 68 20 66 75 6e 63 74 69
6f 6e 73 2c 20 77 68 69 63 68 20 62 79 70 61 73 73 20 72 75 6c 65 73 0a
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 61 6e 64 20 63
61 6e 20 72 65 61 64 20 61 20 76 65 72 69 66 69 65 64 20 63 61 6c 6c 65
72 20 69 64 65 6e 74 69 74 79 20 74 68 61 74 20 63 61 6e 6e 6f 74 20 62
65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 66 6f 72
67 65 64 20 66 72 6f 6d 20 66 75 6e 63 74 69 6f 6e 20 69 6e 70 75 74 2e
76 66 69 6c 74 65 72 2d 70 72 65 63 65 64 65 6e 63 65 2d 74 72 61 70 79
01 a5 54 68 65 20 6d 65 6d 62 65 72 73 68 69 70 20 63 6c 61 75 73 65 20
6d 75 73 74 20 62 65 20 77 72 69 74 74 65 6e 0a 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 62 6f 61 72
64 20 3d 20 58 20 26 26 20 28 75 73 65 72 5f 69 64 20 3d 20 55 20 7c 7c
20 65 6d 61 69 6c 20 3d 20 45 29 2e 20 54 68 65 0a 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 70 61 72
65 6e 74 68 65 73 65 73 20 61 72 65 20 6c 6f 61 64 2d 62 65 61 72 69 6e
67 3a 20 77 69 74 68 6f 75 74 20 74 68 65 6d 20 69 74 20 62 69 6e 64 73
0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 61 73 20 28 62 6f 61 72 64 20 3d 20 58 20 26 26 20 75 73
65 72 5f 69 64 20 3d 20 55 29 20 7c 7c 20 65 6d 61 69 6c 20 3d 20 45 2c
20 77 68 69 63 68 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 6d 61 74 63 68 65 73 20 74 68 65 20 63
61 6c 6c 65 72 27 73 20 6d 65 6d 62 65 72 73 68 69 70 20 6f 66 20 2a 61
6e 79 2a 20 62 6f 61 72 64 20 61 6e 64 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 68 61 6e 64 73 20
74 68 65 6d 20 62 6f 61 72 64 73 20 74 68 65 79 20 77 65 72 65 20 6e 65
76 65 72 20 69 6e 76 69 74 65 64 20 74 6f 2e 67 6c 69 76 65 2d 61 74 78
27 68 74 74 70 73 3a 2f 2f 74 61 6b 68 7a 65 65 6e 2e 69 62 72 61 68 69
6d 2e 6d 73 2f 61 70 70 73 2f 73 69 6a 69 6c 2f 67 6f 66 66 6c 69 6e 65
a9 63 64 6f 63 79 01 03 41 20 77 72 61 70 70 65 72 20 61 72 6f 75 6e 64
20 74 68 65 20 72 65 6d 6f 74 65 20 61 64 61 70 74 65 72 2c 20 73 6f 20
6e 65 69 74 68 65 72 20 74 68 65 20 73 68 65 6c 6c 20 6e 6f 72 20 74 68
65 0a 20 20 20 20 20 20 20 20 20 64 6f 63 75 6d 65 6e 74 20 6d 6f 64 65
6c 20 6b 6e 6f 77 73 20 61 6e 79 74 68 69 6e 67 20 61 62 6f 75 74 20 74
68 65 20 6e 65 74 77 6f 72 6b 2e 20 52 65 61 64 73 20 61 72 65 20 63 61
63 68 65 64 2c 0a 20 20 20 20 20 20 20 20 20 77 72 69 74 65 73 20 6c 61
6e 64 20 6c 6f 63 61 6c 6c 79 20 66 69 72 73 74 2c 20 61 6e 64 20 61 20
62 6f 61 72 64 20 65 64 69 74 65 64 20 6f 66 66 6c 69 6e 65 20 69 73 20
72 65 63 6f 6e 63 69 6c 65 64 20 6f 6e 0a 20 20 20 20 20 20 20 20 20 72
65 63 6f 6e 6e 65 63 74 20 74 68 72 6f 75 67 68 20 74 68 65 20 6d 65 72
67 65 2e 65 72 75 6c 65 73 84 a2 64 72 75 6c 65 78 29 63 6f 6e 6e 65 63
74 69 76 69 74 79 20 6a 75 64 67 65 64 20 62 79 20 77 68 65 74 68 65 72
20 63 61 6c 6c 73 20 77 6f 72 6b 66 72 65 61 73 6f 6e 78 75 74 68 65 20
62 72 6f 77 73 65 72 27 73 20 6f 6e 6c 69 6e 65 20 66 6c 61 67 20 72 65
70 6f 72 74 73 20 74 68 65 20 69 6e 74 65 72 66 61 63 65 20 61 6e 64 20
73 61 79 73 20 6f 6e 6c 69 6e 65 20 62 65 68 69 6e 64 20 61 20 63 61 70
74 69 76 65 20 70 6f 72 74 61 6c 3b 20 69 74 73 20 65 76 65 6e 74 20 6f
6e 6c 79 20 70 72 6f 64 73 20 61 20 72 65 74 72 79 a2 64 72 75 6c 65 78
26 6f 6e 6c 79 20 6e 65 74 77 6f 72 6b 20 66 61 69 6c 75 72 65 73 20 63
6f 75 6e 74 20 61 73 20 6f 66 66 6c 69 6e 65 66 72 65 61 73 6f 6e 78 48
61 20 72 65 66 75 73 61 6c 20 73 75 63 68 20 61 73 20 63 61 6e 6e 6f 74
2d 72 65 61 64 2d 74 68 69 73 2d 62 6f 61 72 64 20 69 73 20 61 20 70 65
72 66 65 63 74 6c 79 20 63 6f 6e 6e 65 63 74 65 64 20 61 6e 73 77 65 72
a2 64 72 75 6c 65 78 1e 72 65 63 6f 6e 63 69 6c 65 20 77 72 69 74 65 73
20 74 68 65 20 63 61 63 68 65 20 74 6f 6f 66 72 65 61 73 6f 6e 78 6b 73
6b 69 70 70 69 6e 67 20 69 74 20 6c 65 66 74 20 61 20 72 65 6c 6f 61 64
20 73 74 72 61 69 67 68 74 20 61 66 74 65 72 20 61 20 73 79 6e 63 20 73
68 6f 77 69 6e 67 20 74 68 65 20 62 6f 61 72 64 20 77 69 74 68 6f 75 74
20 77 68 61 74 20 74 68 65 20 6d 65 72 67 65 20 68 61 64 20 6a 75 73 74
20 70 75 6c 6c 65 64 20 69 6e a2 64 72 75 6c 65 78 27 73 61 76 65 20 65
72 72 6f 72 73 20 61 72 65 20 73 77 61 6c 6c 6f 77 65 64 20 77 68 69 6c
65 20 6f 66 66 6c 69 6e 65 66 72 65 61 73 6f 6e 78 3d 61 6e 20 65 72 72
6f 72 20 70 65 72 20 6b 65 79 73 74 72 6f 6b 65 20 69 73 20 6e 6f 69 73
65 2c 20 61 6e 64 20 74 68 65 20 65 64 69 74 20 69 73 20 73 61 66 65 20
6c 6f 63 61 6c 6c 79 67 70 6f 6c 6c 69 6e 67 79 01 61 4f 74 68 65 72 20
64 65 76 69 63 65 73 27 20 65 64 69 74 73 20 61 72 72 69 76 65 20 62 79
20 70 6f 6c 6c 69 6e 67 20 65 76 65 72 79 20 32 30 20 73 65 63 6f 6e 64
73 20 77 68 69 6c 65 20 74 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 20
20 74 61 62 20 69 73 20 76 69 73 69 62 6c 65 20 61 6e 64 20 69 64 6c 65
20 e2 80 94 20 6e 6f 74 20 61 20 73 75 62 73 63 72 69 70 74 69 6f 6e 2c
20 62 65 63 61 75 73 65 20 74 68 65 20 68 6f 73 74 27 73 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 72 65 61 6c 74 69 6d 65 20 61 70 70 6c 69 65
73 20 74 68 65 20 6c 69 73 74 20 72 75 6c 65 20 61 6e 64 20 74 68 65 73
65 20 63 6f 6c 6c 65 63 74 69 6f 6e 73 20 61 72 65 20 63 6c 6f 73 65 64
2c 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 73 6f 20 69 74 20 77 6f 75
6c 64 20 65 6d 69 74 20 6e 6f 74 68 69 6e 67 2e 20 53 61 66 65 20 74 6f
20 70 6f 6c 6c 20 62 65 63 61 75 73 65 20 74 68 65 20 6d 65 72 67 65 20
69 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 69 64 65 6d 70 6f 74 65
6e 74 3a 20 66 69 6e 64 69 6e 67 20 6e 6f 74 68 69 6e 67 20 63 6f 73 74
73 20 6f 6e 65 20 72 65 61 64 2e 69 61 70 70 2d 73 68 65 6c 6c 79 01 9a
41 20 73 65 72 76 69 63 65 20 77 6f 72 6b 65 72 20 63 61 63 68 65 73 20
74 68 65 20 73 68 65 6c 6c 20 73 6f 20 74 68 65 20 61 70 70 20 73 74 61
72 74 73 20 77 69 74 68 20 6e 6f 0a 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 6e 65 74 77 6f 72 6b 2e 20 57 69 74 68 6f 75 74 20 69 74 20 74
68 65 20 64 61 74 61 20 77 61 73 20 6c 6f 63 61 6c 20 62 75 74 20 74 68
65 20 63 6f 64 65 20 77 61 73 20 6e 6f 74 2c 20 73 6f 0a 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 75 73 65 2d 6f 6e 2d 74 68 69 73 2d 64 65
76 69 63 65 2d 6f 6e 6c 79 20 73 74 69 6c 6c 20 6e 65 65 64 65 64 20 61
20 73 65 72 76 65 72 2e 20 4e 65 74 77 6f 72 6b 20 66 69 72 73 74 2c 0a
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 63 61 63 68 65 20 61 73 20
66 61 6c 6c 62 61 63 6b 3a 20 64 65 70 6c 6f 79 73 20 68 61 70 70 65 6e
20 62 79 20 70 75 73 68 69 6e 67 20 74 6f 20 74 68 65 20 72 65 70 6f 73
69 74 6f 72 79 2c 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 61 6e
64 20 61 20 63 61 63 68 65 2d 66 69 72 73 74 20 77 6f 72 6b 65 72 20 77
6f 75 6c 64 20 73 65 72 76 65 20 79 65 73 74 65 72 64 61 79 27 73 20 6d
6f 64 75 6c 65 73 20 74 6f 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 73 6f 6d 65 6f 6e 65 20 70 65 72 66 65 63 74 6c 79 20 6f 6e 6c 69 6e
65 2e 6f 70 6f 6c 6c 69 6e 67 2d 73 6b 69 70 70 65 64 78 6c 4d 69 64 2d
67 65 73 74 75 72 65 20 61 6e 64 20 6d 69 64 2d 73 65 6e 74 65 6e 63 65
2c 20 73 6f 20 61 20 6d 65 72 67 65 20 63 61 6e 6e 6f 74 20 70 75 6c 6c
20 61 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
63 61 72 64 20 6f 75 74 20 66 72 6f 6d 20 75 6e 64 65 72 20 74 68 65 20
70 6f 69 6e 74 65 72 2e 70 61 70 69 2d 6e 65 76 65 72 2d 63 61 63 68 65
64 78 33 41 20 73 74 61 6c 65 20 62 6f 61 72 64 20 72 65 61 64 20 69 73
20 77 6f 72 73 65 20 74 68 61 6e 20 61 6e 20 68 6f 6e 65 73 74 20 66 61
69 6c 75 72 65 2e 73 73 65 72 76 69 63 65 2d 77 6f 72 6b 65 72 2d 74 72
61 70 79 01 1c 41 20 70 6c 61 69 6e 20 66 65 74 63 68 20 69 6e 73 69 64
65 20 61 20 77 6f 72 6b 65 72 20 73 74 69 6c 6c 20 70 61 73 73 65 73 20
74 68 72 6f 75 67 68 20 74 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 62 72 6f 77 73 65 72 27 73 20 48
54 54 50 20 63 61 63 68 65 2c 20 73 6f 20 6e 65 74 77 6f 72 6b 2d 66 69
72 73 74 20 73 69 6c 65 6e 74 6c 79 20 62 65 63 61 6d 65 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 48 54 54
50 2d 63 61 63 68 65 2d 66 69 72 73 74 20 61 6e 64 20 73 65 72 76 65 64
20 73 74 61 6c 65 20 63 6f 64 65 2e 20 41 6e 20 65 78 70 6c 69 63 69 74
0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 6e 6f 2d 63 61 63 68 65 20 6f 6e 20 74 68 65 20 77 6f 72 6b 65 72
27 73 20 66 65 74 63 68 20 69 73 20 6c 6f 61 64 2d 62 65 61 72 69 6e 67
2e 78 21 70 6f 6c 6c 69 6e 67 2d 77 72 69 74 65 73 2d 62 61 63 6b 2d 63
6f 6e 64 69 74 69 6f 6e 61 6c 6c 79 78 f2 4f 6e 6c 79 20 77 68 65 6e 20
74 68 69 73 20 64 65 76 69 63 65 20 68 6f 6c 64 73 20 73 6f 6d 65 74 68
69 6e 67 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 74 68 65 20 73
65 72 76 65 72 20 64 6f 65 73 20 6e 6f 74 2c 20 6f 72 20 65 76 65 72 79
20 6f 70 65 6e 20 74 61 62 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 74 61 6b 65 73 20 74 75 72 6e 73 20 73 61 76 69 6e 67 20 74 68 65 20
73 61 6d 65 20 62 6f 61 72 64 20 74 6f 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 65 61 63 68 20 6f 74 68 65 72 2e 78 22 70 6f 6c 6c 69 6e
67 2d 74 61 6b 65 73 2d 74 68 65 2d 62 6f 61 72 64 2d 65 78 70 6c 69 63
69 74 6c 79 79 01 89 54 68 65 20 61 64 61 70 74 65 72 27 73 20 69 6e 74
65 72 6e 61 6c 20 6e 6f 74 69 6f 6e 20 6f 66 20 74 68 65 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 6c 61 73 74 20 64 6f 63 75 6d 65 6e
74 20 74 6f 75 63 68 65 64 20 6d 6f 76 65 73 20 6f 6e 20 61 6e 0a 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 69 6d 70 6f 72 74 20 6f 72 20
61 20 62 61 63 6b 67 72 6f 75 6e 64 20 73 61 76 65 2c 20 61 6e 64 0a 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 70 6f 6c 6c 69 6e 67 20 74
68 61 74 20 77 6f 75 6c 64 20 72 65 66 72 65 73 68 20 61 20 62 6f 61 72
64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 6e 6f 62 6f 64 79
20 69 73 20 6c 6f 6f 6b 69 6e 67 20 61 74 20 77 68 69 6c 65 20 74 68 65
20 76 69 73 69 62 6c 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 6f 6e 65 20 77 65 6e 74 20 73 74 61 6c 65 2e 67 70 6f 72 74 69 6e 67
a8 62 73 6f 79 01 65 41 6e 79 74 68 69 6e 67 20 74 68 61 74 20 6d 75 73
74 20 63 6f 6d 65 20 6f 75 74 20 74 68 65 20 73 61 6d 65 20 67 6f 65 73
20 69 6e 20 61 20 74 61 62 6c 65 20 61 73 20 76 61 6c 75 65 73 2e 20 41
0a 20 20 20 20 20 20 20 20 73 65 6e 74 65 6e 63 65 20 64 65 73 63 72 69
62 69 6e 67 20 62 65 68 61 76 69 6f 75 72 20 69 73 20 73 61 74 69 73 66
69 65 64 20 62 79 20 77 68 61 74 65 76 65 72 20 74 68 65 20 72 65 61 64
65 72 0a 20 20 20 20 20 20 20 20 75 6e 64 65 72 73 74 6f 6f 64 20 69 74
20 74 6f 20 6d 65 61 6e 2c 20 77 68 69 63 68 20 69 73 20 68 6f 77 20 74
77 6f 20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f 6e 73 20 70 61 73 73 20
74 68 65 20 73 61 6d 65 0a 20 20 20 20 20 20 20 20 73 75 69 74 65 20 61
6e 64 20 63 61 6e 6e 6f 74 20 72 65 61 64 20 65 61 63 68 20 6f 74 68 65
72 2e 20 57 68 65 72 65 20 61 20 76 61 6c 75 65 20 63 6f 6d 70 65 74 65
73 20 77 69 74 68 20 61 0a 20 20 20 20 20 20 20 20 66 72 61 6d 65 77 6f
72 6b 20 64 65 66 61 75 6c 74 2c 20 73 61 79 20 77 68 79 20 69 74 20 6d
61 74 74 65 72 73 20 6f 72 20 65 78 70 65 63 74 20 74 6f 20 6c 6f 73 65
20 69 74 2e 65 6f 72 64 65 72 87 a3 64 73 74 65 70 01 65 62 75 69 6c 64
78 18 64 6f 63 75 6d 65 6e 74 20 6d 6f 64 65 6c 20 61 6e 64 20 73 74 6f
72 65 67 62 65 63 61 75 73 65 78 23 65 76 65 72 79 74 68 69 6e 67 20 65
6c 73 65 20 72 65 61 64 73 20 61 6e 64 20 77 72 69 74 65 73 20 69 74 a3
64 73 74 65 70 02 65 62 75 69 6c 64 76 62 6f 61 72 64 2c 20 76 69 65 77
70 6f 72 74 2c 20 63 61 72 64 73 67 62 65 63 61 75 73 65 78 20 74 68 65
20 70 72 6f 64 75 63 74 20 69 73 20 76 69 73 69 62 6c 65 20 66 72 6f 6d
20 68 65 72 65 a3 64 73 74 65 70 03 65 62 75 69 6c 64 6d 6c 6f 63 61 6c
20 61 64 61 70 74 65 72 67 62 65 63 61 75 73 65 78 1a 75 73 61 62 6c 65
20 77 69 74 68 6f 75 74 20 61 6e 79 20 62 61 63 6b 65 6e 64 a3 64 73 74
65 70 04 65 62 75 69 6c 64 78 21 6d 65 72 67 65 2c 20 77 69 74 68 20 69
74 73 20 74 68 72 65 65 20 6c 61 77 73 20 74 65 73 74 65 64 67 62 65 63
61 75 73 65 78 1d 62 65 66 6f 72 65 20 61 20 73 65 63 6f 6e 64 20 64 65
76 69 63 65 20 65 78 69 73 74 73 a3 64 73 74 65 70 05 65 62 75 69 6c 64
78 1c 72 65 6d 6f 74 65 20 61 64 61 70 74 65 72 20 61 6e 64 20 66 75 6e
63 74 69 6f 6e 73 67 62 65 63 61 75 73 65 78 21 73 68 61 72 69 6e 67 20
61 6e 64 20 6e 65 73 74 69 6e 67 20 6e 65 65 64 20 69 64 65 6e 74 69 74
79 a3 64 73 74 65 70 06 65 62 75 69 6c 64 6f 6f 66 66 6c 69 6e 65 20 77
72 61 70 70 65 72 67 62 65 63 61 75 73 65 78 2e 69 74 20 77 72 61 70 73
20 74 68 65 20 72 65 6d 6f 74 65 20 61 64 61 70 74 65 72 2c 20 73 6f 20
69 74 20 63 6f 6d 65 73 20 61 66 74 65 72 a3 64 73 74 65 70 07 65 62 75
69 6c 64 68 74 72 61 6e 73 66 65 72 67 62 65 63 61 75 73 65 78 26 6e 65
65 64 73 20 62 6f 74 68 20 61 64 61 70 74 65 72 73 20 74 6f 20 62 65 20
77 6f 72 74 68 20 68 61 76 69 6e 67 6e 6d 75 73 74 2d 72 65 70 72 6f 64
75 63 65 85 78 4e 74 68 65 20 64 6f 63 75 6d 65 6e 74 20 73 68 61 70 65
20 61 6e 64 20 65 76 65 72 79 20 63 61 72 64 20 6b 69 6e 64 27 73 20 66
69 65 6c 64 73 2c 20 6f 72 20 73 61 76 65 64 20 62 6f 61 72 64 73 20 77
69 6c 6c 20 6e 6f 74 20 6c 6f 61 64 78 5d 74 68 65 20 6d 65 72 67 65 20
61 6c 67 65 62 72 61 20 e2 80 94 20 74 6f 6d 62 73 74 6f 6e 65 73 2c 20
74 68 65 20 68 79 62 72 69 64 20 63 6c 6f 63 6b 2c 20 72 65 73 74 61 6d
70 69 6e 67 20 6f 6e 20 75 6e 64 6f 20 e2 80 94 20 6f 72 20 64 65 76 69
63 65 73 20 64 69 76 65 72 67 65 78 4d 74 68 65 20 74 77 6f 2d 70 61 73
73 20 69 6d 70 6f 72 74 20 77 69 74 68 20 62 6f 74 68 20 72 65 66 65 72
65 6e 63 65 73 20 72 65 6d 61 70 70 65 64 2c 20 6f 72 20 74 72 61 6e 73
66 65 72 73 20 66 61 69 6c 20 73 69 6c 65 6e 74 6c 79 78 81 6f 77 6e 65
72 2d 6f 6e 6c 79 20 73 68 61 72 69 6e 67 20 61 6e 64 20 64 65 6c 65 74
69 6f 6e 2c 20 61 6e 64 20 74 68 65 20 70 61 72 65 6e 74 68 65 73 69 73
65 64 20 6d 65 6d 62 65 72 73 68 69 70 20 66 69 6c 74 65 72 2c 20 6f 72
20 61 63 63 65 73 73 20 63 6f 6e 74 72 6f 6c 20 69 73 20 77 72 6f 6e 67
20 72 61 74 68 65 72 20 74 68 61 6e 20 6d 65 72 65 6c 79 20 64 69 66 66
65 72 65 6e 74 78 3a 74 68 65 20 61 64 61 70 74 65 72 20 73 65 61 6d 2c
20 6f 72 20 74 68 65 20 73 65 63 6f 6e 64 20 62 61 63 6b 65 6e 64 20 74
6f 75 63 68 65 73 20 65 76 65 72 79 20 66 69 6c 65 6e 74 72 61 6e 73 66
65 72 2d 72 61 74 65 73 84 a2 67 6f 75 74 63 6f 6d 65 78 1f 72 65 70 72
6f 64 75 63 65 64 20 65 78 61 63 74 6c 79 2c 20 65 76 65 72 79 20 76 61
6c 75 65 74 66 6f 72 6d 2d 69 6e 2d 74 68 65 2d 64 6f 63 75 6d 65 6e 74
78 1d 61 20 74 61 62 6c 65 20 6f 66 20 75 6e 61 6d 62 69 67 75 6f 75 73
20 76 61 6c 75 65 73 a2 67 6f 75 74 63 6f 6d 65 72 72 65 70 72 6f 64 75
63 65 64 20 69 6e 20 70 61 72 74 74 66 6f 72 6d 2d 69 6e 2d 74 68 65 2d
64 6f 63 75 6d 65 6e 74 78 1f 61 20 74 61 62 6c 65 20 77 68 6f 73 65 20
63 65 6c 6c 73 20 61 72 65 20 45 6e 67 6c 69 73 68 a2 67 6f 75 74 63 6f
6d 65 6f 74 68 65 20 74 6f 6f 6c 6b 69 74 20 77 6f 6e 74 66 6f 72 6d 2d
69 6e 2d 74 68 65 2d 64 6f 63 75 6d 65 6e 74 78 28 61 20 76 61 6c 75 65
20 63 6f 6d 70 65 74 69 6e 67 20 77 69 74 68 20 61 20 74 6f 6f 6c 6b 69
74 20 64 65 66 61 75 6c 74 a2 67 6f 75 74 63 6f 6d 65 74 72 65 69 6e 76
65 6e 74 65 64 20 6f 72 20 61 62 73 65 6e 74 74 66 6f 72 6d 2d 69 6e 2d
74 68 65 2d 64 6f 63 75 6d 65 6e 74 78 20 61 20 70 72 6f 73 65 20 64 65
73 63 72 69 70 74 69 6f 6e 20 6f 66 20 62 65 68 61 76 69 6f 75 72 6f 66
72 65 65 2d 74 6f 2d 72 65 70 6c 61 63 65 83 78 3c 61 6c 6c 20 70 72 65
73 65 6e 74 61 74 69 6f 6e 20 e2 80 94 20 73 74 79 6c 65 73 68 65 65 74
2c 20 44 4f 4d 20 63 6f 6e 73 74 72 75 63 74 69 6f 6e 2c 20 61 6e 69 6d
61 74 69 6f 6e 78 44 74 68 65 20 69 6e 6b 20 65 6e 67 69 6e 65 27 73 20
63 75 72 76 65 20 66 69 74 74 69 6e 67 2c 20 70 72 6f 76 69 64 65 64 20
73 74 72 6f 6b 65 20 73 74 6f 72 61 67 65 20 69 73 20 75 6e 63 68 61 6e
67 65 64 78 4d 74 68 65 20 68 6f 73 74 2c 20 70 72 6f 76 69 64 65 64 20
74 68 65 20 65 69 67 68 74 20 66 75 6e 63 74 69 6f 6e 73 20 61 6e 64 20
74 68 72 65 65 20 63 6f 6c 6c 65 63 74 69 6f 6e 73 20 68 61 76 65 20 65
71 75 69 76 61 6c 65 6e 74 73 70 64 61 72 74 2d 61 6e 64 2d 66 6c 75 74
74 65 72 a4 64 6e 6f 74 65 78 3a 53 70 65 63 69 66 69 63 20 74 6f 20 74
68 65 20 70 6f 72 74 20 62 65 69 6e 67 20 75 6e 64 65 72 74 61 6b 65 6e
3b 20 68 61 72 6d 6c 65 73 73 20 65 6c 73 65 77 68 65 72 65 2e 67 68 61
7a 61 72 64 73 84 a2 66 68 61 7a 61 72 64 72 42 79 74 65 44 61 74 61 2e
67 65 74 55 69 6e 74 36 34 6c 77 68 61 74 2d 68 61 70 70 65 6e 73 78 3d
75 6e 73 75 70 70 6f 72 74 65 64 20 75 6e 64 65 72 20 64 61 72 74 32 6a
73 3b 20 74 68 72 6f 77 73 20 61 74 20 72 75 6e 20 74 69 6d 65 2c 20 77
6f 72 6b 73 20 6e 61 74 69 76 65 6c 79 a2 66 68 61 7a 61 72 64 78 19 36
34 2d 62 69 74 20 62 69 74 77 69 73 65 20 61 72 69 74 68 6d 65 74 69 63
6c 77 68 61 74 2d 68 61 70 70 65 6e 73 78 3b 73 69 6c 65 6e 74 6c 79 20
79 69 65 6c 64 73 20 7a 65 72 6f 20 6f 6e 20 74 68 65 20 77 65 62 20 e2
80 94 20 28 68 69 20 3c 3c 20 33 32 29 20 7c 20 6c 6f 20 67 69 76 65 73
20 30 a2 66 68 61 7a 61 72 64 78 21 42 69 67 49 6e 74 2e 66 72 6f 6d 28
61 20 6c 69 74 65 72 61 6c 20 61 62 6f 76 65 20 32 5e 35 33 29 6c 77 68
61 74 2d 68 61 70 70 65 6e 73 78 1e 72 65 66 75 73 65 73 20 74 6f 20 63
6f 6d 70 69 6c 65 20 66 6f 72 20 74 68 65 20 77 65 62 a2 66 68 61 7a 61
72 64 78 2c 69 6e 74 20 69 73 20 35 33 2d 62 69 74 20 6f 6e 20 74 68 65
20 77 65 62 20 61 6e 64 20 36 34 2d 62 69 74 20 6e 61 74 69 76 65 6c 79
6c 77 68 61 74 2d 68 61 70 70 65 6e 73 78 36 74 68 65 20 73 61 6d 65 20
63 6f 64 65 20 69 73 20 65 78 61 63 74 20 6f 6e 20 6f 6e 65 20 74 61 72
67 65 74 20 61 6e 64 20 6e 6f 74 20 74 68 65 20 6f 74 68 65 72 72 74 65
73 74 2d 6f 6e 2d 74 68 65 2d 74 61 72 67 65 74 79 01 08 43 6f 6d 70 69
6c 69 6e 67 20 66 6f 72 20 74 68 65 20 77 65 62 20 69 73 20 6e 6f 74 20
72 75 6e 6e 69 6e 67 20 6f 6e 20 69 74 2e 20 41 20 73 6d 6f 6b 65 0a 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 74 65 73 74 20 74 68 61 74 20 6f 6e 6c 79 20 63 6f 6e 66 69 72 6d 73
20 74 68 65 20 63 6f 64 65 20 62 75 69 6c 64 73 20 77 69 6c 6c 20 70 61
73 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 77 68 69 6c 65 20 65 76 65 72 79 20 66 6c 6f 61 74 69 6e
67 2d 70 6f 69 6e 74 20 70 61 74 68 20 74 68 72 6f 77 73 2c 20 77 68 69
63 68 20 69 73 20 61 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 74 68 69 6e 67 20 74 68 61 74 20 68 61 73
20 61 63 74 75 61 6c 6c 79 20 68 61 70 70 65 6e 65 64 2e 75 77 68 65 72
65 2d 74 68 65 79 2d 77 6f 75 6c 64 2d 62 69 74 65 79 01 b8 41 6e 79 77
68 65 72 65 20 74 68 69 73 20 64 6f 63 75 6d 65 6e 74 20 73 61 79 73 20
3a 69 6e 74 20 61 6e 64 20 73 6f 6d 65 74 68 69 6e 67 0a 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
6c 61 72 67 65 72 20 74 68 61 6e 20 61 20 6d 69 6c 6c 69 73 65 63 6f 6e
64 20 63 6f 75 6e 74 20 65 6e 64 73 20 75 70 20 74 68 65 72 65 2c 20 61
6e 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 61 6e 79 77 68 65 72 65 20 62 69 6e 61 72 79 20
64 61 74 61 20 69 73 20 74 61 6b 65 6e 20 61 70 61 72 74 20 62 79 20 68
61 6e 64 20 72 61 74 68 65 72 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 74 68 61 6e 20 70 61 73
73 65 64 20 74 68 72 6f 75 67 68 2e 20 54 68 65 20 6d 65 72 67 65 20 73
74 61 6d 70 20 69 73 20 73 61 66 65 20 61 73 0a 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 73 70 65
63 69 66 69 65 64 20 e2 80 94 20 73 65 65 20 63 6c 6f 63 6b 2d 66 69 74
73 2d 61 2d 64 6f 75 62 6c 65 20 e2 80 94 20 61 6e 64 20 77 6f 75 6c 64
0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 73 74 6f 70 20 62 65 69 6e 67 20 73 61 66 65 20 75 6e
64 65 72 20 61 6e 20 6f 62 76 69 6f 75 73 20 6f 70 74 69 6d 69 73 61 74
69 6f 6e 2e 75 61 62 73 65 6e 74 2d 69 73 2d 6e 6f 74 2d 61 2d 76 61 6c
75 65 79 02 22 45 76 65 72 79 20 66 69 65 6c 64 20 74 68 61 74 20 6d 61
79 20 62 65 20 6d 69 73 73 69 6e 67 20 6e 65 65 64 73 20 61 20 73 74 61
74 65 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 6d 65 61 6e 69 6e 67 2c 20 61 6e 64 20 74 68 69 73
20 64 6f 63 75 6d 65 6e 74 20 64 6f 65 73 20 6e 6f 74 20 79 65 74 20 67
69 76 65 20 6f 6e 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 63 6f 6e 73 69 73 74 65 6e 74 6c 79 20
e2 80 94 20 61 6e 20 61 75 64 69 74 20 6e 6f 74 20 70 65 72 66 6f 72 6d
65 64 20 72 61 74 68 65 72 20 74 68 61 6e 20 61 6e 0a 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 61 75 64
69 74 20 70 61 73 73 65 64 2e 20 57 68 65 72 65 20 69 74 20 69 73 20 73
69 6c 65 6e 74 2c 20 61 6e 20 69 6d 70 6c 65 6d 65 6e 74 65 72 20 6d 75
73 74 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 63 68 6f 6f 73 65 2c 20 61 6e 64 20 74 77 6f 20 69 6d
70 6c 65 6d 65 6e 74 65 72 73 20 63 68 6f 6f 73 69 6e 67 20 64 69 66 66
65 72 65 6e 74 6c 79 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 62 6f 74 68 20 63 6f 6e 66 6f 72 6d 2e
20 54 72 65 61 74 20 61 6e 79 20 75 6e 73 74 61 74 65 64 20 64 65 66 61
75 6c 74 20 61 73 20 61 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 71 75 65 73 74 69 6f 6e 20 66 6f 72
20 74 68 65 20 61 75 74 68 6f 72 2c 20 6e 6f 74 20 61 20 64 65 63 69 73
69 6f 6e 20 74 6f 20 6d 61 6b 65 0a 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 71 75 69 65 74 6c 79 2e 77
77 68 61 74 2d 61 63 74 75 61 6c 6c 79 2d 74 72 61 6e 73 66 65 72 73 79
01 0a 4d 65 61 73 75 72 65 64 2c 20 66 72 6f 6d 20 61 6e 20 69 6e 64 65
70 65 6e 64 65 6e 74 20 46 6c 75 74 74 65 72 20 70 6f 72 74 20 6f 66 20
61 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 73 69 62 6c 69 6e 67 20 70 72 6f 6a 65 63 74 20 77
72 69 74 74 65 6e 20 66 72 6f 6d 20 69 74 73 20 73 70 65 63 69 66 69 63
61 74 69 6f 6e 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 57 6f 72 74 68 20 6b 6e 6f 77 69 6e
67 20 62 65 66 6f 72 65 20 64 65 63 69 64 69 6e 67 20 68 6f 77 20 74 6f
20 77 72 69 74 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 61 6e 79 74 68 69 6e 67 20 79 6f 75
20 6e 65 65 64 20 72 65 70 72 6f 64 75 63 65 64 20 66 61 69 74 68 66 75
6c 6c 79 2e 67 70 72 65 6d 69 73 65 78 8a 41 20 62 6f 61 72 64 2c 20 6e
6f 74 20 61 20 6c 69 73 74 2e 20 45 76 65 72 79 74 68 69 6e 67 20 69 73
20 61 20 63 61 72 64 20 6f 6e 20 61 6e 20 75 6e 62 6f 75 6e 64 65 64 20
70 6c 61 6e 65 2c 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 70 6f 73 69
74 69 6f 6e 65 64 20 62 79 20 74 68 65 20 70 65 72 73 6f 6e 20 72 61 74
68 65 72 20 74 68 61 6e 20 6f 72 64 65 72 65 64 20 62 79 20 74 68 65 20
6d 61 63 68 69 6e 65 2e 67 74 61 67 6c 69 6e 65 78 1b 49 6e 66 69 6e 69
74 65 2d 63 61 6e 76 61 73 20 6e 6f 74 65 20 74 61 6b 69 6e 67 67 76 65
72 73 69 6f 6e 65 30 2e 33 2e 78 68 74 72 61 6e 73 66 65 72 a6 63 64 6f
63 79 01 1c 4f 6e 65 20 6a 6f 62 20 e2 80 94 20 72 65 61 64 20 65 76 65
72 79 20 62 6f 61 72 64 20 61 6e 64 20 69 74 73 20 6d 65 64 69 61 20 6f
75 74 2c 20 77 72 69 74 65 20 74 68 65 6d 20 62 61 63 6b 20 69 6e 0a 20
20 20 20 20 20 20 20 20 73 6f 6d 65 77 68 65 72 65 20 65 6c 73 65 20 e2
80 94 20 77 68 69 63 68 20 63 6f 76 65 72 73 20 74 68 72 65 65 3a 20 61
20 62 61 63 6b 75 70 2c 20 6d 6f 76 69 6e 67 20 77 6f 72 6b 20 66 72 6f
6d 20 61 0a 20 20 20 20 20 20 20 20 20 64 65 76 69 63 65 20 69 6e 74 6f
20 61 6e 20 61 63 63 6f 75 6e 74 2c 20 61 6e 64 20 6d 6f 76 69 6e 67 20
62 65 74 77 65 65 6e 20 73 65 72 76 65 72 73 2e 20 54 68 65 72 65 20 69
73 20 6e 6f 0a 20 20 20 20 20 20 20 20 20 73 65 70 61 72 61 74 65 20 6d
69 67 72 61 74 69 6f 6e 20 74 6f 6f 6c 20 62 65 63 61 75 73 65 20 74 68
65 72 65 20 64 6f 65 73 20 6e 6f 74 20 6e 65 65 64 20 74 6f 20 62 65 2e
65 72 65 6d 61 70 82 a3 67 68 65 6c 64 2d 62 79 69 6c 61 77 68 20 63 61
72 64 69 69 66 2d 6d 69 73 73 65 64 77 63 61 72 64 73 20 74 68 61 74 20
6f 70 65 6e 20 6e 6f 74 68 69 6e 67 69 72 65 66 65 72 65 6e 63 65 da 00
01 11 d4 67 62 6f 61 72 64 49 64 a3 67 68 65 6c 64 2d 62 79 6a 6d 65 64
69 61 20 63 61 72 64 69 69 66 2d 6d 69 73 73 65 64 78 18 70 69 63 74 75
72 65 73 20 74 68 61 74 20 6e 65 76 65 72 20 6c 6f 61 64 69 72 65 66 65
72 65 6e 63 65 da 00 01 11 d4 66 62 6c 6f 62 49 64 68 74 77 6f 2d 70 61
73 73 78 c4 42 6f 61 72 64 20 69 64 73 20 61 72 65 20 6d 69 6e 74 65 64
20 62 79 20 74 68 65 20 73 65 72 76 65 72 2c 20 73 6f 20 65 76 65 72 79
20 6f 6e 65 20 63 68 61 6e 67 65 73 20 6f 6e 20 74 68 65 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 20 77 61 79 20 69 6e 2e 20 43 72 65 61 74 65
20 65 76 65 72 79 20 62 6f 61 72 64 20 66 69 72 73 74 20 74 6f 20 6c 65
61 72 6e 20 69 74 73 20 6e 65 77 20 69 64 2c 20 74 68 65 6e 20 77 72 69
74 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 74 68 65 20 64 6f 63
75 6d 65 6e 74 73 20 77 69 74 68 20 72 65 66 65 72 65 6e 63 65 73 20 72
65 6d 61 70 70 65 64 2e 6e 73 69 6c 65 6e 74 2d 66 61 69 6c 75 72 65 78
74 42 6f 74 68 20 66 61 69 6c 75 72 65 73 20 61 72 65 20 73 69 6c 65 6e
74 2c 20 62 65 63 61 75 73 65 20 62 6f 74 68 20 72 65 6d 61 69 6e 20 76
61 6c 69 64 20 69 64 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 74 68 61 74 20 73 69 6d 70 6c 79 20 64 6f 20 6e 6f 74 20
65 78 69 73 74 20 6f 6e 20 74 68 69 73 20 73 65 72 76 65 72 2e 6f 71 75
69 65 74 2d 62 79 2d 64 65 73 69 67 6e 79 01 ac 42 6f 61 72 64 73 20 6d
61 64 65 20 62 65 66 6f 72 65 20 73 69 67 6e 69 6e 67 20 69 6e 20 66 6f
6c 6c 6f 77 20 74 68 65 20 70 65 72 73 6f 6e 20 69 6e 0a 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 61 75 74 6f 6d 61 74 69
63 61 6c 6c 79 2c 20 6f 6e 63 65 2c 20 77 69 74 68 20 61 20 74 6f 61 73
74 20 61 73 20 74 68 65 20 6f 6e 6c 79 20 73 69 67 6e 2e 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 44 72 6f 70 70 69 6e
67 20 61 20 73 61 76 65 64 20 63 6f 70 79 20 6f 6e 20 74 68 65 20 62 6f
61 72 64 20 6a 75 73 74 20 6f 70 65 6e 73 20 69 74 20 e2 80 94 20 74 68
65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 66
69 6c 65 20 69 73 20 73 6e 69 66 66 65 64 2c 20 73 6f 20 74 68 65 72 65
20 69 73 20 6e 6f 20 69 6d 70 6f 72 74 20 73 63 72 65 65 6e 20 74 6f 20
66 69 6e 64 2e 20 54 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 70 61 6c 65 74 74 65 20 6f 66 66 65 72 73 20 73 61
76 69 6e 67 20 61 6e 64 20 6f 70 65 6e 69 6e 67 20 61 20 63 6f 70 79 20
66 6f 72 20 61 6e 79 6f 6e 65 20 77 68 6f 0a 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 67 6f 65 73 20 6c 6f 6f 6b 69 6e 67
2c 20 77 69 74 68 20 6e 6f 20 6a 61 72 67 6f 6e 20 61 6e 64 20 6e 6f 20
66 6f 72 6d 61 74 20 74 61 6c 6b 2e 6f 73 68 61 72 69 6e 67 2d 74 72 61
76 65 6c 73 79 01 8c 41 20 6d 65 6d 62 65 72 73 68 69 70 20 69 73 20 61
6e 20 65 6d 61 69 6c 2c 20 61 20 6e 61 6d 65 20 61 6e 64 20 61 20 72 6f
6c 65 20 77 69 74 68 20 6e 6f 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 73 65 72 76 65 72 2d 73 70 65 63 69 66 69 63 20
69 64 2c 20 73 6f 20 69 74 20 63 61 6e 20 62 65 20 72 65 73 74 6f 72 65
64 20 65 6c 73 65 77 68 65 72 65 2e 0a 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 43 61 72 72 69 65 64 20 6f 6e 6c 79 20 66
6f 72 20 62 6f 61 72 64 73 20 79 6f 75 20 6f 77 6e 2c 20 61 6e 64 20 72
65 73 74 6f 72 65 64 20 6f 6e 6c 79 20 77 68 65 6e 0a 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 61 73 6b 65 64 3a 20 72 65
2d 69 6e 76 69 74 69 6e 67 20 70 65 6f 70 6c 65 20 67 72 61 6e 74 73 20
61 63 63 65 73 73 20 6f 6e 20 61 20 73 65 72 76 65 72 20 74 68 65 79 0a
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 6d 61 79
20 6b 6e 6f 77 20 6e 6f 74 68 69 6e 67 20 61 62 6f 75 74 2c 20 73 6f 20
69 74 20 69 73 20 6e 65 76 65 72 20 61 20 73 69 6c 65 6e 74 20 65 66 66
65 63 74 20 6f 66 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 6f 70 65 6e 69 6e 67 20 61 20 66 69 6c 65 2e 69 66 6f 6f 74
70 72 69 6e 74 a4 67 6d 6f 64 75 6c 65 73 17 6a 62 75 69 6c 64 2d 73 74
65 70 da 00 01 11 d4 64 6e 6f 6e 65 6c 64 65 70 65 6e 64 65 6e 63 69 65
73 00 6c 73 6f 75 72 63 65 2d 6c 69 6e 65 73 19 22 bb 69 69 6e 74 65 72
66 61 63 65 a2 65 72 75 6c 65 73 88 a2 64 72 75 6c 65 78 2a 73 69 67 6e
69 6e 67 20 6f 75 74 20 69 73 20 61 20 6d 65 6e 75 20 69 74 65 6d 2c 20
6e 65 76 65 72 20 74 68 65 20 63 68 69 70 66 72 65 61 73 6f 6e 78 47 74
61 70 70 69 6e 67 20 79 6f 75 72 20 6f 77 6e 20 70 69 63 74 75 72 65 20
74 6f 20 73 65 65 20 77 68 6f 20 79 6f 75 20 61 72 65 20 73 68 6f 75 6c
64 20 6e 6f 74 20 65 6e 64 20 79 6f 75 72 20 73 65 73 73 69 6f 6e a2 64
72 75 6c 65 78 1e 6c 6f 63 61 6c 20 6d 6f 64 65 20 73 68 6f 77 73 20 61
20 64 65 76 69 63 65 20 63 68 69 70 66 72 65 61 73 6f 6e 78 79 6f 74 68
65 72 77 69 73 65 20 73 61 76 69 6e 67 20 61 20 63 6f 70 79 20 69 73 20
6f 6e 6c 79 20 72 65 61 63 68 61 62 6c 65 20 66 72 6f 6d 20 61 20 70 61
6c 65 74 74 65 20 6e 65 65 64 69 6e 67 20 61 20 6b 65 79 62 6f 61 72 64
2c 20 77 68 69 63 68 20 6f 6e 20 61 20 70 68 6f 6e 65 20 69 73 20 74 68
65 20 73 61 6d 65 20 61 73 20 6e 6f 74 20 65 78 69 73 74 69 6e 67 a2 64
72 75 6c 65 78 21 6d 65 6e 75 73 20 6c 69 73 74 65 6e 20 6f 6e 20 74 68
65 20 63 61 70 74 75 72 65 20 70 68 61 73 65 66 72 65 61 73 6f 6e 78 51
73 6f 20 61 20 63 6c 69 63 6b 20 6f 6e 20 74 68 65 20 74 72 69 67 67 65
72 20 63 6c 6f 73 65 73 20 74 68 65 20 6f 70 65 6e 20 6d 65 6e 75 20 69
6e 73 74 65 61 64 20 6f 66 20 72 65 6f 70 65 6e 69 6e 67 20 69 74 20 75
6e 64 65 72 6e 65 61 74 68 a2 64 72 75 6c 65 78 25 64 69 61 6c 6f 67 73
20 64 69 73 6d 69 73 73 20 77 69 74 68 20 61 20 6d 61 72 6b 20 74 6f 70
20 72 69 67 68 74 66 72 65 61 73 6f 6e 78 46 6e 65 76 65 72 20 61 20 62
75 74 74 6f 6e 20 61 6c 6f 6e 67 20 74 68 65 20 62 6f 74 74 6f 6d 3b 20
65 73 63 61 70 65 20 61 6e 64 20 61 20 62 61 63 6b 64 72 6f 70 20 63 6c
69 63 6b 20 61 6c 73 6f 20 77 6f 72 6b a2 64 72 75 6c 65 78 23 73 77 69
74 63 68 65 73 20 61 72 65 20 74 6f 67 67 6c 65 73 2c 20 6e 6f 74 20 74
69 63 6b 62 6f 78 65 73 66 72 65 61 73 6f 6e 78 5d 66 6f 72 20 73 65 74
74 69 6e 67 73 3b 20 61 20 74 61 73 6b 20 63 61 72 64 27 73 20 63 68 65
63 6b 6c 69 73 74 20 69 73 20 61 20 74 6f 2d 64 6f 20 72 61 74 68 65 72
20 74 68 61 6e 20 61 20 73 65 74 74 69 6e 67 2c 20 73 6f 20 69 74 20 6b
65 65 70 73 20 74 69 63 6b 62 6f 78 65 73 a2 64 72 75 6c 65 78 24 74 68
65 6d 65 20 69 73 20 61 70 70 6c 69 65 64 20 69 6e 20 74 68 65 20 68 65
61 64 2c 20 69 6e 6c 69 6e 65 66 72 65 61 73 6f 6e 78 b1 61 70 70 6c 79
69 6e 67 20 69 74 20 61 66 74 65 72 20 74 68 65 20 73 74 79 6c 65 73 68
65 65 74 20 70 61 69 6e 74 73 20 67 69 76 65 73 20 61 20 6c 69 67 68 74
2d 6d 6f 64 65 20 75 73 65 72 20 61 20 64 61 72 6b 20 66 6c 61 73 68 20
61 6e 64 20 74 68 65 6e 20 77 61 74 63 68 65 73 20 65 76 65 72 79 20 74
72 61 6e 73 69 74 69 6f 6e 65 64 20 65 6c 65 6d 65 6e 74 20 61 6e 69 6d
61 74 65 2c 20 77 68 69 63 68 20 72 65 61 64 73 20 61 73 20 62 72 6f 6b
65 6e 20 63 68 72 6f 6d 65 20 72 61 74 68 65 72 20 74 68 61 6e 20 61 20
66 61 64 65 a2 64 72 75 6c 65 78 27 74 68 65 20 68 69 64 64 65 6e 20 61
74 74 72 69 62 75 74 65 20 6e 65 65 64 73 20 61 6e 20 69 6d 70 6f 72 74
61 6e 74 66 72 65 61 73 6f 6e 78 81 69 74 20 6c 6f 73 65 73 20 74 6f 20
61 6e 79 20 61 75 74 68 6f 72 20 64 69 73 70 6c 61 79 20 72 75 6c 65 2c
20 61 6e 64 20 77 69 74 68 6f 75 74 20 74 68 65 20 6f 76 65 72 72 69 64
65 20 6f 76 65 72 6c 61 79 73 20 72 65 6e 64 65 72 20 6f 76 65 72 20 74
68 65 20 62 6f 61 72 64 20 61 6e 64 20 74 68 65 20 73 68 61 72 65 20 73
68 65 65 74 20 65 61 74 73 20 65 76 65 72 79 20 63 6c 69 63 6b a2 64 72
75 6c 65 78 26 65 6e 74 72 61 6e 63 65 20 61 6e 69 6d 61 74 65 73 20 73
63 61 6c 65 2c 20 6e 6f 74 20 74 72 61 6e 73 66 6f 72 6d 66 72 65 61 73
6f 6e 78 60 74 72 61 6e 73 66 6f 72 6d 20 63 61 72 72 69 65 73 20 65 61
63 68 20 63 61 72 64 27 73 20 77 6f 72 6c 64 20 70 6f 73 69 74 69 6f 6e
2c 20 73 6f 20 61 20 6b 65 79 66 72 61 6d 65 20 6f 6e 20 69 74 20 79 61
6e 6b 73 20 65 76 65 72 79 20 63 61 72 64 20 74 6f 20 74 68 65 20 6f 72
69 67 69 6e 69 74 77 6f 2d 6d 65 6e 75 73 79 01 5a 54 68 65 20 6d 61 72
6b 20 69 6e 20 74 68 65 20 74 6f 70 20 62 61 72 20 6f 70 65 6e 73 20 2a
61 70 70 2a 20 74 68 69 6e 67 73 20 e2 80 94 20 73 65 61 72 63 68 2c 20
74 68 65 6d 65 2c 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 61 62
6f 75 74 2e 20 54 68 65 20 61 63 63 6f 75 6e 74 20 63 68 69 70 20 6f 70
65 6e 73 20 2a 79 6f 75 72 2a 20 74 68 69 6e 67 73 20 e2 80 94 20 77 68
65 72 65 20 62 6f 61 72 64 73 20 61 72 65 0a 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 6b 65 70 74 2c 20 73 61 76 69 6e 67 20 61 20 63 6f 70
79 2c 20 63 68 61 6e 67 69 6e 67 20 6d 6f 64 65 2c 20 73 69 67 6e 69 6e
67 20 6f 75 74 2e 20 4b 65 65 70 69 6e 67 20 74 68 61 74 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 73 70 6c 69 74 20 69 73 20 77 68 79 20
62 6f 74 68 20 6d 65 6e 75 73 20 73 74 61 79 20 73 68 6f 72 74 2c 20 61
6e 64 20 69 74 20 61 6e 73 77 65 72 73 20 74 68 65 20 74 77 6f 0a 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 71 75 65 73 74 69 6f 6e 73 20 70
65 6f 70 6c 65 20 61 63 74 75 61 6c 6c 79 20 61 72 72 69 76 65 20 77 69
74 68 2e 6a 61 6c 67 6f 72 69 74 68 6d 73 a4 63 69 6e 6b a9 65 63 75 72
76 65 78 ca 51 75 61 64 72 61 74 69 63 20 74 68 72 6f 75 67 68 20 6d 69
64 70 6f 69 6e 74 73 3a 20 66 6f 72 20 65 61 63 68 20 69 6e 74 65 72 69
6f 72 20 70 6f 69 6e 74 2c 20 61 20 71 75 61 64 72 61 74 69 63 0a 20 20
20 20 20 20 20 20 20 20 20 20 20 63 6f 6e 74 72 6f 6c 20 61 74 20 74 68
65 20 70 6f 69 6e 74 20 69 74 73 65 6c 66 20 65 6e 64 69 6e 67 20 61 74
20 74 68 65 20 6d 69 64 70 6f 69 6e 74 20 6f 66 20 69 74 20 61 6e 64 20
69 74 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 73 75 63 63 65 73 73
6f 72 2e 20 43 68 65 61 70 2c 20 61 6e 64 20 76 69 73 75 61 6c 6c 79 20
73 6d 6f 6f 74 68 20 65 6e 6f 75 67 68 2e 65 74 61 70 65 72 78 e7 54 68
65 20 6c 61 73 74 20 31 34 25 20 61 6e 64 20 66 69 72 73 74 20 31 30 25
20 6f 66 20 61 20 73 74 72 6f 6b 65 20 6e 61 72 72 6f 77 20 74 6f 20 61
20 70 6f 69 6e 74 2c 20 73 6f 20 61 20 70 65 6e 0a 20 20 20 20 20 20 20
20 20 20 20 20 20 6c 69 66 74 20 72 65 61 64 73 20 61 73 20 61 20 6c 69
66 74 3a 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 72 20 2a 3d 20 63 6c
61 6d 70 28 6d 69 6e 28 28 6e 2d 31 2d 69 29 2f 28 6e 2a 30 2e 31 34 29
2c 20 69 2f 28 6e 2a 30 2e 31 30 29 2c 20 31 29 2c 20 30 2e 31 32 2c 20
31 29 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 48 69 67 68 6c 69 67
68 74 65 72 20 73 74 72 6f 6b 65 73 20 73 6b 69 70 20 74 68 69 73 20 61
6e 64 20 73 74 61 79 20 66 6c 61 74 2e 67 6f 75 74 6c 69 6e 65 79 01 08
46 6f 72 20 65 61 63 68 20 70 6f 69 6e 74 2c 20 74 61 6b 65 20 74 68 65
20 64 69 72 65 63 74 69 6f 6e 20 66 72 6f 6d 20 69 74 73 20 6e 65 69 67
68 62 6f 75 72 73 2c 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 6e
6f 72 6d 61 6c 69 73 65 2c 20 61 6e 64 20 6f 66 66 73 65 74 20 62 79 20
74 68 65 20 72 61 64 69 75 73 20 61 6c 6f 6e 67 20 74 68 65 20 70 65 72
70 65 6e 64 69 63 75 6c 61 72 20 74 6f 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 70 72 6f 64 75 63 65 20 61 20 6c 65 66 74 20 61 6e 64 20
61 20 72 69 67 68 74 20 72 61 69 6c 2e 20 54 68 65 20 70 61 74 68 20 69
73 20 74 68 65 20 6c 65 66 74 20 72 61 69 6c 0a 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 66 6f 72 77 61 72 64 2c 20 74 68 65 20 72 69 67 68
74 20 72 61 69 6c 20 72 65 76 65 72 73 65 64 2c 20 63 6c 6f 73 65 64 2e
67 73 74 6f 72 61 67 65 78 f5 46 6c 61 74 20 74 72 69 70 6c 65 73 20 6f
66 20 78 2c 20 79 2c 20 70 72 65 73 73 75 72 65 2c 20 73 6f 20 61 20 62
75 73 79 20 62 6f 61 72 64 20 73 74 69 6c 6c 20 73 65 72 69 61 6c 69 73
65 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 73 6d 61 6c 6c 2e
20 52 65 6e 64 65 72 69 6e 67 20 62 75 69 6c 64 73 20 61 20 63 6c 6f 73
65 64 20 6f 75 74 6c 69 6e 65 20 72 61 74 68 65 72 20 74 68 61 6e 20 61
20 73 74 72 6f 6b 65 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
70 6f 6c 79 6c 69 6e 65 2c 20 73 6f 20 77 69 64 74 68 20 76 61 72 69 65
73 20 63 6f 6e 74 69 6e 75 6f 75 73 6c 79 20 61 6e 64 20 6a 6f 69 6e 73
20 73 74 61 79 20 63 6c 65 61 6e 20 61 74 0a 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 61 6e 79 20 7a 6f 6f 6d 2e 68 76 65 6c 6f 63 69 74 79
78 3b 45 78 70 6f 6e 65 6e 74 69 61 6c 6c 79 20 73 6d 6f 6f 74 68 65 64
3a 20 76 65 6c 20 3d 20 76 65 6c 20 2a 20 30 2e 37 32 20 2b 20 64 69 73
74 61 6e 63 65 20 2a 20 30 2e 32 38 2e 6c 73 69 6e 67 6c 65 2d 70 6f 69
6e 74 78 63 41 20 73 74 72 6f 6b 65 20 6f 66 20 6f 6e 65 20 73 61 6d 70
6c 65 20 72 65 6e 64 65 72 73 20 61 73 20 61 20 63 69 72 63 6c 65 20 6f
66 20 69 74 73 20 72 61 64 69 75 73 2c 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 76 69 61 20 74 77 6f 20 61 72 63 20 63 6f
6d 6d 61 6e 64 73 2e 6e 72 61 64 69 75 73 2d 66 6f 72 6d 75 6c 61 85 a3
64 6e 6f 74 65 78 1b 66 61 73 74 20 69 73 20 74 68 69 6e 2c 20 73 6c 6f
77 20 69 73 20 74 68 69 63 6b 67 66 6f 72 6d 75 6c 61 78 1c 31 20 2d 20
63 6c 61 6d 70 28 76 65 6c 20 2f 20 32 36 2c 20 30 2c 20 30 2e 36 32 29
68 71 75 61 6e 74 69 74 79 da 00 01 11 d4 6c 73 70 65 65 64 2d 66 61 63
74 6f 72 a3 64 6e 6f 74 65 78 37 30 2e 35 20 69 73 20 74 68 65 20 76 61
6c 75 65 20 61 20 64 65 76 69 63 65 20 72 65 70 6f 72 74 73 20 77 68 65
6e 20 69 74 20 68 61 73 20 6e 6f 20 73 65 6e 73 6f 72 67 66 6f 72 6d 75
6c 61 78 20 70 72 65 73 73 75 72 65 20 3e 20 30 20 61 6e 64 20 70 72 65
73 73 75 72 65 20 21 3d 20 30 2e 35 68 71 75 61 6e 74 69 74 79 da 00 01
11 d4 6c 68 61 73 2d 70 72 65 73 73 75 72 65 a3 64 6e 6f 74 65 78 1e 70
72 65 73 73 75 72 65 20 64 72 69 76 65 73 20 77 69 64 74 68 20 64 69 72
65 63 74 6c 79 67 66 6f 72 6d 75 6c 61 78 25 77 69 74 68 20 70 72 65 73
73 75 72 65 3a 20 30 2e 34 32 20 2b 20 70 72 65 73 73 75 72 65 20 2a 20
30 2e 39 32 68 71 75 61 6e 74 69 74 79 da 00 01 11 d4 65 66 6f 72 63 65
a3 64 6e 6f 74 65 78 21 76 65 6c 6f 63 69 74 79 20 73 75 62 73 74 69 74
75 74 65 73 20 66 6f 72 20 70 72 65 73 73 75 72 65 67 66 6f 72 6d 75 6c
61 78 22 77 69 74 68 6f 75 74 3a 20 30 2e 36 32 20 2b 20 73 70 65 65 64
46 61 63 74 6f 72 20 2a 20 30 2e 37 36 68 71 75 61 6e 74 69 74 79 da 00
01 11 d4 69 66 6f 72 63 65 2d 61 6c 74 a3 64 6e 6f 74 65 77 6e 65 76 65
72 20 76 61 6e 69 73 68 65 73 20 65 6e 74 69 72 65 6c 79 67 66 6f 72 6d
75 6c 61 78 1d 6d 61 78 28 30 2e 33 35 2c 20 28 73 69 7a 65 20 2f 20 32
29 20 2a 20 66 6f 72 63 65 29 68 71 75 61 6e 74 69 74 79 da 00 01 11 d4
66 72 61 64 69 75 73 70 73 61 6d 70 6c 65 2d 61 64 6d 69 73 73 69 6f 6e
78 a4 52 65 6a 65 63 74 20 61 20 73 61 6d 70 6c 65 20 63 6c 6f 73 65 72
20 74 68 61 6e 20 31 2e 31 20 75 6e 69 74 73 20 74 6f 20 74 68 65 20 70
72 65 76 69 6f 75 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 6f 6e 65 20 e2 80 94 20 70 6f 69 6e 74 65 72 20
6a 69 74 74 65 72 20 77 6f 75 6c 64 20 6f 74 68 65 72 77 69 73 65 20 62
65 63 6f 6d 65 20 76 69 73 69 62 6c 65 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 74 65 78 74 75 72 65 2e 72 70
6f 73 69 74 69 6f 6e 2d 73 6d 6f 6f 74 68 69 6e 67 78 bb 70 78 20 3d 20
70 72 65 76 2e 78 20 2b 20 28 78 20 2d 20 70 72 65 76 2e 78 29 20 2a 20
30 2e 36 32 2c 20 61 6e 64 20 6c 69 6b 65 77 69 73 65 20 66 6f 72 20 79
2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 52 61 64 69 75 73 20 69 73 20 73 6d 6f 6f 74 68 65 64 20 73
65 70 61 72 61 74 65 6c 79 20 61 6e 64 20 6d 6f 72 65 20 67 65 6e 74 6c
79 3a 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 72 20 3d 20 70 72 65 76 2e 72 20 2b 20 28 72 20 2d 20 70
72 65 76 2e 72 29 20 2a 20 30 2e 33 34 2e 66 6c 61 79 6f 75 74 a7 65 6d
6f 64 65 73 82 a2 64 6d 6f 64 65 da 00 01 11 d4 64 66 72 65 65 69 62 65
68 61 76 69 6f 75 72 78 3e 61 20 63 61 72 64 20 73 69 74 73 20 65 78 61
63 74 6c 79 20 77 68 65 72 65 20 69 74 20 77 61 73 20 70 75 74 20 e2 80
94 20 74 68 65 20 70 6f 69 6e 74 20 6f 66 20 61 20 63 61 6e 76 61 73 a2
64 6d 6f 64 65 da 00 01 11 d4 68 61 75 74 6f 73 6e 61 70 69 62 65 68 61
76 69 6f 75 72 78 30 63 61 72 64 73 20 70 61 63 6b 20 69 6e 74 6f 20 63
6f 6c 75 6d 6e 73 2c 20 73 68 6f 72 74 65 73 74 20 66 69 72 73 74 2c 20
6e 6f 20 67 61 70 73 69 63 6f 6e 73 74 61 6e 74 73 a3 66 67 75 74 74 65
72 18 18 69 67 72 69 64 2d 73 74 65 70 14 69 72 6f 77 2d 77 69 64 74 68
19 04 88 6c 63 6f 6c 75 6d 6e 2d 63 6f 75 6e 74 84 a3 63 77 68 79 78 1c
74 68 65 20 73 70 61 63 65 20 61 63 74 75 61 6c 6c 79 20 61 76 61 69 6c
61 62 6c 65 67 66 6f 72 6d 75 6c 61 78 19 6d 61 78 28 63 6f 6c 2c 20 77
69 64 74 68 20 2d 20 70 61 64 20 2a 20 32 29 68 71 75 61 6e 74 69 74 79
da 00 01 11 d4 66 75 73 61 62 6c 65 a3 63 77 68 79 78 24 68 6f 77 20 6d
61 6e 79 20 70 72 65 66 65 72 72 65 64 2d 77 69 64 74 68 20 63 6f 6c 75
6d 6e 73 20 66 69 74 67 66 6f 72 6d 75 6c 61 78 29 66 6c 6f 6f 72 28 28
75 73 61 62 6c 65 20 2b 20 67 75 74 74 65 72 29 20 2f 20 28 63 6f 6c 20
2b 20 67 75 74 74 65 72 29 29 68 71 75 61 6e 74 69 74 79 da 00 01 11 d4
65 69 64 65 61 6c a3 63 77 68 79 78 1d 6e 65 76 65 72 20 6d 6f 72 65 20
63 6f 6c 75 6d 6e 73 20 74 68 61 6e 20 63 61 72 64 73 67 66 6f 72 6d 75
6c 61 78 1d 6d 61 78 28 31 2c 20 6d 69 6e 28 69 64 65 61 6c 2c 20 63 61
72 64 43 6f 75 6e 74 29 29 68 71 75 61 6e 74 69 74 79 da 00 01 11 d4 67
63 6f 6c 75 6d 6e 73 a3 63 77 68 79 78 1d 63 6f 6c 75 6d 6e 73 20 73 68
61 72 65 20 74 68 65 20 77 68 6f 6c 65 20 77 69 64 74 68 67 66 6f 72 6d
75 6c 61 78 2b 28 75 73 61 62 6c 65 20 2d 20 67 75 74 74 65 72 20 2a 20
28 63 6f 6c 75 6d 6e 73 20 2d 20 31 29 29 20 2f 20 63 6f 6c 75 6d 6e 73
68 71 75 61 6e 74 69 74 79 da 00 01 11 d4 68 63 6f 6c 57 69 64 74 68 6f
77 68 79 2d 62 6f 74 68 2d 68 61 6c 76 65 73 79 01 aa 46 69 78 69 6e 67
20 63 61 72 64 73 20 61 74 20 74 68 65 69 72 20 70 72 65 66 65 72 72 65
64 20 77 69 64 74 68 20 6c 65 66 74 20 74 68 65 20 62 6f 61 72 64 20 61
0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
6e 61 72 72 6f 77 20 62 6c 6f 63 6b 20 77 69 74 68 20 77 69 64 65 20 65
6d 70 74 79 20 6d 61 72 67 69 6e 73 20 e2 80 94 20 73 70 61 63 65 2c 20
6f 6e 20 61 20 62 6f 61 72 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 77 68 6f 73 65 20 77 68 6f 6c 65 20 70 75
72 70 6f 73 65 20 69 73 20 6e 6f 74 20 74 6f 20 68 61 76 65 20 61 6e 79
2e 20 43 61 70 70 69 6e 67 20 74 68 65 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 63 6f 75 6e 74 20 61 74 20 74 68
65 20 6e 75 6d 62 65 72 20 6f 66 20 63 61 72 64 73 20 69 73 20 77 68 61
74 20 73 74 6f 70 73 20 74 68 72 65 65 20 63 61 72 64 73 20 6f 6e 0a 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 61 20
77 69 64 65 20 73 63 72 65 65 6e 20 75 73 69 6e 67 20 74 68 72 65 65 20
6f 66 20 65 69 67 68 74 20 70 6f 73 73 69 62 6c 65 20 63 6f 6c 75 6d 6e
73 20 61 6e 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 63 61 6c 6c 69 6e 67 20 74 68 65 20 6f 74 68 65 72 20 66
69 76 65 20 6e 6f 74 68 69 6e 67 2e 70 70 6f 73 69 74 69 6f 6e 73 2d 64
6f 2d 6e 6f 74 79 01 6e 54 68 65 20 63 6f 6c 75 6d 6e 20 63 6f 75 6e 74
20 63 6f 6d 65 73 20 66 72 6f 6d 20 74 68 65 20 77 69 64 74 68 20 6f 66
20 74 68 65 20 77 69 6e 64 6f 77 20 69 6e 0a 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 75 73 65 2c 20 73 6f 20 74
77 6f 20 64 65 76 69 63 65 73 20 70 61 63 6b 20 74 68 65 20 73 61 6d 65
20 62 6f 61 72 64 20 64 69 66 66 65 72 65 6e 74 6c 79 20 61 6e 64 0a 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 6e
65 69 74 68 65 72 20 69 73 20 77 72 6f 6e 67 2e 20 41 75 74 6f 73 6e 61
70 20 63 6f 6f 72 64 69 6e 61 74 65 73 20 61 72 65 20 72 65 63 6f 6d 70
75 74 65 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 6c 6f 63 61 6c 6c 79 20 6f 6e 20 65 76 65 72 79 20 72 65
6e 64 65 72 20 61 6e 64 20 6e 65 76 65 72 20 73 79 6e 63 65 64 2e 20 57
68 61 74 20 2a 69 73 2a 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 73 68 61 72 65 64 20 69 73 20 74 68 65 20 6f
72 64 65 72 2c 20 61 6e 64 20 74 68 61 74 20 69 73 20 77 68 61 74 20 61
20 64 72 61 67 20 63 68 61 6e 67 65 73 2e 78 18 6d 6f 64 65 2d 62 65 6c
6f 6e 67 73 2d 74 6f 2d 74 68 65 2d 6c 61 77 68 78 7c 49 74 20 69 73 20
70 61 72 74 20 6f 66 20 77 68 61 74 20 74 68 61 74 20 62 6f 61 72 64 20
2a 69 73 2a 2c 20 61 6e 64 20 65 76 65 72 79 6f 6e 65 0a 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 77 68 6f 20 6f 70 65 6e 73 20 69 74 20 73 68 6f 75 6c 64 20 66
69 6e 64 20 69 74 20 61 73 20 69 74 20 77 61 73 20 6c 65 66 74 2e 78 1e
63 6f 6e 74 61 69 6e 65 64 2d 63 61 72 64 73 2d 61 72 65 2d 6c 65 66 74
2d 61 6c 6f 6e 65 79 01 39 43 61 72 64 73 20 69 6e 73 69 64 65 20 61 20
63 6f 6e 74 61 69 6e 65 72 20 62 65 6c 6f 6e 67 20 74 6f 20 74 68 65 0a
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 66 72 61 6d 65 20 61 6e 64 20
74 72 61 76 65 6c 20 77 69 74 68 20 69 74 3b 20 6c 69 66 74 69 6e 67 20
74 68 65 6d 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 69 6e 74 6f 20
74 68 65 20 74 6f 70 2d 6c 65 76 65 6c 20 66 6c 6f 77 20 77 6f 75 6c 64
20 71 75 69 65 74 6c 79 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 64
69 73 6d 61 6e 74 6c 65 20 61 20 67 72 6f 75 70 69 6e 67 20 73 6f 6d 65
6f 6e 65 20 6d 61 64 65 20 6f 6e 0a 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 70 75 72 70 6f 73 65 2e 68 73 74 61 63 6b 69 6e 67 78 78 43 6f 6e
74 61 69 6e 65 72 73 20 73 6f 72 74 20 62 65 66 6f 72 65 20 6f 72 64 69
6e 61 72 79 20 63 61 72 64 73 2c 20 74 68 65 6e 20 62 79 20 74 68 65 20
7a 20 66 69 65 6c 64 2c 20 73 6f 20 61 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 66 72 61 6d 65 20 6e 65 76 65 72 20 70 61 69 6e 74 73 20 6f
76 65 72 20 69 74 73 20 6f 77 6e 20 63 68 69 6c 64 72 65 6e 2e 68 76 69
65 77 70 6f 72 74 a5 63 66 69 74 78 8e 5a 6f 6f 6d 20 61 6e 64 20 63 65
6e 74 72 65 20 6f 6e 20 74 68 65 20 62 6f 75 6e 64 69 6e 67 20 62 6f 78
20 6f 66 20 74 68 65 20 67 69 76 65 6e 20 63 61 72 64 73 2c 20 6f 72 20
6f 66 20 61 6c 6c 20 6f 66 0a 20 20 20 20 20 20 20 20 20 20 20 74 68 65
6d 3b 20 61 6e 20 65 6d 70 74 79 20 62 6f 61 72 64 20 72 65 73 65 74 73
20 74 6f 20 74 68 65 20 76 69 65 77 70 6f 72 74 20 63 65 6e 74 72 65 20
61 74 20 73 63 61 6c 65 20 31 2e 65 73 74 61 74 65 78 ca 54 68 72 65 65
20 6e 75 6d 62 65 72 73 3a 20 78 2c 20 79 20 74 72 61 6e 73 6c 61 74 69
6f 6e 20 61 6e 64 20 6b 20 73 63 61 6c 65 2e 20 41 70 70 6c 69 65 64 20
61 73 20 61 20 73 69 6e 67 6c 65 0a 20 20 20 20 20 20 20 20 20 20 20 20
20 74 72 61 6e 73 66 6f 72 6d 20 6f 6e 20 74 68 65 20 77 6f 72 6c 64 20
6c 61 79 65 72 20 e2 80 94 20 74 72 61 6e 73 6c 61 74 65 33 64 20 74 68
65 6e 20 73 63 61 6c 65 20 e2 80 94 20 73 6f 20 74 68 65 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 62 72 6f 77 73 65 72 20 63 6f 6d 70 6f 73 69
74 65 73 20 72 61 74 68 65 72 20 74 68 61 6e 20 72 65 6c 61 79 69 6e 67
20 6f 75 74 2e 65 77 68 65 65 6c 78 da 57 69 74 68 20 61 20 6d 6f 64 69
66 69 65 72 20 68 65 6c 64 2c 20 7a 6f 6f 6d 20 62 79 20 65 78 70 28 2d
64 65 6c 74 61 59 20 2a 20 30 2e 30 31 29 20 61 74 20 74 68 65 20 63 75
72 73 6f 72 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 57 69 74 68 6f
75 74 2c 20 70 61 6e 20 62 79 20 73 75 62 74 72 61 63 74 69 6e 67 20 74
68 65 20 64 65 6c 74 61 73 2e 20 54 68 65 20 68 61 6e 64 6c 65 72 20 69
73 20 72 65 67 69 73 74 65 72 65 64 0a 20 20 20 20 20 20 20 20 20 20 20
20 20 61 73 20 6e 6f 6e 2d 70 61 73 73 69 76 65 20 62 65 63 61 75 73 65
20 69 74 20 6d 75 73 74 20 70 72 65 76 65 6e 74 20 74 68 65 20 70 61 67
65 27 73 20 6f 77 6e 20 73 63 72 6f 6c 6c 2e 6b 7a 6f 6f 6d 2d 6c 69 6d
69 74 73 a2 67 6d 61 78 69 6d 75 6d 06 67 6d 69 6e 69 6d 75 6d c4 82 21
08 6d 7a 6f 6f 6d 2d 61 74 2d 70 6f 69 6e 74 79 01 33 5a 6f 6f 6d 69 6e
67 20 6d 75 73 74 20 6b 65 65 70 20 74 68 65 20 70 6f 69 6e 74 20 75 6e
64 65 72 20 74 68 65 20 63 75 72 73 6f 72 20 66 69 78 65 64 3a 0a 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 66 20 3d 20 6e
65 77 4b 20 2f 20 6f 6c 64 4b 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 78 20 3d 20 73 78 20 2d 20 28 73 78 20 2d 20 78
29 20 2a 20 66 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 79 20 3d 20 73 79 20 2d 20 28 73 79 20 2d 20 79 29 20 2a 20 66
0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 41 6e
63 68 6f 72 69 6e 67 20 6f 6e 20 74 68 65 20 76 69 65 77 70 6f 72 74 20
63 65 6e 74 72 65 20 69 6e 73 74 65 61 64 20 6d 61 6b 65 73 20 74 68 65
20 62 6f 61 72 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 73 6c 69 64 65 20 6f 75 74 20 66 72 6f 6d 20 75 6e 64 65 72
20 74 68 65 20 70 6f 69 6e 74 65 72 2e 6b 63 6f 6e 66 6f 72 6d 61 6e 63
65 a9 63 69 6e 6b a4 64 6e 6f 74 65 78 df 53 69 7a 65 20 36 2c 20 73 61
6d 70 6c 65 73 20 61 6c 6f 6e 67 20 61 20 73 74 72 61 69 67 68 74 20 6c
69 6e 65 20 73 6f 20 6f 6e 6c 79 20 70 72 65 73 73 75 72 65 20 61 6e 64
20 73 70 61 63 69 6e 67 0a 20 20 20 20 20 20 20 20 20 20 20 20 76 61 72
79 2e 20 52 61 64 69 69 20 61 72 65 20 77 68 61 74 20 74 68 65 20 64 6f
63 75 6d 65 6e 74 65 64 20 66 6f 72 6d 75 6c 61 65 20 70 72 6f 64 75 63
65 3b 20 61 20 70 6f 72 74 20 77 68 6f 73 65 0a 20 20 20 20 20 20 20 20
20 20 20 20 6e 75 6d 62 65 72 73 20 64 69 66 66 65 72 20 68 61 73 20 61
20 64 69 66 66 65 72 65 6e 74 20 70 65 6e 2c 20 77 68 61 74 65 76 65 72
20 69 74 73 20 63 6f 64 65 20 6c 6f 6f 6b 73 20 6c 69 6b 65 2e 65 67 69
76 65 6e a2 64 73 69 7a 65 06 67 73 61 6d 70 6c 65 73 78 26 78 20 73 70
61 63 65 64 20 30 2c 20 31 30 2c 20 32 34 2c 20 34 30 2c 20 35 38 20 6f
6e 20 6f 6e 65 20 61 78 69 73 67 76 65 63 74 6f 72 73 85 a5 61 69 00 61
78 c4 82 20 00 61 79 c4 82 20 00 66 72 61 64 69 75 73 c4 82 22 19 08 28
68 70 72 65 73 73 75 72 65 c4 82 21 18 1e a5 61 69 01 61 78 c4 82 20 18
3e 61 79 c4 82 20 00 66 72 61 64 69 75 73 c4 82 22 19 09 42 68 70 72 65
73 73 75 72 65 c4 82 21 18 3c a5 61 69 02 61 78 c4 82 20 18 ac 61 79 c4
82 20 00 66 72 61 64 69 75 73 c4 82 22 19 0b 15 68 70 72 65 73 73 75 72
65 c4 82 21 18 5a a5 61 69 03 61 78 c4 82 20 19 01 39 61 79 c4 82 20 00
66 72 61 64 69 75 73 c4 82 22 19 0b 01 68 70 72 65 73 73 75 72 65 c4 82
21 18 37 a5 61 69 04 61 78 c4 82 20 19 01 df 61 79 c4 82 20 00 66 72 61
64 69 75 73 c4 82 22 19 09 ab 68 70 72 65 73 73 75 72 65 c4 82 21 14 6a
61 6c 73 6f 2d 63 68 65 63 6b 84 78 3f 61 20 73 61 6d 70 6c 65 20 63 6c
6f 73 65 72 20 74 68 61 6e 20 31 2e 31 20 74 6f 20 69 74 73 20 70 72 65
64 65 63 65 73 73 6f 72 20 69 73 20 64 72 6f 70 70 65 64 20 65 6e 74 69
72 65 6c 79 78 38 61 20 73 74 72 6f 6b 65 20 6f 66 20 6f 6e 65 20 73 61
6d 70 6c 65 20 72 65 6e 64 65 72 73 20 61 73 20 61 20 63 69 72 63 6c 65
20 6f 66 20 69 74 73 20 72 61 64 69 75 73 78 40 74 68 65 20 6c 61 73 74
20 31 34 25 20 61 6e 64 20 66 69 72 73 74 20 31 30 25 20 74 61 70 65 72
2c 20 66 6c 6f 6f 72 65 64 20 61 74 20 30 2e 31 32 20 6f 66 20 66 75 6c
6c 20 72 61 64 69 75 73 78 33 61 20 68 69 67 68 6c 69 67 68 74 65 72 20
73 74 72 6f 6b 65 20 73 6b 69 70 73 20 74 68 65 20 74 61 70 65 72 20 61
6e 64 20 73 74 61 79 73 20 66 6c 61 74 65 63 6c 61 69 6d 78 de 41 6e 20
69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f 6e 20 69 73 20 64 65 72 69 76 65
64 20 66 72 6f 6d 20 74 68 69 73 20 64 6f 63 75 6d 65 6e 74 20 69 66 20
69 74 20 73 61 74 69 73 66 69 65 73 0a 20 20 20 20 20 20 20 20 20 20 20
65 76 65 72 79 20 76 65 63 74 6f 72 20 69 6e 20 74 68 69 73 20 73 65 63
74 69 6f 6e 2e 20 4e 6f 74 68 69 6e 67 20 65 6c 73 65 20 69 73 20 72 65
71 75 69 72 65 64 2c 20 61 6e 64 20 70 61 73 73 69 6e 67 0a 20 20 20 20
20 20 20 20 20 20 20 62 79 20 61 20 64 69 66 66 65 72 65 6e 74 20 69 6e
74 65 72 6e 61 6c 20 64 65 73 69 67 6e 20 69 73 20 6e 6f 74 20 6d 65 72
65 6c 79 20 70 65 72 6d 69 74 74 65 64 20 62 75 74 20 65 78 70 65 63 74
65 64 2e 65 64 72 69 66 74 79 01 13 54 68 69 73 20 69 73 20 61 6c 73 6f
20 74 68 65 20 6f 6e 6c 79 20 64 65 66 65 6e 63 65 20 61 67 61 69 6e 73
74 20 74 68 65 20 64 6f 63 75 6d 65 6e 74 20 67 6f 69 6e 67 20 73 74 61
6c 65 2e 0a 20 20 20 20 20 20 20 20 20 20 20 52 75 6e 20 74 68 65 20 73
75 69 74 65 20 69 6e 20 74 68 65 20 62 75 69 6c 64 3a 20 77 68 65 6e 20
74 68 65 20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f 6e 20 73 74 6f 70 73
20 73 61 74 69 73 66 79 69 6e 67 0a 20 20 20 20 20 20 20 20 20 20 20 69
74 2c 20 74 68 65 20 64 69 76 65 72 67 65 6e 63 65 20 73 75 72 66 61 63
65 73 20 69 6d 6d 65 64 69 61 74 65 6c 79 20 72 61 74 68 65 72 20 74 68
61 6e 20 73 69 6c 65 6e 74 6c 79 2c 20 61 6e 64 0a 20 20 20 20 20 20 20
20 20 20 20 74 68 65 20 64 6f 63 75 6d 65 6e 74 20 73 74 6f 70 73 20 62
65 69 6e 67 20 63 6f 6e 66 69 64 65 6e 74 6c 79 20 77 72 6f 6e 67 2e 65
6d 65 72 67 65 a7 64 6c 61 77 73 83 a3 63 6c 61 77 da 00 01 11 d4 6b 63
6f 6d 6d 75 74 61 74 69 76 65 66 76 65 63 74 6f 72 da 00 01 11 d4 65 6d
2d 30 30 31 69 73 74 61 74 65 6d 65 6e 74 6e 61 2b 62 20 65 71 75 61 6c
73 20 62 2b 61 a3 63 6c 61 77 da 00 01 11 d4 6b 61 73 73 6f 63 69 61 74
69 76 65 66 76 65 63 74 6f 72 da 00 01 11 d4 65 6d 2d 30 30 32 69 73 74
61 74 65 6d 65 6e 74 76 28 61 2b 62 29 2b 63 20 65 71 75 61 6c 73 20 61
2b 28 62 2b 63 29 a3 63 6c 61 77 da 00 01 11 d4 6a 69 64 65 6d 70 6f 74
65 6e 74 66 76 65 63 74 6f 72 da 00 01 11 d4 65 6d 2d 30 30 33 69 73 74
61 74 65 6d 65 6e 74 72 28 61 2b 62 29 2b 62 20 65 71 75 61 6c 73 20 61
2b 62 67 76 65 63 74 6f 72 73 88 a5 61 61 6c 6e 31 2f 31 30 2c 20 6e 32
2f 32 30 61 62 71 6e 32 2f 33 30 20 78 3d 39 39 2c 20 6e 33 2f 31 35 62
69 64 da 00 01 11 d4 65 6d 2d 30 30 31 66 65 78 70 65 63 74 78 25 6e 31
2c 20 6e 32 20 78 3d 39 39 2c 20 6e 33 20 e2 80 94 20 73 61 6d 65 20 65
69 74 68 65 72 20 6f 72 64 65 72 66 67 75 61 72 64 73 78 20 6f 72 64 65
72 20 6f 66 20 73 79 6e 63 20 63 68 61 6e 67 69 6e 67 20 74 68 65 20 62
6f 61 72 64 a5 61 61 65 6e 31 2f 31 30 61 62 70 6e 31 2f 33 30 20 78 3d
33 2c 20 6e 32 2f 31 31 62 69 64 da 00 01 11 d4 65 6d 2d 30 30 32 66 65
78 70 65 63 74 78 2d 77 69 74 68 20 63 3d 6e 31 2f 32 30 20 78 3d 32 2c
20 6e 33 2f 34 30 3a 20 6e 31 20 78 3d 33 20 62 6f 74 68 20 70 61 69 72
69 6e 67 73 66 67 75 61 72 64 73 78 22 74 68 72 65 65 20 64 65 76 69 63
65 73 20 64 69 76 65 72 67 69 6e 67 20 6f 6e 20 70 61 69 72 69 6e 67 a5
61 61 65 6e 31 2f 31 30 61 62 70 6e 31 2f 32 30 20 78 3d 35 2c 20 6e 32
2f 31 32 62 69 64 da 00 01 11 d4 65 6d 2d 30 30 33 66 65 78 70 65 63 74
78 24 6d 65 72 67 69 6e 67 20 62 20 74 77 69 63 65 20 6d 6f 72 65 20 63
68 61 6e 67 65 73 20 6e 6f 74 68 69 6e 67 66 67 75 61 72 64 73 78 21 72
65 70 65 61 74 65 64 20 70 6f 6c 6c 73 20 6d 75 74 61 74 69 6e 67 20 74
68 65 20 62 6f 61 72 64 a5 61 61 6a 74 6f 6d 62 20 6e 31 40 35 30 61 62
65 6e 31 2f 31 30 62 69 64 da 00 01 11 d4 65 6d 2d 30 30 34 66 65 78 70
65 63 74 78 1d 6e 31 20 61 62 73 65 6e 74 2c 20 74 6f 6d 62 20 6e 31 40
35 30 20 63 61 72 72 69 65 64 66 67 75 61 72 64 73 78 22 61 20 63 61 72
64 20 64 65 6c 65 74 65 64 20 6f 66 66 6c 69 6e 65 20 63 6f 6d 69 6e 67
20 62 61 63 6b a5 61 61 6a 74 6f 6d 62 20 6e 31 40 35 30 61 62 69 6e 31
2f 38 30 20 78 3d 37 62 69 64 da 00 01 11 d4 65 6d 2d 30 30 35 66 65 78
70 65 63 74 6f 6e 31 20 70 72 65 73 65 6e 74 2c 20 78 3d 37 66 67 75 61
72 64 73 78 20 61 20 64 65 6c 65 74 65 20 6f 75 74 72 61 6e 6b 69 6e 67
20 61 20 6c 61 74 65 72 20 65 64 69 74 a5 61 61 71 74 6f 6d 62 20 6e 31
40 35 30 2c 20 6e 32 40 31 30 61 62 71 74 6f 6d 62 20 6e 31 40 32 30 2c
20 6e 33 40 37 30 62 69 64 da 00 01 11 d4 65 6d 2d 30 30 36 66 65 78 70
65 63 74 78 18 74 6f 6d 62 20 6e 31 40 35 30 2c 20 6e 32 40 31 30 2c 20
6e 33 40 37 30 66 67 75 61 72 64 73 78 25 74 6f 6d 62 73 74 6f 6e 65 73
20 72 65 67 72 65 73 73 69 6e 67 20 74 6f 20 6f 6c 64 65 72 20 73 74 61
6d 70 73 a5 61 61 72 6e 31 2f 31 30 20 62 79 3d 64 65 76 2d 61 20 78 3d
31 61 62 72 6e 31 2f 31 30 20 62 79 3d 64 65 76 2d 62 20 78 3d 32 62 69
64 da 00 01 11 d4 65 6d 2d 30 30 37 66 65 78 70 65 63 74 78 1d 69 64 65
6e 74 69 63 61 6c 20 72 65 73 75 6c 74 20 65 69 74 68 65 72 20 6f 72 64
65 72 66 67 75 61 72 64 73 78 26 61 20 74 69 65 20 72 65 73 6f 6c 76 69
6e 67 20 64 69 66 66 65 72 65 6e 74 6c 79 20 70 65 72 20 64 65 76 69 63
65 a5 61 61 6f 6e 31 2f 31 30 20 68 74 6d 6c 3d 6d 69 6e 65 61 62 78 1a
6e 31 2f 32 30 20 62 79 3d 64 65 76 2d 62 20 68 74 6d 6c 3d 74 68 65 69
72 73 62 69 64 da 00 01 11 d4 65 6d 2d 30 30 38 66 65 78 70 65 63 74 78
1f 6b 65 65 70 73 20 74 68 65 69 72 73 2c 20 72 65 70 6f 72 74 73 20 6c
6f 73 74 3d 6d 69 6e 65 66 67 75 61 72 64 73 78 20 61 20 6c 6f 73 69 6e
67 20 65 64 69 74 20 76 61 6e 69 73 68 69 6e 67 20 73 69 6c 65 6e 74 6c
79 68 6e 6f 74 61 74 69 6f 6e 78 7d 41 20 63 61 72 64 20 69 73 20 77 72
69 74 74 65 6e 20 69 64 2f 73 74 61 6d 70 2c 20 6f 70 74 69 6f 6e 61 6c
6c 79 20 77 69 74 68 20 61 20 66 69 65 6c 64 2e 20 41 0a 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 74 6f 6d 62 73 74 6f 6e 65 20 69 73 20
77 72 69 74 74 65 6e 20 69 64 40 73 74 61 6d 70 2e 20 4d 65 72 67 69 6e
67 20 69 73 20 77 72 69 74 74 65 6e 20 61 2b 62 2e 69 74 69 65 2d 62 72
65 61 6b 78 b3 45 71 75 61 6c 20 73 74 61 6d 70 73 20 72 65 73 6f 6c 76
65 20 6f 6e 20 64 65 76 69 63 65 20 69 64 2e 20 41 72 62 69 74 72 61 72
79 2c 20 62 75 74 20 69 64 65 6e 74 69 63 61 6c 0a 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 65 76 65 72 79 77 68 65 72 65 2c 20 73 6f
20 65 76 65 72 79 20 72 65 70 6c 69 63 61 20 61 67 72 65 65 73 20 e2 80
94 20 77 68 69 63 68 20 69 73 20 74 68 65 20 6f 6e 6c 79 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 70 72 6f 70 65 72 74 79 20 61 20
74 69 65 2d 62 72 65 61 6b 20 6e 65 65 64 73 2e 69 77 68 79 2d 6d 2d 30
30 39 79 01 0f 57 69 74 68 6f 75 74 20 69 74 2c 20 61 20 70 6f 6c 6c 20
6c 61 6e 64 69 6e 67 20 69 6e 20 74 68 65 20 67 61 70 20 62 65 74 77 65
65 6e 20 61 20 6b 65 79 73 74 72 6f 6b 65 20 61 6e 64 0a 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 74 68 65 20 64 65 62 6f 75 6e 63 65
64 20 73 61 76 65 20 72 65 70 6f 72 74 65 64 20 61 20 63 6c 61 73 68 20
61 67 61 69 6e 73 74 20 74 68 69 73 20 64 65 76 69 63 65 27 73 20 6f 77
6e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 77 6f 72 6b 2c
20 61 6e 64 20 74 68 65 20 62 6f 61 72 64 20 66 69 6c 6c 65 64 20 77 69
74 68 20 28 63 6f 6e 66 6c 69 63 74 29 20 63 6f 70 69 65 73 20 6f 66 20
6f 6e 65 20 6e 6f 74 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 77 68 69 6c 65 20 6e 6f 74 68 69 6e 67 20 65 6c 73 65 20 77 61 73
20 65 64 69 74 69 6e 67 20 69 74 2e 74 73 65 6c 66 2d 63 6f 6e 66 6c 69
63 74 2d 76 65 63 74 6f 72 81 a5 62 69 64 da 00 01 11 d4 65 6d 2d 30 30
39 65 6c 6f 63 61 6c 74 6e 31 2f 32 30 20 68 74 6d 6c 3d 74 79 70 65 64
2d 6e 6f 77 66 65 78 70 65 63 74 78 1f 6e 6f 20 63 6f 6e 66 6c 69 63 74
3b 20 6c 6f 63 61 6c 20 73 69 6d 70 6c 79 20 61 68 65 61 64 66 67 75 61
72 64 73 78 2d 61 20 64 65 76 69 63 65 20 66 6f 72 6b 69 6e 67 20 61 67
61 69 6e 73 74 20 69 74 73 20 6f 77 6e 20 75 6e 73 61 76 65 64 20 65 64
69 74 66 73 65 72 76 65 72 75 6e 31 2f 31 30 20 68 74 6d 6c 3d 6c 61 73
74 2d 73 61 76 65 64 78 18 63 6f 6e 66 6c 69 63 74 2d 72 65 71 75 69 72
65 73 2d 61 2d 62 61 73 65 79 01 ed 41 20 63 6f 6e 66 6c 69 63 74 20 69
73 20 61 20 63 61 72 64 20 2a 62 6f 74 68 2a 20 73 69 64 65 73 20 63 68
61 6e 67 65 64 20 73 69 6e 63 65 0a 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 74 68 65 79
20 6c 61 73 74 20 61 67 72 65 65 64 2c 20 77 68 69 63 68 20 63 61 6e 6e
6f 74 20 62 65 20 6a 75 64 67 65 64 20 66 72 6f 6d 0a 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 74 68 65 20 74 77 6f 20 76 65 72 73 69 6f 6e 73 20 61 6c 6f 6e 65
2e 20 54 68 65 20 62 61 73 65 20 63 61 72 72 69 65 73 20 74 68 65 0a 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 73 74 61 6d 70 20 65 61 63 68 20 63 61 72 64 20 68
65 6c 64 20 77 68 65 6e 20 74 68 69 73 20 72 65 70 6c 69 63 61 20 61 6e
64 20 74 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 73 65 72 76 65 72 20 77 65 72
65 20 6c 61 73 74 20 69 6e 20 73 74 65 70 2e 20 4f 6e 65 20 73 69 64 65
20 6d 6f 76 65 64 20 6f 66 66 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 69 74 3a 20 74
61 6b 65 20 74 68 61 74 20 6f 6e 65 2c 20 6e 6f 74 68 69 6e 67 20 69 73
20 69 6e 20 64 69 73 70 75 74 65 2e 20 42 6f 74 68 0a 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 6d 6f 76 65 64 3a 20 61 20 67 65 6e 75 69 6e 65 20 63 6c 61 73 68
2e 66 61 63 63 65 73 73 a3 64 6e 6f 74 65 78 90 45 76 65 72 79 20 72 6f
77 20 69 73 20 61 20 72 65 71 75 65 73 74 20 74 68 61 74 20 6d 75 73 74
20 73 75 63 63 65 65 64 20 6f 72 20 6d 75 73 74 20 66 61 69 6c 2e 20 54
68 65 20 66 61 69 6c 75 72 65 73 0a 20 20 20 20 20 20 20 20 20 20 20 20
6d 61 74 74 65 72 20 6d 6f 72 65 20 74 68 61 6e 20 74 68 65 20 73 75 63
63 65 73 73 65 73 3a 20 65 61 63 68 20 69 73 20 61 20 77 61 79 20 69 6e
20 74 68 61 74 20 77 61 73 20 74 72 69 65 64 2e 66 6d 61 74 72 69 78 98
1c a4 62 69 64 da 00 01 11 d4 65 61 2d 30 30 31 66 61 63 74 69 6f 6e 6e
63 72 65 61 74 65 20 61 20 62 6f 61 72 64 66 63 61 6c 6c 65 72 da 00 01
11 d4 65 6f 77 6e 65 72 66 65 78 70 65 63 74 da 00 01 11 d4 67 61 6c 6c
6f 77 65 64 a4 62 69 64 da 00 01 11 d4 65 61 2d 30 30 32 66 61 63 74 69
6f 6e 6e 72 65 61 64 20 6f 77 6e 20 62 6f 61 72 64 66 63 61 6c 6c 65 72
da 00 01 11 d4 65 6f 77 6e 65 72 66 65 78 70 65 63 74 da 00 01 11 d4 67
61 6c 6c 6f 77 65 64 a4 62 69 64 da 00 01 11 d4 65 61 2d 30 30 33 66 61
63 74 69 6f 6e 6e 72 65 61 64 20 74 68 65 20 62 6f 61 72 64 66 63 61 6c
6c 65 72 da 00 01 11 d4 68 73 74 72 61 6e 67 65 72 66 65 78 70 65 63 74
da 00 01 11 d4 67 72 65 66 75 73 65 64 a4 62 69 64 da 00 01 11 d4 65 61
2d 30 30 34 66 61 63 74 69 6f 6e 6e 72 65 61 64 20 74 68 65 20 62 6f 61
72 64 66 63 61 6c 6c 65 72 da 00 01 11 d4 69 61 6e 6f 6e 79 6d 6f 75 73
66 65 78 70 65 63 74 da 00 01 11 d4 67 72 65 66 75 73 65 64 a4 62 69 64
da 00 01 11 d4 65 61 2d 30 30 35 66 61 63 74 69 6f 6e 78 18 72 65 61 64
20 74 68 65 20 72 65 63 6f 72 64 20 64 69 72 65 63 74 6c 79 66 63 61 6c
6c 65 72 da 00 01 11 d4 68 73 74 72 61 6e 67 65 72 66 65 78 70 65 63 74
da 00 01 11 d4 67 72 65 66 75 73 65 64 a4 62 69 64 da 00 01 11 d4 65 61
2d 30 30 36 66 61 63 74 69 6f 6e 78 1c 6c 69 73 74 20 74 68 65 20 63 6f
6c 6c 65 63 74 69 6f 6e 20 64 69 72 65 63 74 6c 79 66 63 61 6c 6c 65 72
da 00 01 11 d4 68 73 74 72 61 6e 67 65 72 66 65 78 70 65 63 74 da 00 01
11 d4 67 72 65 66 75 73 65 64 a4 62 69 64 da 00 01 11 d4 65 61 2d 30 30
37 66 61 63 74 69 6f 6e 6f 73 68 61 72 65 20 74 68 65 20 62 6f 61 72 64
66 63 61 6c 6c 65 72 da 00 01 11 d4 65 6f 77 6e 65 72 66 65 78 70 65 63
74 da 00 01 11 d4 67 61 6c 6c 6f 77 65 64 a4 62 69 64 da 00 01 11 d4 65
61 2d 30 30 38 66 61 63 74 69 6f 6e 64 72 65 61 64 66 63 61 6c 6c 65 72
da 00 01 11 d4 6e 69 6e 76 69 74 65 64 2d 65 64 69 74 6f 72 66 65 78 70
65 63 74 da 00 01 11 d4 67 61 6c 6c 6f 77 65 64 a4 62 69 64 da 00 01 11
d4 65 61 2d 30 30 39 66 61 63 74 69 6f 6e 64 72 65 61 64 66 63 61 6c 6c
65 72 da 00 01 11 d4 6e 69 6e 76 69 74 65 64 2d 76 69 65 77 65 72 66 65
78 70 65 63 74 da 00 01 11 d4 67 61 6c 6c 6f 77 65 64 a4 62 69 64 da 00
01 11 d4 65 61 2d 30 31 30 66 61 63 74 69 6f 6e 65 77 72 69 74 65 66 63
61 6c 6c 65 72 da 00 01 11 d4 6e 69 6e 76 69 74 65 64 2d 65 64 69 74 6f
72 66 65 78 70 65 63 74 da 00 01 11 d4 67 61 6c 6c 6f 77 65 64 a4 62 69
64 da 00 01 11 d4 65 61 2d 30 31 31 66 61 63 74 69 6f 6e 65 77 72 69 74
65 66 63 61 6c 6c 65 72 da 00 01 11 d4 6e 69 6e 76 69 74 65 64 2d 76 69
65 77 65 72 66 65 78 70 65 63 74 da 00 01 11 d4 67 72 65 66 75 73 65 64
a4 62 69 64 da 00 01 11 d4 65 61 2d 30 31 32 66 61 63 74 69 6f 6e 67 72
65 73 68 61 72 65 66 63 61 6c 6c 65 72 da 00 01 11 d4 6e 69 6e 76 69 74
65 64 2d 65 64 69 74 6f 72 66 65 78 70 65 63 74 da 00 01 11 d4 67 72 65
66 75 73 65 64 a4 62 69 64 da 00 01 11 d4 65 61 2d 30 31 33 66 61 63 74
69 6f 6e 67 72 65 73 68 61 72 65 66 63 61 6c 6c 65 72 da 00 01 11 d4 69
6e 6f 6e 2d 6f 77 6e 65 72 66 65 78 70 65 63 74 da 00 01 11 d4 67 72 65
66 75 73 65 64 a4 62 69 64 da 00 01 11 d4 65 61 2d 30 31 34 66 61 63 74
69 6f 6e 64 72 65 61 64 66 63 61 6c 6c 65 72 da 00 01 11 d4 6e 72 65 6d
6f 76 65 64 2d 6d 65 6d 62 65 72 66 65 78 70 65 63 74 da 00 01 11 d4 67
72 65 66 75 73 65 64 a4 62 69 64 da 00 01 11 d4 65 61 2d 30 31 35 66 61
63 74 69 6f 6e 6b 6c 69 73 74 20 62 6f 61 72 64 73 66 63 61 6c 6c 65 72
da 00 01 11 d4 65 6f 77 6e 65 72 66 65 78 70 65 63 74 68 73 65 65 73 20
6f 77 6e a4 62 69 64 da 00 01 11 d4 65 61 2d 30 31 36 66 61 63 74 69 6f
6e 6b 6c 69 73 74 20 62 6f 61 72 64 73 66 63 61 6c 6c 65 72 da 00 01 11
d4 66 6d 65 6d 62 65 72 66 65 78 70 65 63 74 75 73 65 65 73 20 74 68 65
20 73 68 61 72 65 64 20 62 6f 61 72 64 a4 62 69 64 da 00 01 11 d4 65 61
2d 30 31 37 66 61 63 74 69 6f 6e 6b 6c 69 73 74 20 62 6f 61 72 64 73 66
63 61 6c 6c 65 72 da 00 01 11 d4 6e 72 65 6d 6f 76 65 64 2d 6d 65 6d 62
65 72 66 65 78 70 65 63 74 6c 73 65 65 73 20 6e 6f 74 68 69 6e 67 a4 62
69 64 da 00 01 11 d4 65 61 2d 30 31 38 66 61 63 74 69 6f 6e 77 6f 62 74
61 69 6e 20 61 6e 20 75 70 6c 6f 61 64 20 74 69 63 6b 65 74 66 63 61 6c
6c 65 72 da 00 01 11 d4 65 6f 77 6e 65 72 66 65 78 70 65 63 74 da 00 01
11 d4 67 61 6c 6c 6f 77 65 64 a4 62 69 64 da 00 01 11 d4 65 61 2d 30 31
39 66 61 63 74 69 6f 6e 78 19 75 70 6c 6f 61 64 20 74 68 72 6f 75 67 68
20 74 68 65 20 74 69 63 6b 65 74 66 63 61 6c 6c 65 72 da 00 01 11 d4 65
6f 77 6e 65 72 66 65 78 70 65 63 74 da 00 01 11 d4 67 61 6c 6c 6f 77 65
64 a4 62 69 64 da 00 01 11 d4 65 61 2d 30 32 30 66 61 63 74 69 6f 6e 74
6f 62 74 61 69 6e 20 61 20 72 65 61 64 20 74 69 63 6b 65 74 66 63 61 6c
6c 65 72 da 00 01 11 d4 65 6f 77 6e 65 72 66 65 78 70 65 63 74 da 00 01
11 d4 67 61 6c 6c 6f 77 65 64 a4 62 69 64 da 00 01 11 d4 65 61 2d 30 32
31 66 61 63 74 69 6f 6e 73 72 65 61 64 20 74 68 65 20 61 73 73 65 74 20
62 61 63 6b 66 63 61 6c 6c 65 72 da 00 01 11 d4 65 6f 77 6e 65 72 66 65
78 70 65 63 74 6d 62 79 74 65 20 66 6f 72 20 62 79 74 65 a4 62 69 64 da
00 01 11 d4 65 61 2d 30 32 32 66 61 63 74 69 6f 6e 6e 72 65 61 64 20 74
68 65 20 61 73 73 65 74 66 63 61 6c 6c 65 72 da 00 01 11 d4 66 6d 65 6d
62 65 72 66 65 78 70 65 63 74 da 00 01 11 d4 67 61 6c 6c 6f 77 65 64 a4
62 69 64 da 00 01 11 d4 65 61 2d 30 32 33 66 61 63 74 69 6f 6e 6e 72 65
61 64 20 74 68 65 20 61 73 73 65 74 66 63 61 6c 6c 65 72 da 00 01 11 d4
68 73 74 72 61 6e 67 65 72 66 65 78 70 65 63 74 da 00 01 11 d4 67 72 65
66 75 73 65 64 a4 62 69 64 da 00 01 11 d4 65 61 2d 30 32 34 66 61 63 74
69 6f 6e 71 6f 62 74 61 69 6e 20 61 6e 79 20 74 69 63 6b 65 74 66 63 61
6c 6c 65 72 da 00 01 11 d4 68 73 74 72 61 6e 67 65 72 66 65 78 70 65 63
74 da 00 01 11 d4 67 72 65 66 75 73 65 64 a4 62 69 64 da 00 01 11 d4 65
61 2d 30 32 35 66 61 63 74 69 6f 6e 77 72 65 61 64 20 74 68 65 20 61 73
73 65 74 20 64 69 72 65 63 74 6c 79 66 63 61 6c 6c 65 72 da 00 01 11 d4
68 73 74 72 61 6e 67 65 72 66 65 78 70 65 63 74 da 00 01 11 d4 67 72 65
66 75 73 65 64 a4 62 69 64 da 00 01 11 d4 65 61 2d 30 32 36 66 61 63 74
69 6f 6e 75 75 73 65 20 61 20 74 61 6d 70 65 72 65 64 20 74 69 63 6b 65
74 66 63 61 6c 6c 65 72 da 00 01 11 d4 66 61 6e 79 6f 6e 65 66 65 78 70
65 63 74 da 00 01 11 d4 67 72 65 66 75 73 65 64 a4 62 69 64 da 00 01 11
d4 65 61 2d 30 32 37 66 61 63 74 69 6f 6e 72 64 65 6c 65 74 65 20 61 20
68 6f 6d 65 20 6c 61 77 68 66 63 61 6c 6c 65 72 da 00 01 11 d4 65 6f 77
6e 65 72 66 65 78 70 65 63 74 da 00 01 11 d4 67 72 65 66 75 73 65 64 a4
62 69 64 da 00 01 11 d4 65 61 2d 30 32 38 66 61 63 74 69 6f 6e 70 64 65
6c 65 74 65 20 74 68 65 20 62 6f 61 72 64 66 63 61 6c 6c 65 72 da 00 01
11 d4 6e 69 6e 76 69 74 65 64 2d 65 64 69 74 6f 72 66 65 78 70 65 63 74
da 00 01 11 d4 67 72 65 66 75 73 65 64 71 74 68 65 2d 66 69 6c 74 65 72
2d 76 65 63 74 6f 72 79 01 85 54 68 65 20 6d 65 6d 62 65 72 73 68 69 70
20 71 75 65 72 79 20 6d 75 73 74 20 62 65 0a 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 62 6f 61 72 64 20 3d 20
58 20 26 26 20 28 75 73 65 72 5f 69 64 20 3d 20 55 20 7c 7c 20 65 6d 61
69 6c 20 3d 20 45 29 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 54 65 73 74 20 69 74 20 62 79 20 67 69 76
69 6e 67 20 61 20 63 61 6c 6c 65 72 20 6d 65 6d 62 65 72 73 68 69 70 20
6f 66 20 61 6e 20 75 6e 72 65 6c 61 74 65 64 0a 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 62 6f 61 72 64 20 61
6e 64 20 61 73 6b 69 6e 67 20 66 6f 72 20 74 68 69 73 20 6f 6e 65 3a 20
74 68 65 20 61 6e 73 77 65 72 20 6d 75 73 74 20 62 65 0a 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 72 65 66 75
73 65 64 2e 20 57 69 74 68 6f 75 74 20 74 68 65 20 70 61 72 65 6e 74 68
65 73 65 73 20 69 74 20 69 73 20 61 6c 6c 6f 77 65 64 2c 20 61 6e 64 0a
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 74 68 61 74 20 69 73 20 61 20 64 61 74 61 20 6c 65 61 6b 20 72 61 74
68 65 72 20 74 68 61 6e 20 61 20 62 75 67 2e 66 6c 61 79 6f 75 74 a3 65
67 69 76 65 6e a4 63 70 61 64 0c 65 77 69 64 74 68 19 04 b0 66 63 6f 6c
75 6d 6e 19 01 0c 66 67 75 74 74 65 72 18 18 67 76 65 63 74 6f 72 73 84
a6 61 68 18 be 61 77 19 01 04 61 78 c4 82 20 18 78 61 79 c4 82 20 18 78
64 63 61 72 64 da 00 01 11 d4 61 61 67 63 6f 6c 75 6d 6e 73 04 a6 61 68
18 78 61 77 19 01 04 61 78 c4 82 20 19 0c 30 61 79 c4 82 20 18 78 64 63
61 72 64 da 00 01 11 d4 61 62 67 63 6f 6c 75 6d 6e 73 04 a6 61 68 19 01
2c 61 77 19 01 04 61 78 c4 82 20 19 17 e8 61 79 c4 82 20 18 78 64 63 61
72 64 da 00 01 11 d4 61 63 67 63 6f 6c 75 6d 6e 73 04 a6 61 68 18 50 61
77 19 01 04 61 78 c4 82 20 19 23 a0 61 79 c4 82 20 18 78 64 63 61 72 64
da 00 01 11 d4 61 64 67 63 6f 6c 75 6d 6e 73 04 6a 61 6c 73 6f 2d 63 68
65 63 6b 85 78 41 66 6f 75 72 20 63 61 72 64 73 20 6f 6e 20 61 20 31 32
30 30 20 77 69 64 74 68 20 70 72 6f 64 75 63 65 20 66 6f 75 72 20 63 6f
6c 75 6d 6e 73 2c 20 6e 6f 74 20 6f 6e 65 20 70 65 72 20 63 61 72 64 78
45 61 20 66 69 66 74 68 20 63 61 72 64 20 6c 61 6e 64 73 20 75 6e 64 65
72 20 74 68 65 20 73 68 6f 72 74 65 73 74 20 63 6f 6c 75 6d 6e 2c 20 6c
65 66 74 6d 6f 73 74 20 62 72 65 61 6b 69 6e 67 20 61 20 74 69 65 78 43
6f 6e 6c 79 20 61 20 73 74 72 65 74 63 68 61 62 6c 65 20 6b 69 6e 64 20
69 73 20 72 65 73 69 7a 65 64 3b 20 74 68 65 20 6f 74 68 65 72 73 20 6b
65 65 70 20 74 68 65 69 72 20 6f 77 6e 20 77 69 64 74 68 78 2d 63 61 72
64 73 20 69 6e 73 69 64 65 20 61 20 63 6f 6e 74 61 69 6e 65 72 20 61 72
65 20 6e 6f 74 20 6d 6f 76 65 64 20 61 74 20 61 6c 6c 78 45 70 6f 73 69
74 69 6f 6e 73 20 61 72 65 20 72 65 63 6f 6d 70 75 74 65 64 20 70 65 72
20 64 65 76 69 63 65 20 61 6e 64 20 6e 65 76 65 72 20 73 79 6e 63 65 64
3b 20 6f 72 64 65 72 20 69 73 20 73 79 6e 63 65 64 67 72 75 6e 6e 69 6e
67 a4 66 61 63 63 65 73 73 78 83 4e 65 65 64 73 20 61 20 6c 69 76 65 20
69 6e 73 74 61 6e 63 65 20 61 6e 64 20 74 68 72 65 65 20 61 63 63 6f 75
6e 74 73 2e 20 54 68 65 20 65 78 69 73 74 69 6e 67 20 73 63 72 69 70 74
0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 72 65 67 69 73 74 65 72 73
20 74 68 65 6d 2c 20 72 75 6e 73 20 74 68 65 20 6d 61 74 72 69 78 20 61
6e 64 20 6c 65 61 76 65 73 20 74 68 65 6d 20 62 65 68 69 6e 64 2e 6c 69
6e 2d 74 68 65 2d 62 75 69 6c 64 f5 70 77 68 79 2d 69 6e 2d 74 68 65 2d
62 75 69 6c 64 78 82 41 20 73 75 69 74 65 20 74 68 61 74 20 69 73 20 72
75 6e 20 77 68 65 6e 20 73 6f 6d 65 6f 6e 65 20 72 65 6d 65 6d 62 65 72
73 20 69 73 20 61 20 73 75 69 74 65 0a 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 74 68 61 74 20 72 65 70 6f 72 74
73 20 64 72 69 66 74 20 61 66 74 65 72 20 74 68 65 20 64 72 69 66 74 20
68 61 73 20 62 65 65 6e 20 73 68 69 70 70 65 64 2e 78 18 6d 65 72 67 65
2d 61 6e 64 2d 6c 61 79 6f 75 74 2d 61 6e 64 2d 69 6e 6b 78 79 50 75 72
65 20 66 75 6e 63 74 69 6f 6e 73 2e 20 4e 6f 20 62 72 6f 77 73 65 72 2c
20 6e 6f 20 73 65 72 76 65 72 2c 20 6e 6f 0a 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 62
6f 61 72 64 20 e2 80 94 20 66 65 65 64 20 74 68 65 20 69 6e 70 75 74 73
2c 20 63 6f 6d 70 61 72 65 20 74 68 65 20 6f 75 74 70 75 74 73 2e 68 74
72 61 6e 73 66 65 72 a2 64 6e 6f 74 65 78 bc 74 2d 30 30 31 20 61 6e 64
20 74 2d 30 30 32 20 61 72 65 20 74 68 65 20 74 77 6f 20 73 69 6c 65 6e
74 20 66 61 69 6c 75 72 65 73 3a 20 62 6f 74 68 20 69 64 73 20 73 74 61
79 20 76 61 6c 69 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 61 6e 64 20
73 69 6d 70 6c 79 20 70 6f 69 6e 74 20 61 74 20 6e 6f 74 68 69 6e 67 20
6f 6e 20 74 68 65 20 6e 65 77 20 73 65 72 76 65 72 2c 20 73 6f 20 61 20
70 6f 72 74 20 74 68 61 74 20 73 6b 69 70 73 0a 20 20 20 20 20 20 20 20
20 20 20 20 74 68 65 20 72 65 6d 61 70 20 6c 6f 6f 6b 73 20 6c 69 6b 65
20 69 74 20 77 6f 72 6b 65 64 2e 67 76 65 63 74 6f 72 73 84 a3 62 69 64
da 00 01 11 d4 65 74 2d 30 30 31 65 67 69 76 65 6e 78 2a 65 78 70 6f 72
74 20 74 77 6f 20 62 6f 61 72 64 73 2c 20 6f 6e 65 20 68 6f 6c 64 69 6e
67 20 61 20 6c 61 77 68 20 63 61 72 64 66 65 78 70 65 63 74 78 31 69 6d
70 6f 72 74 20 72 65 6d 61 70 73 20 62 6f 61 72 64 49 64 20 74 6f 20 74
68 65 20 6e 65 77 20 73 65 72 76 65 72 2d 6d 69 6e 74 65 64 20 69 64 a3
62 69 64 da 00 01 11 d4 65 74 2d 30 30 32 65 67 69 76 65 6e 78 23 65 78
70 6f 72 74 20 61 20 62 6f 61 72 64 20 68 6f 6c 64 69 6e 67 20 61 20 6d
65 64 69 61 20 63 61 72 64 66 65 78 70 65 63 74 78 2a 69 6d 70 6f 72 74
20 72 65 6d 61 70 73 20 62 6c 6f 62 49 64 20 61 6e 64 20 74 68 65 20 70
69 63 74 75 72 65 20 6c 6f 61 64 73 a3 62 69 64 da 00 01 11 d4 65 74 2d
30 30 33 65 67 69 76 65 6e 78 2e 69 6d 70 6f 72 74 20 61 20 66 69 6c 65
20 77 69 74 68 20 6d 65 6d 62 65 72 73 68 69 70 73 2c 20 77 69 74 68 6f
75 74 20 61 73 6b 69 6e 67 66 65 78 70 65 63 74 71 6e 6f 62 6f 64 79 20
69 73 20 69 6e 76 69 74 65 64 a3 62 69 64 da 00 01 11 d4 65 74 2d 30 30
34 65 67 69 76 65 6e 78 2b 69 6d 70 6f 72 74 20 74 68 65 20 73 61 6d 65
20 66 69 6c 65 20 77 69 74 68 20 73 68 61 72 69 6e 67 20 72 65 71 75 65
73 74 65 64 66 65 78 70 65 63 74 78 1d 6d 65 6d 62 65 72 73 20 61 72 65
20 72 65 73 74 6f 72 65 64 20 62 79 20 65 6d 61 69 6c 78 1a 63 6c 61 69
6d 73 2d 6e 61 6d 65 2d 74 68 65 69 72 2d 70 6c 61 74 66 6f 72 6d 79 03
76 41 20 63 6f 6e 66 6f 72 6d 61 6e 63 65 20 63 6c 61 69 6d 20 73 74 61
74 65 73 20 77 68 65 72 65 20 74 68 65 20 76 65 63 74 6f 72 73 0a 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 77 65 72 65 20 72 75 6e 2e 20 41 6e 20 69 6d 70 6c 65
6d 65 6e 74 61 74 69 6f 6e 20 6d 61 79 20 63 6c 61 69 6d 20 61 73 20 6d
61 6e 79 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 70 6c 61 74 66 6f 72 6d 73 20 61 73
20 69 74 20 6c 69 6b 65 73 20 61 6e 64 20 6d 61 79 20 6e 6f 74 20 63 6c
61 69 6d 20 6e 6f 6e 65 2e 0a 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 54 68 69 73 20
69 73 20 6e 6f 74 20 61 20 74 65 73 74 69 6e 67 20 6d 61 6e 64 61 74 65
20 e2 80 94 20 74 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 73 70 65 63 69 66 69
63 61 74 69 6f 6e 20 68 61 73 20 6e 6f 20 62 75 73 69 6e 65 73 73 20 64
69 63 74 61 74 69 6e 67 20 68 6f 77 0a 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 61 6e 79
6f 6e 65 20 77 6f 72 6b 73 20 e2 80 94 20 62 75 74 20 60 61 6c 6c 20 76
65 63 74 6f 72 73 20 70 61 73 73 60 20 61 6e 64 20 60 61 6c 6c 0a 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 76 65 63 74 6f 72 73 20 70 61 73 73 20 6f 6e 20 46 6c
75 74 74 65 72 20 77 65 62 60 20 61 72 65 20 64 69 66 66 65 72 65 6e 74
0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 73 74 61 74 65 6d 65 6e 74 73 2c 20 61 6e 64
20 6f 6e 6c 79 20 74 68 65 20 73 65 63 6f 6e 64 20 69 6e 76 69 74 65 73
20 74 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 71 75 65 73 74 69 6f 6e 20 74 68
61 74 20 6d 61 74 74 65 72 73 2e 20 41 20 73 69 62 6c 69 6e 67 20 70 72
6f 6a 65 63 74 27 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 69 6d 70 6c 65 6d 65 6e
74 61 74 69 6f 6e 20 70 61 73 73 65 64 20 65 76 65 72 79 20 76 65 63 74
6f 72 20 6e 61 74 69 76 65 6c 79 20 61 6e 64 0a 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
63 6f 75 6c 64 20 6e 6f 74 20 65 6e 63 6f 64 65 20 61 20 66 6c 6f 61 74
69 6e 67 2d 70 6f 69 6e 74 20 6e 75 6d 62 65 72 20 69 6e 20 61 0a 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 62 72 6f 77 73 65 72 2c 20 77 68 69 63 68 20 77 61 73
20 69 74 73 20 6f 77 6e 20 73 74 61 74 65 64 20 74 61 72 67 65 74 2e 6b
63 6f 6e 73 74 72 61 69 6e 74 73 a4 65 6d 65 64 69 61 79 01 06 44 6f 77
6e 73 63 61 6c 65 64 20 63 6c 69 65 6e 74 2d 73 69 64 65 20 74 68 72 6f
75 67 68 20 61 20 71 75 61 6c 69 74 79 20 6c 61 64 64 65 72 20 6f 66 20
30 2e 38 35 2c 20 30 2e 37 2c 20 30 2e 35 35 2c 0a 20 20 20 20 20 20 20
20 20 20 20 30 2e 34 2e 20 56 69 64 65 6f 20 77 6f 72 6b 73 20 62 75 74
20 69 73 20 63 61 70 70 65 64 20 62 79 20 74 68 65 20 73 61 6d 65 20 63
65 69 6c 69 6e 67 2c 20 73 6f 20 63 6c 69 70 73 20 6d 75 73 74 20 62 65
0a 20 20 20 20 20 20 20 20 20 20 20 61 20 66 65 77 20 73 65 63 6f 6e 64
73 3b 20 61 6e 79 74 68 69 6e 67 20 6c 61 72 67 65 72 20 69 73 20 72 65
66 75 73 65 64 20 77 69 74 68 20 61 20 63 6c 65 61 72 20 6d 65 73 73 61
67 65 0a 20 20 20 20 20 20 20 20 20 20 20 72 61 74 68 65 72 20 74 68 61
6e 20 66 61 69 6c 69 6e 67 20 73 69 6c 65 6e 74 6c 79 2e 6d 77 72 69 74
65 2d 63 65 69 6c 69 6e 67 a2 65 62 79 74 65 73 1a 00 10 00 00 6a 61 70
70 6c 69 65 73 2d 74 6f 78 28 6f 6e 65 20 62 6f 61 72 64 20 64 6f 63 75
6d 65 6e 74 2c 20 61 6e 64 20 6f 6e 65 20 6d 65 64 69 61 20 75 70 6c 6f
61 64 6f 70 72 6f 76 69 64 65 72 2d 61 76 61 74 61 72 78 ff 49 74 20 72
65 61 63 68 65 73 20 74 68 65 20 63 6c 69 65 6e 74 20 6f 6e 6c 79 20 69
6e 20 74 68 65 20 73 69 67 6e 2d 69 6e 20 63 61 6c 6c 62 61 63 6b 0a 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 66 72 61 67
6d 65 6e 74 2e 20 54 68 65 20 68 6f 73 74 20 73 74 6f 72 65 73 20 74 68
65 20 6e 61 6d 65 20 62 75 74 20 6e 6f 74 20 74 68 65 20 70 69 63 74 75
72 65 2c 20 73 6f 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 61 20 74 6f 6b 65 6e 20 72 65 66 72 65 73 68 20 6e 65 76 65
72 20 72 65 74 75 72 6e 73 20 69 74 3b 20 69 74 20 6d 75 73 74 20 62 65
20 63 61 70 74 75 72 65 64 20 74 68 65 6e 0a 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 6f 72 20 69 74 20 69 73 20 67 6f 6e
65 20 66 6f 72 20 67 6f 6f 64 2e 70 73 61 6d 65 2d 6f 72 69 67 69 6e 2d
6f 6e 6c 79 79 01 b8 41 6e 20 61 70 70 20 73 65 72 76 65 64 20 62 79 20
74 68 69 73 20 68 6f 73 74 20 72 75 6e 73 20 75 6e 64 65 72 20 61 20 63
6f 6e 6e 65 63 74 2d 73 72 63 20 6f 66 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 73 65 6c 66 2c 20 73 6f 20 69 74 20
63 61 6e 20 6f 6e 6c 79 20 65 76 65 72 20 74 61 6c 6b 20 74 6f 20 74 68
65 20 6f 72 69 67 69 6e 20 69 74 20 63 61 6d 65 0a 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 66 72 6f 6d 2e 20 50 69 63
6b 2d 61 2d 73 65 72 76 65 72 20 74 68 65 72 65 66 6f 72 65 20 6d 65 61
6e 73 20 74 68 69 73 20 73 65 72 76 65 72 20 6f 72 20 6e 6f 6e 65 20 e2
80 94 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 61 6e 20 61 72 62 69 74 72 61 72 79 20 61 64 64 72 65 73 73 20 77 6f
75 6c 64 20 62 65 20 62 6c 6f 63 6b 65 64 20 62 79 20 74 68 65 20 62 72
6f 77 73 65 72 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 62 65 66 6f 72 65 20 74 68 65 20 72 65 71 75 65 73 74 20 6c
65 66 74 2e 20 54 68 69 73 20 77 6f 75 6c 64 20 77 69 64 65 6e 20 69 66
20 74 68 65 20 61 70 70 20 77 65 72 65 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 70 61 63 6b 61 67 65 64 20 6e 61 74
69 76 65 6c 79 2c 20 77 68 65 72 65 20 74 68 65 20 70 6f 6c 69 63 79 20
64 6f 65 73 20 6e 6f 74 20 61 70 70 6c 79 2e 6b 69 6e 74 65 67 72 61 74
69 6f 6e b3 66 61 73 73 65 74 73 a7 66 61 63 63 65 73 73 79 01 12 42 6f
74 68 20 66 75 6e 63 74 69 6f 6e 73 20 63 68 65 63 6b 20 74 68 65 20 63
61 6c 6c 65 72 27 73 20 72 6f 6c 65 20 6f 6e 20 74 68 65 20 6f 77 6e 69
6e 67 20 62 6f 61 72 64 20 62 65 66 6f 72 65 0a 20 20 20 20 20 20 20 20
20 20 20 20 20 20 6d 69 6e 74 69 6e 67 20 61 20 74 69 63 6b 65 74 2e 20
41 20 74 69 63 6b 65 74 20 63 61 6e 6e 6f 74 20 62 65 20 6f 62 74 61 69
6e 65 64 20 66 6f 72 20 61 20 62 6f 61 72 64 20 74 68 65 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 20 63 61 6c 6c 65 72 20 63 61 6e 6e 6f 74 20
72 65 61 63 68 2c 20 61 6e 64 20 61 6e 20 61 6c 72 65 61 64 79 2d 6d 69
6e 74 65 64 20 74 69 63 6b 65 74 20 69 73 20 6e 6f 74 20 72 65 76 6f 6b
65 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 62 79 20 6c 6f 73 69
6e 67 20 61 63 63 65 73 73 20 e2 80 94 20 69 74 20 73 69 6d 70 6c 79 20
65 78 70 69 72 65 73 2e 66 75 70 6c 6f 61 64 82 a3 64 63 61 6c 6c 78 20
61 73 73 65 74 5f 70 75 74 20 77 69 74 68 20 62 6f 61 72 64 2c 20 6d 69
6d 65 2c 20 6e 61 6d 65 64 73 74 65 70 01 65 67 69 76 65 73 70 69 64 2c
20 6d 69 6d 65 2c 20 75 70 6c 6f 61 64 a3 64 63 61 6c 6c 78 21 50 55 54
20 6f 72 20 50 4f 53 54 20 74 68 65 20 62 79 74 65 73 20 74 6f 20 60 75
70 6c 6f 61 64 60 64 73 74 65 70 02 65 67 69 76 65 73 72 74 68 65 20 66
69 6c 65 20 69 73 20 73 74 6f 72 65 64 68 64 6f 77 6e 6c 6f 61 64 82 a3
64 63 61 6c 6c 71 61 73 73 65 74 5f 67 65 74 20 77 69 74 68 20 69 64 64
73 74 65 70 01 65 67 69 76 65 73 78 18 6d 69 6d 65 2c 20 6e 61 6d 65 2c
20 75 72 6c 2c 20 65 78 70 69 72 65 73 a3 64 63 61 6c 6c 69 47 45 54 20
60 75 72 6c 60 64 73 74 65 70 02 65 67 69 76 65 73 69 74 68 65 20 62 79
74 65 73 69 6c 69 66 65 74 69 6d 65 73 82 a2 64 6d 6f 64 65 da 00 01 11
d4 65 77 72 69 74 65 67 73 65 63 6f 6e 64 73 19 02 58 a2 64 6d 6f 64 65
da 00 01 11 d4 64 72 65 61 64 67 73 65 63 6f 6e 64 73 19 03 84 6b 74 68
65 2d 62 6c 6f 62 2d 69 64 79 01 70 54 68 65 20 60 69 64 60 20 72 65 74
75 72 6e 65 64 20 62 79 20 61 73 73 65 74 5f 70 75 74 20 69 73 20 74 68
65 20 62 6f 61 72 64 5f 61 73 73 65 74 73 20 72 65 63 6f 72 64 0a 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 69 64 2c 20 61 6e 64
20 69 74 20 69 73 20 77 68 61 74 20 61 20 62 6f 61 72 64 20 64 6f 63 75
6d 65 6e 74 20 73 68 6f 75 6c 64 20 73 74 6f 72 65 2e 20 61 73 73 65 74
5f 67 65 74 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
74 61 6b 65 73 20 74 68 61 74 20 73 61 6d 65 20 69 64 2e 20 54 68 65 72
65 20 69 73 20 6e 6f 20 73 65 70 61 72 61 74 65 20 62 6c 6f 62 20 69 64
65 6e 74 69 66 69 65 72 20 e2 80 94 0a 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 61 20 64 6f 63 75 6d 65 6e 74 20 68 6f 6c 64 69
6e 67 20 61 6e 79 74 68 69 6e 67 20 65 6c 73 65 20 77 69 6c 6c 20 72 65
73 6f 6c 76 65 20 74 6f 20 6e 6f 74 68 69 6e 67 2c 0a 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 77 68 69 63 68 20 69 73 20 74 68
65 20 66 61 69 6c 75 72 65 20 74 68 65 20 64 65 66 69 63 69 65 6e 63 79
20 72 65 70 6f 72 74 20 61 6e 74 69 63 69 70 61 74 65 64 2e 6b 77 68 79
2d 74 69 63 6b 65 74 73 79 01 12 41 20 66 75 6e 63 74 69 6f 6e 20 69 6e
76 6f 63 61 74 69 6f 6e 20 6d 61 79 20 63 61 72 72 79 20 31 20 4d 69 42
20 61 6e 64 20 77 6f 75 6c 64 20 70 61 79 20 61 20 62 61 73 65 36 34 0a
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 74 68 69 72 64
2e 20 49 6e 73 74 65 61 64 20 74 68 65 20 66 75 6e 63 74 69 6f 6e 20 61
75 74 68 6f 72 69 73 65 73 20 74 68 65 20 74 72 61 6e 73 66 65 72 20 61
6e 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 72 65
74 75 72 6e 73 20 61 20 73 68 6f 72 74 2d 6c 69 76 65 64 20 55 52 4c 20
74 68 65 20 63 6c 69 65 6e 74 20 75 73 65 73 20 64 69 72 65 63 74 6c 79
2c 20 73 6f 20 61 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 66 69 6c 65 20 69 73 20 62 6f 75 6e 64 65 64 20 62 79 20 74 68 65
20 66 69 65 6c 64 27 73 20 6f 77 6e 20 63 65 69 6c 69 6e 67 2e 6c 74 69
63 6b 65 74 2d 73 68 61 70 65 79 01 1a 54 68 65 20 55 52 4c 20 69 73 20
2f 61 70 69 2f 64 62 2f 7b 73 6c 75 67 7d 2f 66 69 6c 65 73 2f 74 2f 7b
74 6f 6b 65 6e 7d 2c 20 77 68 65 72 65 20 74 68 65 20 74 6f 6b 65 6e 0a
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 69 73 20 61
6e 20 6f 70 61 71 75 65 20 73 69 67 6e 65 64 20 73 74 72 69 6e 67 20 6e
61 6d 69 6e 67 20 6f 6e 65 20 64 61 74 61 62 61 73 65 2c 20 63 6f 6c 6c
65 63 74 69 6f 6e 2c 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 72 65 63 6f 72 64 2c 20 66 69 65 6c 64 20 61 6e 64 20 6d 6f
64 65 2c 20 77 69 74 68 20 61 6e 20 65 78 70 69 72 79 2e 20 49 74 20 67
72 61 6e 74 73 20 74 68 61 74 20 6f 6e 65 0a 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 66 69 6c 65 20 69 6e 20 74 68 61 74 20
6f 6e 65 20 64 69 72 65 63 74 69 6f 6e 20 61 6e 64 20 6e 6f 74 68 69 6e
67 20 65 6c 73 65 2e 66 64 65 6c 65 74 65 79 01 17 4f 77 6e 65 72 20 6f
6e 6c 79 2c 20 61 6e 64 20 74 68 65 20 68 6f 6d 65 20 62 6f 61 72 64 20
63 61 6e 6e 6f 74 20 62 65 20 64 65 6c 65 74 65 64 2e 20 44 65 6c 65 74
69 6e 67 20 72 65 70 6f 72 74 73 0a 20 20 20 20 20 20 20 20 20 20 20 20
68 6f 77 20 6d 61 6e 79 20 6d 65 6d 62 65 72 73 68 69 70 73 20 61 6e 64
20 61 73 73 65 74 73 20 77 65 6e 74 20 77 69 74 68 20 69 74 2e 20 41 20
73 65 63 6f 6e 64 20 64 65 6c 65 74 65 20 6f 66 0a 20 20 20 20 20 20 20
20 20 20 20 20 74 68 65 20 73 61 6d 65 20 62 6f 61 72 64 20 73 75 63 63
65 65 64 73 20 77 69 74 68 20 60 61 6c 72 65 61 64 79 47 6f 6e 65 3a 20
74 72 75 65 60 20 72 61 74 68 65 72 20 74 68 61 6e 0a 20 20 20 20 20 20
20 20 20 20 20 20 66 61 69 6c 69 6e 67 2c 20 73 6f 20 61 20 72 65 74 72
79 20 61 66 74 65 72 20 61 20 6c 6f 73 74 20 72 65 73 70 6f 6e 73 65 20
69 73 20 73 61 66 65 2e 66 65 72 72 6f 72 73 a5 65 73 68 61 70 65 78 79
41 20 66 75 6e 63 74 69 6f 6e 20 74 68 61 74 20 72 65 66 75 73 65 73 20
72 65 74 75 72 6e 73 20 60 7b 22 65 72 72 6f 72 22 3a 20 22 2e 2e 2e 22
7d 60 20 77 69 74 68 20 48 54 54 50 0a 20 20 20 20 20 20 20 20 20 20 20
20 20 32 30 30 2e 20 54 68 65 20 6d 65 73 73 61 67 65 20 69 73 20 70 72
6f 73 65 20 77 72 69 74 74 65 6e 20 66 6f 72 20 61 20 70 65 72 73 6f 6e
2e 66 73 74 61 74 75 73 da 00 01 11 d4 74 70 61 72 74 69 61 6c 6c 79 2d
75 6e 72 65 73 6f 6c 76 65 64 67 74 68 65 2d 67 61 70 79 01 48 54 68 65
72 65 20 61 72 65 20 6e 6f 20 73 74 61 62 6c 65 20 6d 61 63 68 69 6e 65
2d 72 65 61 64 61 62 6c 65 20 63 6f 64 65 73 2e 20 41 20 63 6c 69 65 6e
74 20 63 61 6e 6e 6f 74 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
72 65 6c 69 61 62 6c 79 20 64 69 73 74 69 6e 67 75 69 73 68 20 73 69 67
6e 65 64 2d 6f 75 74 20 66 72 6f 6d 20 72 65 66 75 73 65 64 20 66 72 6f
6d 20 6d 69 73 73 69 6e 67 20 66 72 6f 6d 0a 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 74 72 61 6e 73 69 65 6e 74 2c 20 65 78 63 65 70 74 20
62 79 20 6d 61 74 63 68 69 6e 67 20 45 6e 67 6c 69 73 68 20 74 65 78 74
20 e2 80 94 20 77 68 69 63 68 20 74 68 65 0a 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 64 65 66 69 63 69 65 6e 63 79 20 72 65 70 6f 72 74 20
69 64 65 6e 74 69 66 69 65 64 20 61 6e 64 20 77 68 69 63 68 20 72 65 61
64 69 6e 67 20 74 68 65 20 73 6f 75 72 63 65 0a 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 63 6f 6e 66 69 72 6d 73 20 72 61 74 68 65 72 20 74
68 61 6e 20 72 65 73 6f 6c 76 65 73 2e 75 77 68 61 74 2d 63 61 6e 2d 62
65 2d 72 65 6c 69 65 64 2d 6f 6e 79 01 b2 4f 6e 6c 79 20 74 77 6f 20 74
68 69 6e 67 73 2e 20 41 6e 20 48 54 54 50 20 34 30 31 20 66 72 6f 6d 20
61 6e 79 20 72 6f 75 74 65 20 6d 65 61 6e 73 0a 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 74 68 65
20 73 65 73 73 69 6f 6e 20 65 6e 64 65 64 2e 20 41 6e 20 60 65 72 72 6f
72 60 20 6b 65 79 20 70 72 65 73 65 6e 74 20 69 6e 20 61 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 66 75 6e 63 74 69 6f 6e 20 72 65 73 75 6c 74 20 6d 65 61 6e 73 20 74
68 65 20 63 61 6c 6c 20 64 69 64 20 6e 6f 74 20 64 6f 20 77 68 61 74 20
77 61 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 61 73 6b 65 64 2e 20 45 76 65 72 79 74 68 69
6e 67 20 66 69 6e 65 72 20 72 65 71 75 69 72 65 73 20 6d 61 74 63 68 69
6e 67 20 70 72 6f 73 65 2c 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 61 6e 64 20 61 20 70 6f 72
74 20 73 68 6f 75 6c 64 20 69 73 6f 6c 61 74 65 20 74 68 61 74 20 6d 61
74 63 68 69 6e 67 20 69 6e 20 6f 6e 65 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 70 6c 61 63 65
20 73 6f 20 69 74 20 63 61 6e 20 62 65 20 72 65 70 6c 61 63 65 64 20 77
68 65 6e 20 63 6f 64 65 73 20 65 78 69 73 74 2e 78 18 74 68 65 2d 64 65
6c 69 62 65 72 61 74 65 2d 61 6d 62 69 67 75 69 74 79 79 01 64 62 6f 61
72 64 5f 67 65 74 20 61 6e 73 77 65 72 73 20 60 6e 6f 74 20 66 6f 75 6e
64 60 20 62 6f 74 68 20 66 6f 72 20 61 20 62 6f 61 72 64 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 74 68 61 74 20 64 6f 65 73 20 6e 6f 74 20 65 78 69 73 74 20
61 6e 64 20 66 6f 72 20 6f 6e 65 20 74 68 65 20 63 61 6c 6c 65 72 20 6d
61 79 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 6e 6f 74 20 73 65 65 2c 20 73 6f 20 61
20 70 72 6f 62 65 20 63 61 6e 6e 6f 74 20 65 6e 75 6d 65 72 61 74 65 20
62 6f 61 72 64 20 69 64 73 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 54 68 61 74 20
69 73 20 69 6e 74 65 6e 74 69 6f 6e 61 6c 20 61 6e 64 20 6d 75 73 74 20
6e 6f 74 20 62 65 20 27 66 69 78 65 64 27 20 62 79 0a 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 61 20 70 6f 72 74 20 69 6e 74 6f 20 74 77 6f 20 64 69 73 74 69 6e
67 75 69 73 68 61 62 6c 65 20 65 72 72 6f 72 73 2e 66 6c 69 6d 69 74 73
87 a2 65 6c 69 6d 69 74 78 18 66 75 6e 63 74 69 6f 6e 20 69 6e 76 6f 63
61 74 69 6f 6e 20 62 6f 64 79 65 76 61 6c 75 65 65 31 20 4d 69 42 a2 65
6c 69 6d 69 74 6e 62 6f 61 72 64 20 64 6f 63 75 6d 65 6e 74 65 76 61 6c
75 65 78 22 61 62 6f 75 74 20 39 30 30 20 30 30 30 20 62 79 74 65 73 2c
20 72 65 66 75 73 65 64 20 61 62 6f 76 65 a2 65 6c 69 6d 69 74 73 62 6f
61 72 64 5f 73 68 61 72 65 20 6d 65 6d 62 65 72 73 65 76 61 6c 75 65 70
62 6f 75 6e 64 65 64 20 70 65 72 20 63 61 6c 6c a2 65 6c 69 6d 69 74 6b
72 65 63 6f 72 64 20 70 61 67 65 65 76 61 6c 75 65 78 1a 33 30 20 62 79
20 64 65 66 61 75 6c 74 2c 20 32 30 30 20 6d 61 78 69 6d 75 6d a2 65 6c
69 6d 69 74 6c 77 72 69 74 65 20 74 69 63 6b 65 74 65 76 61 6c 75 65 6b
36 30 30 20 73 65 63 6f 6e 64 73 a2 65 6c 69 6d 69 74 6b 72 65 61 64 20
74 69 63 6b 65 74 65 76 61 6c 75 65 6b 39 30 30 20 73 65 63 6f 6e 64 73
a2 65 6c 69 6d 69 74 6a 72 65 70 6f 73 69 74 6f 72 79 65 76 61 6c 75 65
78 18 32 35 36 20 4d 69 42 2c 20 6e 65 76 65 72 20 63 6f 6c 6c 65 63 74
65 64 66 70 61 67 69 6e 67 a3 66 73 74 61 74 75 73 da 00 01 11 d4 71 62
6f 75 6e 64 65 64 2d 6e 6f 74 2d 70 61 67 65 64 6d 72 65 63 6f 72 64 2d
72 6f 75 74 65 73 78 d0 70 65 72 50 61 67 65 20 64 65 66 61 75 6c 74 73
20 74 6f 20 33 30 20 61 6e 64 20 69 73 20 63 6c 61 6d 70 65 64 20 74 6f
20 32 30 30 2e 20 41 20 76 61 6c 75 65 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 61 62 6f 76 65 20 32 30 30 20 69 73 20
73 69 6c 65 6e 74 6c 79 20 72 65 64 75 63 65 64 2c 20 73 6f 20 61 20 63
6c 69 65 6e 74 20 74 68 61 74 20 61 73 6b 73 20 66 6f 72 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 31 30 30 30 20 61 6e
64 20 72 65 61 64 73 20 77 68 61 74 20 72 65 74 75 72 6e 73 20 68 61 73
20 74 72 75 6e 63 61 74 65 64 20 69 74 73 20 6f 77 6e 20 76 69 65 77 2e
78 19 74 68 65 2d 66 75 6e 63 74 69 6f 6e 73 2d 64 6f 2d 6e 6f 74 2d 70
61 67 65 79 01 08 62 6f 61 72 64 5f 6c 69 73 74 20 67 61 74 68 65 72 73
20 75 70 20 74 6f 20 32 30 30 20 6f 77 6e 65 64 20 61 6e 64 20 32 30 30
0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 73 68 61 72 65 64 20 62 6f 61 72 64 73 20
61 6e 64 20 72 65 74 75 72 6e 73 20 74 68 65 6d 20 69 6e 20 6f 6e 65 20
61 72 72 61 79 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 41 6e 20 61 63 63 6f 75
6e 74 20 70 61 73 74 20 74 68 61 74 20 63 65 69 6c 69 6e 67 20 69 73 20
73 69 6c 65 6e 74 6c 79 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 74 72 75 6e 63 61
74 65 64 2c 20 61 6e 64 20 6e 6f 20 63 75 72 73 6f 72 20 69 73 20 6f 66
66 65 72 65 64 2e 68 69 64 65 6e 74 69 74 79 a7 65 61 2d 34 30 31 78 39
6d 65 61 6e 73 20 74 68 65 20 73 65 73 73 69 6f 6e 20 69 73 20 6f 76 65
72 2e 20 43 6c 65 61 72 20 74 68 65 20 74 6f 6b 65 6e 3b 20 64 6f 20 6e
6f 74 20 72 65 74 72 79 2e 65 6c 6f 67 69 6e 78 b2 50 4f 53 54 20 2f 61
75 74 68 2f 6c 6f 67 69 6e 20 77 69 74 68 20 65 6d 61 69 6c 20 61 6e 64
20 70 61 73 73 77 6f 72 64 20 72 65 74 75 72 6e 73 20 60 74 6f 6b 65 6e
60 2c 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 60 65 78 70 69 72 65 73
60 2c 20 61 6e 64 20 60 72 65 63 6f 72 64 60 20 e2 80 94 20 74 68 65 20
72 65 63 6f 72 64 20 68 6f 6c 64 69 6e 67 20 69 64 2c 20 65 6d 61 69 6c
2c 20 6e 61 6d 65 2c 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 76 65 72
69 66 69 65 64 2c 20 63 72 65 61 74 65 64 20 61 6e 64 20 75 70 64 61 74
65 64 2e 69 70 72 6f 76 69 64 65 72 73 78 c8 47 45 54 20 2f 61 75 74 68
2f 6f 61 75 74 68 20 6c 69 73 74 73 20 77 68 61 74 20 74 68 69 73 20 64
61 74 61 62 61 73 65 20 68 61 73 20 65 6e 61 62 6c 65 64 2e 20 45 61 63
68 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 65 6e 74 72 79
20 63 61 72 72 69 65 73 20 74 68 65 20 70 72 6f 76 69 64 65 72 27 73 20
6e 61 6d 65 20 61 6e 64 20 69 74 73 20 73 74 61 72 74 20 55 52 4c 2e 20
44 6f 20 6e 6f 74 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
68 61 72 64 2d 63 6f 64 65 20 61 20 70 72 6f 76 69 64 65 72 3a 20 74 68
65 20 6c 69 73 74 20 69 73 20 70 65 72 20 64 61 74 61 62 61 73 65 2e 6c
74 68 65 2d 66 72 61 67 6d 65 6e 74 84 a3 67 63 61 72 72 69 65 73 71 74
68 65 20 73 65 73 73 69 6f 6e 20 74 6f 6b 65 6e 69 70 61 72 61 6d 65 74
65 72 65 74 6f 6b 65 6e 6c 70 72 65 73 65 6e 74 2d 77 68 65 6e 78 18 74
68 65 20 72 6f 75 6e 64 20 74 72 69 70 20 73 75 63 63 65 65 64 65 64 a3
67 63 61 72 72 69 65 73 6e 61 20 64 69 73 70 6c 61 79 20 6e 61 6d 65 69
70 61 72 61 6d 65 74 65 72 64 6e 61 6d 65 6c 70 72 65 73 65 6e 74 2d 77
68 65 6e 78 18 74 68 65 20 70 72 6f 76 69 64 65 72 20 73 75 70 70 6c 69
65 64 20 69 74 a3 67 63 61 72 72 69 65 73 6d 61 6e 20 61 76 61 74 61 72
20 55 52 4c 69 70 61 72 61 6d 65 74 65 72 67 70 69 63 74 75 72 65 6c 70
72 65 73 65 6e 74 2d 77 68 65 6e 78 18 74 68 65 20 70 72 6f 76 69 64 65
72 20 73 75 70 70 6c 69 65 64 20 69 74 a3 67 63 61 72 72 69 65 73 71 61
20 6d 65 73 73 61 67 65 20 74 6f 20 73 68 6f 77 69 70 61 72 61 6d 65 74
65 72 65 65 72 72 6f 72 6c 70 72 65 73 65 6e 74 2d 77 68 65 6e 78 1a 69
74 20 66 61 69 6c 65 64 20 6f 72 20 77 61 73 20 63 61 6e 63 65 6c 6c 65
64 6e 74 68 65 2d 73 61 6d 65 2d 73 68 61 70 65 78 7d 72 65 66 72 65 73
68 20 72 65 74 75 72 6e 73 20 74 68 65 20 73 61 6d 65 20 74 68 72 65 65
20 6b 65 79 73 2e 20 60 6d 65 60 20 72 65 74 75 72 6e 73 20 74 68 65 0a
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 72 65
63 6f 72 64 20 61 6c 6f 6e 65 2e 20 6c 6f 67 6f 75 74 20 72 65 74 75 72
6e 73 20 6e 6f 74 68 69 6e 67 20 6f 66 20 69 6e 74 65 72 65 73 74 2e 74
6f 6e 6c 79 2d 68 74 74 70 2d 69 6d 61 67 65 2d 75 72 6c 73 78 ae 54 68
65 20 61 76 61 74 61 72 20 67 6f 65 73 20 69 6e 74 6f 20 61 6e 20 69 6d
67 20 65 6c 65 6d 65 6e 74 2e 20 41 20 70 69 63 74 75 72 65 0a 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 76 61 6c 75 65 20 74 68 61 74 20 69 73 20 6e 6f 74 20 68 74 74 70 20
6f 72 20 68 74 74 70 73 20 6d 75 73 74 20 62 65 20 64 69 73 63 61 72 64
65 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 72 61 74 68 65 72 20 74 68 61 6e 20 72 65 6e 64 65
72 65 64 2e 76 72 65 61 64 2d 74 68 65 2d 66 72 61 67 6d 65 6e 74 2d 6f
6e 63 65 79 01 55 6e 61 6d 65 20 61 6e 64 20 70 69 63 74 75 72 65 20 61
72 72 69 76 65 20 68 65 72 65 20 61 6e 64 20 6e 6f 77 68 65 72 65 20 65
6c 73 65 20 e2 80 94 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 61 20 6c 61 74 65 72 20 72 65
66 72 65 73 68 20 77 69 6c 6c 20 6e 6f 74 20 72 65 74 75 72 6e 20 74 68
65 20 61 76 61 74 61 72 2e 20 41 0a 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 63 6c 69 65 6e 74
20 74 68 61 74 20 77 61 6e 74 73 20 69 74 20 6d 75 73 74 20 63 61 70 74
75 72 65 20 69 74 20 6f 6e 20 74 68 65 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 63 61 6c 6c
62 61 63 6b 20 61 6e 64 20 6b 65 65 70 20 69 74 2c 20 74 68 65 6e 20 77
69 70 65 20 74 68 65 20 66 72 61 67 6d 65 6e 74 20 73 6f 20 61 0a 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 63 6f 70 69 65 64 20 6c 69 6e 6b 20 63 61 72 72 69 65 73 20
6e 6f 20 73 65 73 73 69 6f 6e 2e 69 66 75 6e 63 74 69 6f 6e 73 88 a3 64
6e 61 6d 65 da 00 01 11 d4 6a 62 6f 61 72 64 5f 68 6f 6d 65 65 73 65 6e
64 73 67 6e 6f 74 68 69 6e 67 67 72 65 74 75 72 6e 73 72 69 64 2c 20 74
69 74 6c 65 2c 20 63 72 65 61 74 65 64 a3 64 6e 61 6d 65 da 00 01 11 d4
6a 62 6f 61 72 64 5f 6c 69 73 74 65 73 65 6e 64 73 67 6e 6f 74 68 69 6e
67 67 72 65 74 75 72 6e 73 78 1d 62 6f 61 72 64 73 2c 20 61 6e 20 61 72
72 61 79 20 6f 66 20 73 75 6d 6d 61 72 69 65 73 a3 64 6e 61 6d 65 da 00
01 11 d4 69 62 6f 61 72 64 5f 67 65 74 65 73 65 6e 64 73 62 69 64 67 72
65 74 75 72 6e 73 78 3a 69 64 2c 20 74 69 74 6c 65 2c 20 64 6f 63 2c 20
72 6f 6c 65 2c 20 70 61 72 65 6e 74 49 64 2c 20 69 73 48 6f 6d 65 2c 20
6f 77 6e 65 72 4e 61 6d 65 2c 20 6d 65 6d 62 65 72 73 a3 64 6e 61 6d 65
da 00 01 11 d4 6a 62 6f 61 72 64 5f 73 61 76 65 65 73 65 6e 64 73 78 1a
69 64 3f 2c 20 74 69 74 6c 65 2c 20 64 6f 63 2c 20 70 61 72 65 6e 74 49
64 3f 67 72 65 74 75 72 6e 73 78 1b 69 64 2c 20 72 6f 6c 65 2c 20 63 72
65 61 74 65 64 2c 20 70 61 72 65 6e 74 49 64 a3 64 6e 61 6d 65 da 00 01
11 d4 6b 62 6f 61 72 64 5f 73 68 61 72 65 65 73 65 6e 64 73 6b 69 64 2c
20 6d 65 6d 62 65 72 73 67 72 65 74 75 72 6e 73 76 74 68 65 20 75 70 64
61 74 65 64 20 6d 65 6d 62 65 72 73 68 69 70 a3 64 6e 61 6d 65 da 00 01
11 d4 6c 62 6f 61 72 64 5f 64 65 6c 65 74 65 65 73 65 6e 64 73 62 69 64
67 72 65 74 75 72 6e 73 78 2f 69 64 2c 20 64 65 6c 65 74 65 64 2c 20 6d
65 6d 62 65 72 73 2c 20 61 73 73 65 74 73 20 e2 80 94 20 6f 72 20 61 6c
72 65 61 64 79 47 6f 6e 65 a3 64 6e 61 6d 65 da 00 01 11 d4 69 61 73 73
65 74 5f 70 75 74 65 73 65 6e 64 73 72 62 6f 61 72 64 2c 20 6d 69 6d 65
2c 20 6e 61 6d 65 3f 67 72 65 74 75 72 6e 73 70 69 64 2c 20 6d 69 6d 65
2c 20 75 70 6c 6f 61 64 a3 64 6e 61 6d 65 da 00 01 11 d4 69 61 73 73 65
74 5f 67 65 74 65 73 65 6e 64 73 62 69 64 67 72 65 74 75 72 6e 73 78 18
6d 69 6d 65 2c 20 6e 61 6d 65 2c 20 75 72 6c 2c 20 65 78 70 69 72 65 73
6a 64 65 70 6c 6f 79 6d 65 6e 74 a6 66 6c 61 79 6f 75 74 78 b2 74 61 6b
68 7a 65 65 6e 2f 74 61 6b 68 7a 65 65 6e 2e 6a 73 6f 6e 2c 20 74 61 6b
68 7a 65 65 6e 2f 63 6f 6c 6c 65 63 74 69 6f 6e 73 2f 3c 6e 61 6d 65 3e
2e 6a 73 6f 6e 20 6f 6e 65 20 70 65 72 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 63 6f 6c 6c 65 63 74 69 6f 6e 2c 20 61 6e 64 20 74 61 6b 68
7a 65 65 6e 2f 66 75 6e 63 74 69 6f 6e 73 2f 3c 6e 61 6d 65 3e 2f 20 68
6f 6c 64 69 6e 67 20 66 75 6e 63 74 69 6f 6e 2e 6a 73 6f 6e 0a 20 20 20
20 20 20 20 20 20 20 20 20 20 20 61 6e 64 20 74 68 65 20 73 6f 75 72 63
65 20 66 69 6c 65 2e 68 6f 6e 65 2d 70 75 73 68 78 8f 54 68 65 20 60 74
61 6b 68 7a 65 65 6e 2f 60 20 64 69 72 65 63 74 6f 72 79 20 69 6e 20 74
68 65 20 72 65 70 6f 73 69 74 6f 72 79 20 69 73 20 72 65 61 64 20 6f 6e
20 70 75 73 68 20 61 6e 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 61 70 70 6c 69 65 64 20 62 65 66 6f 72 65 20 74 68 65 20 72 65 66
20 6d 6f 76 65 73 2e 20 54 68 65 20 73 61 6d 65 20 63 6f 6d 6d 69 74 20
64 65 70 6c 6f 79 73 20 74 68 65 20 73 69 74 65 2e 6c 66 69 65 6c 64 2d
6f 62 6a 65 63 74 86 a2 63 6b 65 79 64 6e 61 6d 65 6a 61 70 70 6c 69 65
73 2d 74 6f 66 61 6c 77 61 79 73 a2 63 6b 65 79 64 74 79 70 65 6a 61 70
70 6c 69 65 73 2d 74 6f 78 4f 61 6c 77 61 79 73 20 e2 80 94 20 74 65 78
74 2c 20 6e 75 6d 62 65 72 2c 20 62 6f 6f 6c 2c 20 6a 73 6f 6e 2c 20 66
69 6c 65 2c 20 72 65 6c 61 74 69 6f 6e 2c 20 73 65 6c 65 63 74 2c 20 64
61 74 65 2c 20 65 6d 61 69 6c 2c 20 62 79 74 65 73 a2 63 6b 65 79 68 72
65 71 75 69 72 65 64 6a 61 70 70 6c 69 65 73 2d 74 6f 66 61 6c 77 61 79
73 a2 63 6b 65 79 72 6f 70 74 69 6f 6e 73 2c 20 6d 61 78 53 65 6c 65 63
74 6a 61 70 70 6c 69 65 73 2d 74 6f 66 73 65 6c 65 63 74 a2 63 6b 65 79
71 72 65 6c 61 74 65 64 43 6f 6c 6c 65 63 74 69 6f 6e 6a 61 70 70 6c 69
65 73 2d 74 6f 68 72 65 6c 61 74 69 6f 6e a2 63 6b 65 79 67 6d 61 78 53
69 7a 65 6a 61 70 70 6c 69 65 73 2d 74 6f 64 66 69 6c 65 6d 66 75 6e 63
74 69 6f 6e 2d 66 69 6c 65 85 a2 63 6b 65 79 64 6e 61 6d 65 65 68 6f 6c
64 73 78 18 6d 75 73 74 20 6d 61 74 63 68 20 74 68 65 20 64 69 72 65 63
74 6f 72 79 a2 63 6b 65 79 6b 64 65 73 63 72 69 70 74 69 6f 6e 65 68 6f
6c 64 73 76 73 68 6f 77 6e 20 69 6e 20 74 68 65 20 64 61 73 68 62 6f 61
72 64 a2 63 6b 65 79 68 6c 61 6e 67 75 61 67 65 65 68 6f 6c 64 73 66 70
79 74 68 6f 6e a2 63 6b 65 79 6e 74 69 6d 65 6f 75 74 53 65 63 6f 6e 64
73 65 68 6f 6c 64 73 78 1b 31 35 20 66 6f 72 20 65 76 65 72 79 20 53 69
6a 69 6c 20 66 75 6e 63 74 69 6f 6e a2 63 6b 65 79 6a 69 6e 76 6f 6b 65
52 75 6c 65 65 68 6f 6c 64 73 78 1d 61 75 74 68 20 66 6f 72 20 65 76 65
72 79 20 53 69 6a 69 6c 20 66 75 6e 63 74 69 6f 6e 6f 63 6f 6c 6c 65 63
74 69 6f 6e 2d 66 69 6c 65 83 a2 63 6b 65 79 64 6e 61 6d 65 65 68 6f 6c
64 73 75 74 68 65 20 63 6f 6c 6c 65 63 74 69 6f 6e 27 73 20 6e 61 6d 65
a2 63 6b 65 79 78 36 6c 69 73 74 52 75 6c 65 2c 20 76 69 65 77 52 75 6c
65 2c 20 63 72 65 61 74 65 52 75 6c 65 2c 20 75 70 64 61 74 65 52 75 6c
65 2c 20 64 65 6c 65 74 65 52 75 6c 65 65 68 6f 6c 64 73 78 20 6f 6e 65
20 6f 66 20 6e 6f 6e 65 2c 20 6f 77 6e 65 72 2c 20 61 75 74 68 2c 20 70
75 62 6c 69 63 a2 63 6b 65 79 66 66 69 65 6c 64 73 65 68 6f 6c 64 73 78
19 61 6e 20 61 72 72 61 79 20 6f 66 20 66 69 65 6c 64 20 6f 62 6a 65 63
74 73 71 61 70 70 6c 79 2d 69 73 2d 61 64 64 69 74 69 76 65 78 f6 52 65
6d 6f 76 69 6e 67 20 61 20 66 69 6c 65 20 72 65 70 6f 72 74 73 20 74 68
65 20 64 69 66 66 65 72 65 6e 63 65 20 61 6e 64 20 63 68 61 6e 67 65 73
0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 6e 6f 74 68 69 6e 67 2e 20 44 65 6c 69 62 65 72 61 74 65 20 72 65
6d 6f 76 61 6c 20 67 6f 65 73 20 74 68 72 6f 75 67 68 20 74 68 65 20 43
4c 49 20 77 69 74 68 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 2d 70 72 75 6e 65 2e 20 41 20 70 6f 72 74 20
74 68 61 74 20 72 65 6e 61 6d 65 73 20 61 20 63 6f 6c 6c 65 63 74 69 6f
6e 20 68 61 73 20 63 72 65 61 74 65 64 20 61 0a 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 73 65 63 6f 6e 64 20
6f 6e 65 2e 6b 63 6f 6e 63 75 72 72 65 6e 63 79 a6 66 73 74 61 74 75 73
da 00 01 11 d4 6a 75 6e 72 65 73 6f 6c 76 65 64 67 66 69 6e 64 69 6e 67
78 c2 54 68 65 72 65 20 69 73 20 6e 6f 20 73 65 72 76 65 72 2d 73 69 64
65 20 72 65 76 69 73 69 6f 6e 2c 20 76 65 72 73 69 6f 6e 2c 20 65 74 61
67 20 6f 72 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 63 6f 6d 70
61 72 65 2d 61 6e 64 2d 73 77 61 70 2e 20 4e 6f 74 20 69 6e 20 74 68 65
20 63 6f 6c 6c 65 63 74 69 6f 6e 73 2c 20 6e 6f 74 20 69 6e 20 74 68 65
20 66 75 6e 63 74 69 6f 6e 73 2c 0a 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 6e 6f 74 20 61 6e 79 77 68 65 72 65 2e 20 62 6f 61 72 64 5f 73
61 76 65 20 77 72 69 74 65 73 20 77 68 61 74 20 69 74 20 69 73 20 67 69
76 65 6e 2e 6b 63 6f 6e 73 65 71 75 65 6e 63 65 79 01 67 54 77 6f 20 63
6c 69 65 6e 74 73 20 74 68 61 74 20 62 6f 74 68 20 68 6f 6c 64 20 61 20
62 6f 61 72 64 20 61 6e 64 20 62 6f 74 68 20 73 61 76 65 20 77 69 6c 6c
20 68 61 76 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 74 68 65 20 73 65 63 6f 6e 64 20 77 72 69 74 65 20 77 69 6e 20 65 6e
74 69 72 65 6c 79 2e 20 54 68 65 20 6f 66 66 6c 69 6e 65 20 6d 65 72 67
65 20 74 68 69 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 64 6f 63 75 6d 65 6e 74 20 73 70 65 63 69 66 69 65 73 20 72 75 6e
73 20 69 6e 20 74 68 65 20 2a 63 6c 69 65 6e 74 2a 2c 20 61 67 61 69 6e
73 74 20 74 68 65 20 63 6f 70 79 20 69 74 0a 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 6c 61 73 74 20 73 61 77 20 e2 80 94 20 61
6e 64 20 6e 6f 74 68 69 6e 67 20 6f 6e 20 74 68 65 20 73 65 72 76 65 72
20 70 72 65 76 65 6e 74 73 20 61 20 63 6c 69 65 6e 74 20 74 68 61 74 0a
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 6e 65 76 65 72
20 73 61 77 20 74 68 65 20 6f 74 68 65 72 27 73 20 77 6f 72 6b 20 66 72
6f 6d 20 6f 76 65 72 77 72 69 74 69 6e 67 20 69 74 2e 73 77 68 61 74 2d
77 6f 75 6c 64 2d 63 6c 6f 73 65 2d 69 74 79 01 60 41 20 72 65 76 69 73
69 6f 6e 20 63 6f 6c 75 6d 6e 20 6f 6e 20 62 6f 61 72 64 73 2c 20 72 65
74 75 72 6e 65 64 20 62 79 20 62 6f 61 72 64 5f 67 65 74 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 61
6e 64 20 72 65 71 75 69 72 65 64 20 62 79 20 62 6f 61 72 64 5f 73 61 76
65 2c 20 72 65 66 75 73 65 64 20 77 68 65 6e 20 73 74 61 6c 65 2e 20 54
68 61 74 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 69 73 20 61 20 63 68 61 6e 67 65 20 74 6f 20 74 68
65 20 63 6f 6c 6c 65 63 74 69 6f 6e 73 20 61 6e 64 20 74 6f 20 74 77 6f
20 66 75 6e 63 74 69 6f 6e 73 2c 0a 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 6e 6f 74 20 74 6f 20 74 68
69 73 20 64 6f 63 75 6d 65 6e 74 20 e2 80 94 20 72 65 63 6f 72 64 65 64
20 68 65 72 65 20 73 6f 20 61 20 70 6f 72 74 20 64 6f 65 73 0a 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
6e 6f 74 20 61 73 73 75 6d 65 20 74 68 65 20 70 72 6f 74 65 63 74 69 6f
6e 20 65 78 69 73 74 73 2e 75 77 68 79 2d 69 74 2d 68 61 73 2d 6e 6f 74
2d 62 69 74 74 65 6e 79 01 09 53 69 6a 69 6c 27 73 20 6d 65 72 67 65 20
72 65 63 6f 6e 63 69 6c 65 73 20 62 65 66 6f 72 65 20 73 61 76 69 6e 67
2c 20 61 6e 64 20 61 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 73 69 6e 67 6c 65 20 75 73 65 72
20 77 69 74 68 20 74 77 6f 20 64 65 76 69 63 65 73 20 75 73 75 61 6c 6c
79 20 73 65 72 69 61 6c 69 73 65 73 0a 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 6e 61 74 75 72 61
6c 6c 79 2e 20 54 68 65 20 65 78 70 6f 73 75 72 65 20 69 73 20 74 77 6f
20 63 6c 69 65 6e 74 73 20 77 72 69 74 69 6e 67 20 74 68 65 0a 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 73 61 6d 65 20 62 6f 61 72 64 20 77 69 74 68 69 6e 20 6f 6e 65 20
73 61 76 65 20 63 79 63 6c 65 2e 78 1d 77 68 61 74 2d 61 2d 70 6f 72 74
2d 6d 75 73 74 2d 64 6f 2d 6d 65 61 6e 77 68 69 6c 65 78 c2 49 6d 70 6c
65 6d 65 6e 74 20 74 68 65 20 63 6c 69 65 6e 74 2d 73 69 64 65 20 6d 65
72 67 65 20 65 78 61 63 74 6c 79 20 61 73 0a 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 73 70 65 63 69 66 69 65 64 2c 20 61 6e 64 20 64 6f 20 6e 6f
74 20 72 65 6c 79 20 6f 6e 20 74 68 65 20 73 65 72 76 65 72 0a 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 74 6f 20 63 61 74 63 68 20 61 20 6c 6f 73
74 20 75 70 64 61 74 65 2e 20 49 74 20 77 69 6c 6c 20 6e 6f 74 2e 6d 62
6f 61 72 64 2d 73 75 6d 6d 61 72 79 78 b6 45 61 63 68 20 65 6e 74 72 79
20 6f 66 20 62 6f 61 72 64 5f 6c 69 73 74 20 63 61 72 72 69 65 73 20 74
68 65 20 62 6f 61 72 64 27 73 20 69 64 2c 20 69 74 73 20 74 69 74 6c 65
2c 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 74 68 65
20 63 61 6c 6c 65 72 27 73 20 72 6f 6c 65 2c 20 61 6e 64 20 69 74 73 20
70 61 72 65 6e 74 20 e2 80 94 20 65 6e 6f 75 67 68 20 74 6f 20 64 72 61
77 20 74 68 65 20 74 72 65 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 77 69 74 68 6f 75 74 20 61 20 73 65 63 6f 6e 64 20 63
61 6c 6c 2e 6f 74 68 65 2d 63 79 63 6c 65 2d 63 68 65 63 6b 79 01 1c 54
68 65 20 73 65 72 76 65 72 20 77 61 6c 6b 73 20 75 70 20 66 72 6f 6d 20
74 68 65 20 70 72 6f 70 6f 73 65 64 20 70 61 72 65 6e 74 20 6c 6f 6f 6b
69 6e 67 20 66 6f 72 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 74 68 69 73 20 62 6f 61 72 64 2e 20 41 20 63 6c 69 65 6e
74 20 6e 65 65 64 20 6e 6f 74 20 72 65 70 65 61 74 20 74 68 65 20 77 61
6c 6b 2c 20 61 6e 64 20 6d 75 73 74 0a 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 68 61 6e 64 6c 65 20 74 68 65 20 72 65 66
75 73 61 6c 20 e2 80 94 20 64 72 61 67 67 69 6e 67 20 61 20 62 6f 61 72
64 20 6f 6e 74 6f 20 69 74 73 20 6f 77 6e 0a 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 64 65 73 63 65 6e 64 61 6e 74 20 69
73 20 61 6e 20 6f 72 64 69 6e 61 72 79 20 67 65 73 74 75 72 65 2c 20 6e
6f 74 20 61 20 6d 61 6c 66 6f 72 6d 65 64 20 6f 6e 65 2e 70 63 72 65 61
74 65 2d 6f 72 2d 75 70 64 61 74 65 79 01 3c 62 6f 61 72 64 5f 73 61 76
65 20 64 6f 65 73 20 62 6f 74 68 2c 20 64 69 73 63 72 69 6d 69 6e 61 74
65 64 20 62 79 20 60 69 64 60 2e 20 41 62 73 65 6e 74 2c 20 69 74 0a 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 63 72 65
61 74 65 73 20 61 6e 64 20 72 65 74 75 72 6e 73 20 60 63 72 65 61 74 65
64 3a 20 74 72 75 65 60 20 77 69 74 68 20 74 68 65 20 63 61 6c 6c 65 72
20 61 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 6f 77 6e 65 72 2e 20 50 72 65 73 65 6e 74 2c 20 69 74 20 75 70 64
61 74 65 73 20 61 6e 64 20 72 65 71 75 69 72 65 73 20 74 68 65 20 63 61
6c 6c 65 72 20 74 6f 20 62 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 6f 77 6e 65 72 20 6f 72 20 61 6e 20 60 65 64
69 74 60 20 6d 65 6d 62 65 72 3b 20 60 76 69 65 77 60 20 61 6e 64 20 60
63 6f 6d 6d 65 6e 74 60 20 61 72 65 0a 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 72 65 66 75 73 65 64 2e 71 62 6f 61 72
64 73 2d 61 72 65 2d 63 6c 6f 73 65 64 79 01 15 45 76 65 72 79 20 72 75
6c 65 20 6f 6e 20 62 6f 61 72 64 73 2c 20 62 6f 61 72 64 5f 6d 65 6d 62
65 72 73 20 61 6e 64 20 62 6f 61 72 64 5f 61 73 73 65 74 73 20 69 73 0a
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 60
6e 6f 6e 65 60 2e 20 54 68 65 72 65 20 69 73 20 6e 6f 20 64 69 72 65 63
74 20 72 65 63 6f 72 64 20 61 63 63 65 73 73 20 61 74 20 61 6c 6c 3a 20
74 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 65 69 67 68 74 20 66 75 6e 63 74 69 6f 6e 73 20 61 72 65 20 74
68 65 20 65 6e 74 69 72 65 20 73 75 72 66 61 63 65 2c 20 61 6e 64 20 61
20 63 6c 69 65 6e 74 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 74 68 61 74 20 74 72 69 65 73 20 74 68 65 20 63 6f
6c 6c 65 63 74 69 6f 6e 20 72 6f 75 74 65 73 20 67 65 74 73 20 6e 6f 74
68 69 6e 67 2e 71 64 6f 63 75 6d 65 6e 74 2d 65 6e 76 65 6c 6f 70 65 a4
64 73 69 7a 65 78 d6 62 6f 61 72 64 5f 73 61 76 65 20 72 65 66 75 73 65
73 20 61 20 64 6f 63 75 6d 65 6e 74 20 6f 76 65 72 20 72 6f 75 67 68 6c
79 20 39 30 30 20 30 30 30 20 62 79 74 65 73 2c 20 68 65 6c 64 0a 20 20
20 20 20 20 20 20 20 20 20 20 62 65 6c 6f 77 20 74 68 65 20 31 20 4d 69
42 20 61 6e 20 69 6e 76 6f 63 61 74 69 6f 6e 20 6d 61 79 20 63 61 72 72
79 2e 20 54 68 65 20 72 65 66 75 73 61 6c 20 69 73 20 62 79 20 65 6e 63
6f 64 65 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 73 69 7a 65 2c 20 73
6f 20 61 20 64 6f 63 75 6d 65 6e 74 20 74 68 61 74 20 67 72 65 77 20 62
79 20 6f 6e 65 20 69 6d 61 67 65 20 69 73 20 72 65 66 75 73 65 64 20 77
68 6f 6c 65 2e 66 61 6e 73 77 65 72 78 2e 41 20 4a 53 4f 4e 20 6f 62 6a
65 63 74 2c 20 69 6e 20 61 20 60 6a 73 6f 6e 60 20 63 6f 6c 75 6d 6e 20
6e 61 6d 65 64 20 60 64 6f 63 60 2e 6a 6e 6f 74 2d 75 6e 69 6d 73 67 79
01 11 54 68 65 20 64 65 66 69 63 69 65 6e 63 79 20 72 65 70 6f 72 74 20
61 73 6b 65 64 20 77 68 65 74 68 65 72 20 61 20 62 6f 61 72 64 20 74 72
61 76 65 6c 73 20 61 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 63 61 6e 6f 6e 69 63 61 6c 20 75 6e 69 6d 73 67 20 74 65 78 74
20 6f 72 20 61 73 20 43 42 4f 52 2e 20 49 74 20 69 73 20 6e 65 69 74 68
65 72 2e 20 54 68 65 20 62 6f 61 72 64 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 64 6f 63 75 6d 65 6e 74 20 69 73 20 4a 53 4f 4e
2c 20 61 6e 64 20 74 68 65 20 66 6f 72 6d 61 74 20 6f 66 20 74 68 69 73
20 73 70 65 63 69 66 69 63 61 74 69 6f 6e 20 69 73 20 6e 6f 74 0a 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 74 68 65 20 66 6f 72 6d
61 74 20 6f 66 20 74 68 65 20 61 70 70 6c 69 63 61 74 69 6f 6e 20 69 74
20 73 70 65 63 69 66 69 65 73 2e 73 72 6f 75 6e 64 2d 74 72 69 70 73 2d
61 73 2d 74 65 78 74 79 01 4d 41 20 74 61 6b 68 7a 65 65 6e 20 60 6a 73
6f 6e 60 20 66 69 65 6c 64 20 69 73 20 73 74 6f 72 65 64 20 61 73 20 54
45 58 54 2c 20 73 6f 20 69 74 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 63 6f 6d 65 73 20 62 61 63 6b
20 66 72 6f 6d 20 61 20 72 65 63 6f 72 64 20 72 65 61 64 20 61 73 20 61
20 73 74 72 69 6e 67 20 61 6e 64 20 74 68 65 0a 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 66 75 6e 63 74
69 6f 6e 73 20 70 61 72 73 65 20 69 74 2e 20 41 20 63 6c 69 65 6e 74 20
73 65 6e 64 73 20 61 6e 20 6f 62 6a 65 63 74 20 61 6e 64 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 72
65 63 65 69 76 65 73 20 61 6e 20 6f 62 6a 65 63 74 3b 20 74 68 65 20 73
74 72 69 6e 67 20 69 73 20 69 6e 74 65 72 6e 61 6c 20 74 6f 20 74 68 65
0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 73 65 72 76 65 72 20 61 6e 64 20 74 6f 20 74 68 65 20 66 75
6e 63 74 69 6f 6e 2e 71 72 65 70 61 72 65 6e 74 2d 72 65 66 75 73 61 6c
73 84 a2 67 72 65 66 75 73 61 6c 78 1b 61 20 68 6f 6d 65 20 6c 61 77 68
20 63 61 6e 6e 6f 74 20 62 65 20 6d 6f 76 65 64 69 63 6f 6e 64 69 74 69
6f 6e 78 1b 74 68 65 20 62 6f 61 72 64 20 69 73 20 74 68 65 20 68 6f 6d
65 20 62 6f 61 72 64 a2 67 72 65 66 75 73 61 6c 78 22 61 20 6c 61 77 68
20 63 61 6e 6e 6f 74 20 62 65 20 6d 6f 76 65 64 20 69 6e 74 6f 20 69 74
73 65 6c 66 69 63 6f 6e 64 69 74 69 6f 6e 78 22 74 68 65 20 6e 65 77 20
70 61 72 65 6e 74 20 69 73 20 74 68 65 20 62 6f 61 72 64 20 69 74 73 65
6c 66 a2 67 72 65 66 75 73 61 6c 78 22 74 68 65 20 6d 6f 76 65 20 77 6f
75 6c 64 20 64 65 74 61 63 68 20 74 68 61 74 20 73 75 62 74 72 65 65 69
63 6f 6e 64 69 74 69 6f 6e 78 30 74 68 65 20 6e 65 77 20 70 61 72 65 6e
74 20 69 73 20 69 6e 73 69 64 65 20 74 68 65 20 62 6f 61 72 64 27 73 20
6f 77 6e 20 73 75 62 74 72 65 65 a2 67 72 65 66 75 73 61 6c 78 1b 79 6f
75 20 63 61 6e 6e 6f 74 20 61 64 64 20 61 20 62 6f 61 72 64 20 68 65 72
65 69 63 6f 6e 64 69 74 69 6f 6e 78 27 74 68 65 20 63 61 6c 6c 65 72 20
6c 61 63 6b 73 20 65 64 69 74 20 6f 6e 20 74 68 65 20 6e 65 77 20 70 61
72 65 6e 74 71 77 68 61 74 2d 72 65 6d 61 69 6e 73 2d 6f 70 65 6e 87 a3
62 69 64 da 00 01 11 d4 63 44 30 35 63 77 68 79 78 4a 74 68 65 20 6d 65
63 68 61 6e 69 73 6d 20 64 6f 65 73 20 6e 6f 74 20 65 78 69 73 74 3b 20
61 20 63 68 61 6e 67 65 20 74 6f 20 74 68 65 20 73 79 73 74 65 6d 2c 20
6e 6f 74 20 74 6f 20 74 68 69 73 20 64 6f 63 75 6d 65 6e 74 64 69 74 65
6d 78 20 6e 6f 20 73 65 72 76 65 72 2d 73 69 64 65 20 63 6f 6e 64 69 74
69 6f 6e 61 6c 20 77 72 69 74 65 a3 62 69 64 da 00 01 11 d4 63 44 31 33
63 77 68 79 78 3c 66 75 6e 63 74 69 6f 6e 73 20 72 65 74 75 72 6e 20 70
72 6f 73 65 3b 20 6d 61 74 63 68 69 6e 67 20 69 74 20 69 73 20 74 68 65
20 6f 6e 6c 79 20 6f 70 74 69 6f 6e 20 74 6f 64 61 79 64 69 74 65 6d 75
6e 6f 20 73 74 61 62 6c 65 20 65 72 72 6f 72 20 63 6f 64 65 73 a3 62 69
64 da 00 01 11 d4 63 44 31 34 63 77 68 79 78 39 6e 6f 20 63 75 72 73 6f
72 20 65 78 69 73 74 73 3b 20 61 6e 20 61 63 63 6f 75 6e 74 20 70 61 73
74 20 32 30 30 20 62 6f 61 72 64 73 20 69 73 20 74 72 75 6e 63 61 74 65
64 64 69 74 65 6d 78 20 62 6f 61 72 64 5f 6c 69 73 74 20 69 73 20 62 6f
75 6e 64 65 64 2c 20 6e 6f 74 20 70 61 67 65 64 a3 62 69 64 da 00 01 11
d4 63 4c 30 31 63 77 68 79 78 35 73 6f 75 72 63 65 20 6d 61 79 20 62 65
20 61 68 65 61 64 20 6f 66 20 6f 72 20 62 65 68 69 6e 64 20 74 68 65 20
72 75 6e 6e 69 6e 67 20 69 6e 73 74 61 6e 63 65 64 69 74 65 6d 78 1d 74
68 65 20 64 65 70 6c 6f 79 65 64 20 74 61 6b 68 7a 65 65 6e 20 76 65 72
73 69 6f 6e a3 62 69 64 da 00 01 11 d4 63 4c 30 32 63 77 68 79 78 2e 70
65 72 20 64 61 74 61 62 61 73 65 2c 20 61 6e 64 20 6f 6e 6c 79 20 74 68
65 20 6c 69 76 65 20 69 6e 73 74 61 6e 63 65 20 6b 6e 6f 77 73 64 69 74
65 6d 78 21 77 68 69 63 68 20 4f 41 75 74 68 20 70 72 6f 76 69 64 65 72
73 20 61 72 65 20 65 6e 61 62 6c 65 64 a3 62 69 64 da 00 01 11 d4 63 4c
30 33 63 77 68 79 76 6f 70 65 72 61 74 6f 72 20 63 6f 6e 66 69 67 75 72
61 74 69 6f 6e 64 69 74 65 6d 78 24 70 75 62 6c 69 63 20 6f 72 69 67 69
6e 20 61 6e 64 20 72 65 64 69 72 65 63 74 20 61 6c 6c 6f 77 6c 69 73 74
a3 62 69 64 da 00 01 11 d4 63 4c 30 36 63 77 68 79 78 52 6f 77 6e 65 72
2c 20 65 64 69 74 6f 72 2c 20 76 69 65 77 65 72 2c 20 72 65 6d 6f 76 65
64 20 6d 65 6d 62 65 72 2c 20 73 74 72 61 6e 67 65 72 20 61 6e 64 20 61
6e 6f 6e 79 6d 6f 75 73 20 6d 75 73 74 20 62 65 20 63 68 65 63 6b 65 64
20 6c 69 76 65 64 69 74 65 6d 78 1c 74 68 65 20 65 6e 64 2d 74 6f 2d 65
6e 64 20 61 63 63 65 73 73 20 6d 61 74 72 69 78 78 19 72 65 70 61 72 65
6e 74 2d 69 73 2d 74 68 65 2d 73 61 6d 65 2d 63 61 6c 6c 79 01 ae 53 65
6e 64 69 6e 67 20 60 70 61 72 65 6e 74 49 64 60 20 6f 6e 20 61 6e 20 75
70 64 61 74 65 20 6d 6f 76 65 73 20 74 68 65 20 62 6f 61 72 64 2e 0a 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 54 68 65 20 6b 65 79 27 73 20 2a 70 72 65 73 65 6e 63
65 2a 20 69 73 20 77 68 61 74 20 74 72 69 67 67 65 72 73 20 61 20 6d 6f
76 65 2c 20 73 6f 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 61 6e 20 75 70 64 61 74 65 20
74 68 61 74 20 6f 6d 69 74 73 20 69 74 20 6c 65 61 76 65 73 20 74 68 65
20 70 61 72 65 6e 74 20 61 6c 6f 6e 65 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 61 6e 64
20 6f 6e 65 20 74 68 61 74 20 73 65 6e 64 73 20 61 6e 20 65 6d 70 74 79
20 76 61 6c 75 65 20 6d 6f 76 65 73 20 74 68 65 20 62 6f 61 72 64 0a 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 74 6f 20 74 68 65 20 74 6f 70 2e 20 41 20 63 6c 69 65
6e 74 20 74 68 61 74 20 61 6c 77 61 79 73 20 73 65 6e 64 73 20 65 76 65
72 79 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 66 69 65 6c 64 20 77 69 6c 6c 20 72 65 70
61 72 65 6e 74 20 6f 6e 20 65 76 65 72 79 20 73 61 76 65 2e 78 1b 65 76
65 72 79 74 68 69 6e 67 2d 65 6c 73 65 2d 69 73 2d 61 6e 73 77 65 72 65
64 79 01 ed 54 68 65 20 72 65 6d 61 69 6e 69 6e 67 20 65 69 67 68 74 20
64 65 66 69 63 69 65 6e 63 69 65 73 20 e2 80 94 20 74 68 65 20 66 75 6e
63 74 69 6f 6e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 73 68 61 70 65 73 2c 20 63 72
65 61 74 65 2d 6f 72 2d 75 70 64 61 74 65 2c 20 72 65 70 61 72 65 6e 74
2c 20 74 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 64 6f 63 75 6d 65 6e 74 20 65
6e 76 65 6c 6f 70 65 2c 20 74 68 65 20 74 69 63 6b 65 74 20 65 78 63 68
61 6e 67 65 2c 20 74 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 62 6c 6f 62 20 6d
61 70 70 69 6e 67 2c 20 74 68 65 20 73 68 61 72 69 6e 67 20 73 68 61 70
65 73 2c 20 74 68 65 20 69 64 65 6e 74 69 74 79 0a 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 62 6f 64 69 65 73 2c 20 74 68 65 20 4f 41 75 74 68 20 66 72 61 67 6d
65 6e 74 2c 20 61 6e 64 20 62 6f 74 68 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 64 65
70 6c 6f 79 6d 65 6e 74 20 73 63 68 65 6d 61 73 20 e2 80 94 20 61 72 65
20 73 70 65 63 69 66 69 65 64 20 61 62 6f 76 65 2c 20 72 65 61 64 0a 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 66 72 6f 6d 20 74 68 65 20 73 6f 75 72 63 65 73 20
74 68 65 20 72 65 70 6f 72 74 20 6e 61 6d 65 64 2e 78 22 65 76 65 72 79
2d 66 75 6e 63 74 69 6f 6e 2d 69 73 2d 69 6e 76 6f 6b 65 2d 72 75 6c 65
2d 61 75 74 68 79 01 58 53 6f 20 61 6e 20 75 6e 61 75 74 68 65 6e 74 69
63 61 74 65 64 20 63 61 6c 6c 20 66 61 69 6c 73 20 62 65 66 6f 72 65 0a
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 74 68 65 20 62 6f 64 79
20 72 75 6e 73 2e 20 54 68 65 20 66 75 6e 63 74 69 6f 6e 73 20 73 74 69
6c 6c 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 63 68 65 63 6b
20 60 74 61 6b 68 7a 65 65 6e 2e 61 75 74 68 28 29 60 20 74 68 65 6d 73
65 6c 76 65 73 2c 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 62
65 63 61 75 73 65 20 74 68 65 20 72 75 6c 65 20 70 72 6f 74 65 63 74 73
20 74 68 65 20 65 6e 64 70 6f 69 6e 74 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 61 6e 64 20 74 68 65 20 63 68 65 63 6b 20 70 72 6f 74
65 63 74 73 20 74 68 65 20 72 65 63 6f 72 64 2e 6b 69 6e 74 65 72 61 63
74 69 6f 6e a8 64 63 61 72 64 86 a2 66 61 63 74 69 6f 6e 64 6d 6f 76 65
67 67 65 73 74 75 72 65 da 00 01 11 d4 64 64 72 61 67 a2 66 61 63 74 69
6f 6e 66 72 65 73 69 7a 65 67 67 65 73 74 75 72 65 da 00 01 11 d4 6b 64
72 61 67 2d 63 6f 72 6e 65 72 a2 66 61 63 74 69 6f 6e 6e 6c 69 6e 6b 20
74 77 6f 20 63 61 72 64 73 67 67 65 73 74 75 72 65 da 00 01 11 d4 6e 64
72 61 67 2d 65 64 67 65 2d 6f 6e 74 6f a2 66 61 63 74 69 6f 6e 78 35 74
68 65 20 63 61 72 64 20 62 65 6c 6f 6e 67 73 20 74 6f 20 74 68 65 20 63
6f 6e 74 61 69 6e 65 72 20 61 6e 64 20 74 72 61 76 65 6c 73 20 77 69 74
68 20 69 74 67 67 65 73 74 75 72 65 da 00 01 11 d4 6d 64 72 6f 70 2d 69
6e 2d 66 72 61 6d 65 a2 66 61 63 74 69 6f 6e 78 18 6e 61 76 69 67 61 74
65 20 69 6e 74 6f 20 74 68 61 74 20 62 6f 61 72 64 67 67 65 73 74 75 72
65 da 00 01 11 d4 6a 63 6c 69 63 6b 2d 6c 61 77 68 a2 66 61 63 74 69 6f
6e 6b 65 64 69 74 20 69 6e 6c 69 6e 65 67 67 65 73 74 75 72 65 da 00 01
11 d4 6c 64 6f 75 62 6c 65 2d 63 6c 69 63 6b 64 74 69 64 79 78 1c 52 65
61 72 72 61 6e 67 65 73 20 74 68 65 20 63 75 72 72 65 6e 74 20 6c 61 77
68 2e 66 63 61 6e 76 61 73 86 a2 66 61 63 74 69 6f 6e 70 70 61 6e 20 74
68 65 20 76 69 65 77 70 6f 72 74 67 67 65 73 74 75 72 65 da 00 01 11 d4
6a 64 72 61 67 2d 65 6d 70 74 79 a2 66 61 63 74 69 6f 6e 64 7a 6f 6f 6d
67 67 65 73 74 75 72 65 da 00 01 11 d4 65 77 68 65 65 6c a2 66 61 63 74
69 6f 6e 64 7a 6f 6f 6d 67 67 65 73 74 75 72 65 da 00 01 11 d4 65 70 69
6e 63 68 a2 66 61 63 74 69 6f 6e 6a 71 75 69 63 6b 20 6d 65 6e 75 67 67
65 73 74 75 72 65 da 00 01 11 d4 6a 6c 6f 6e 67 2d 70 72 65 73 73 a2 66
61 63 74 69 6f 6e 74 73 65 6c 65 63 74 20 73 65 76 65 72 61 6c 20 63 61
72 64 73 67 67 65 73 74 75 72 65 da 00 01 11 d4 67 6d 61 72 71 75 65 65
a2 66 61 63 74 69 6f 6e 78 25 77 72 61 70 20 74 68 65 20 73 65 6c 65 63
74 69 6f 6e 20 69 6e 20 61 20 6e 65 77 20 63 6f 6e 74 61 69 6e 65 72 67
67 65 73 74 75 72 65 da 00 01 11 d4 69 67 72 6f 75 70 2d 6b 65 79 67 70
61 6c 65 74 74 65 8b 73 53 65 61 72 63 68 20 61 6e 64 20 63 6f 6d 6d 61
6e 64 73 6c 54 6f 67 67 6c 65 20 74 68 65 6d 65 69 56 69 65 77 20 6d 6f
64 65 6d 4c 61 77 68 20 73 65 74 74 69 6e 67 73 6e 54 69 64 79 20 74 68
69 73 20 6c 61 77 68 6b 41 62 6f 75 74 20 53 69 6a 69 6c 78 19 53 61 76
65 20 61 20 63 6f 70 79 20 6f 66 20 65 76 65 72 79 74 68 69 6e 67 71 4f
70 65 6e 20 61 20 73 61 76 65 64 20 63 6f 70 79 78 1c 43 68 61 6e 67 65
20 77 68 65 72 65 20 62 6f 61 72 64 73 20 61 72 65 20 6b 65 70 74 68 53
69 67 6e 20 6f 75 74 6c 52 65 6c 6f 61 64 20 53 69 6a 69 6c 69 66 75 6c
6c 2d 76 69 65 77 78 bb 41 20 6e 6f 74 65 20 6f 70 65 6e 73 20 66 75 6c
6c 2d 73 63 72 65 65 6e 20 75 73 69 6e 67 20 74 68 65 20 73 61 6d 65 20
62 75 69 6c 64 65 72 73 20 61 73 20 74 68 65 20 63 61 72 64 2c 20 73 6f
0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 74 68 65 20 66 75 6c 6c
20 76 69 65 77 20 2a 69 73 2a 20 74 68 65 20 6e 6f 74 65 20 72 61 74 68
65 72 20 74 68 61 6e 20 61 20 73 65 63 6f 6e 64 20 65 64 69 74 6f 72 20
74 68 61 74 20 68 61 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
74 6f 20 62 65 20 6b 65 70 74 20 69 6e 20 73 74 65 70 20 77 69 74 68 20
69 74 2e 6a 6e 61 76 69 67 61 74 69 6f 6e 78 b7 4f 70 65 6e 20 61 20 6c
61 77 68 20 63 61 72 64 20 74 6f 20 67 6f 20 69 6e 3b 20 74 68 65 20 62
72 65 61 64 63 72 75 6d 62 20 77 61 6c 6b 73 20 70 61 72 65 6e 74 20 69
64 73 20 62 61 63 6b 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
75 70 3b 20 68 6f 6d 65 20 72 65 74 75 72 6e 73 20 74 6f 20 74 68 65 20
61 63 63 6f 75 6e 74 27 73 20 68 6f 6d 65 20 6c 61 77 68 3b 20 74 68 65
20 6c 61 73 74 20 62 6f 61 72 64 20 69 73 0a 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 72 65 73 74 6f 72 65 64 20 61 63 72 6f 73 73 20 64
65 76 69 63 65 73 2e 6b 69 6e 6b 2d 63 61 70 74 75 72 65 78 60 50 72 65
73 73 20 74 68 65 20 70 65 6e 20 6b 65 79 20 61 6e 64 20 64 72 61 77 20
64 69 72 65 63 74 6c 79 20 6f 6e 74 6f 20 74 68 65 20 62 6f 61 72 64 3b
20 69 6e 6b 20 73 74 69 63 6b 73 0a 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 77 68 65 72 65 20 69 74 20 69 73 20 70 75 74 2e 6c 6c 61
79 6f 75 74 2d 6d 6f 64 65 73 82 da 00 01 11 d4 64 66 72 65 65 da 00 01
11 d4 64 67 72 69 64 6b 70 65 72 73 69 73 74 65 6e 63 65 a8 64 73 65 61
6d 78 c3 4f 6e 65 20 6d 6f 64 75 6c 65 20 69 73 20 74 68 65 20 65 6e 74
69 72 65 20 62 61 63 6b 65 6e 64 20 69 6e 74 65 67 72 61 74 69 6f 6e 2e
20 46 65 61 74 75 72 65 20 63 6f 64 65 20 6e 65 76 65 72 0a 20 20 20 20
20 20 20 20 20 20 63 61 6c 6c 73 20 74 68 65 20 6e 65 74 77 6f 72 6b 20
6f 72 20 62 72 6f 77 73 65 72 20 73 74 6f 72 61 67 65 20 64 69 72 65 63
74 6c 79 20 e2 80 94 20 69 66 20 69 74 20 64 69 64 2c 20 61 64 64 69 6e
67 20 74 68 65 0a 20 20 20 20 20 20 20 20 20 20 73 65 63 6f 6e 64 20 62
61 63 6b 65 6e 64 20 77 6f 75 6c 64 20 74 6f 75 63 68 20 65 76 65 72 79
20 66 69 6c 65 2e 64 75 6e 64 6f 78 be 53 6e 61 70 73 68 6f 74 2d 62 61
73 65 64 2e 20 52 65 73 74 6f 72 65 64 20 63 61 72 64 73 20 61 72 65 20
72 65 73 74 61 6d 70 65 64 20 e2 80 94 20 77 69 74 68 6f 75 74 20 74 68
61 74 2c 20 61 0a 20 20 20 20 20 20 20 20 20 20 74 6f 6d 62 73 74 6f 6e
65 20 61 6e 6f 74 68 65 72 20 72 65 70 6c 69 63 61 20 73 74 69 6c 6c 20
63 61 72 72 69 65 73 20 6f 75 74 72 61 6e 6b 73 20 74 68 65 20 72 65 73
74 6f 72 65 64 20 63 61 72 64 0a 20 20 20 20 20 20 20 20 20 20 61 6e 64
20 64 65 6c 65 74 65 73 20 69 74 20 61 67 61 69 6e 20 6f 6e 20 74 68 65
20 6e 65 78 74 20 73 79 6e 63 2e 68 61 64 61 70 74 65 72 73 82 a5 64 6e
61 6d 65 da 00 01 11 d4 65 6c 6f 63 61 6c 67 6e 65 73 74 69 6e 67 f4 67
73 68 61 72 69 6e 67 f4 67 73 74 6f 72 61 67 65 67 62 72 6f 77 73 65 72
68 69 64 65 6e 74 69 74 79 da 00 01 11 d4 64 6e 6f 6e 65 a5 64 6e 61 6d
65 da 00 01 11 d4 68 74 61 6b 68 7a 65 65 6e 67 6e 65 73 74 69 6e 67 f5
67 73 68 61 72 69 6e 67 f5 67 73 74 6f 72 61 67 65 6e 73 65 72 76 65 72
20 61 63 63 6f 75 6e 74 68 69 64 65 6e 74 69 74 79 6c 65 6d 61 69 6c 2c
20 4f 41 75 74 68 69 69 6e 74 65 72 66 61 63 65 86 da 00 01 11 d4 64 6c
6f 61 64 da 00 01 11 d4 64 73 61 76 65 da 00 01 11 d4 67 70 75 74 42 6c
6f 62 da 00 01 11 d4 67 62 6c 6f 62 55 52 4c da 00 01 11 d4 62 6d 65 da
00 01 11 d4 65 73 68 61 72 65 6d 61 6c 73 6f 2d 70 72 6f 76 69 64 65 73
87 da 00 01 11 d4 64 6c 69 73 74 da 00 01 11 d4 64 68 6f 6d 65 da 00 01
11 d4 66 63 72 65 61 74 65 da 00 01 11 d4 68 72 65 70 61 72 65 6e 74 da
00 01 11 d4 6b 64 65 6c 65 74 65 42 6f 61 72 64 da 00 01 11 d4 64 77 61
72 6d da 00 01 11 d4 67 69 73 53 61 76 65 64 6e 61 64 61 70 74 65 72 2d
63 68 6f 73 65 6e da 00 01 11 d4 6a 61 74 2d 72 75 6e 74 69 6d 65 6e 73
61 76 65 2d 64 65 62 6f 75 6e 63 65 64 78 bc 53 61 76 65 73 20 61 72 65
20 64 65 62 6f 75 6e 63 65 64 20 61 6e 64 20 6d 75 73 74 20 62 65 20 66
6c 75 73 68 65 64 20 62 65 66 6f 72 65 20 6e 61 76 69 67 61 74 69 6e 67
0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 61 77 61
79 2c 20 6f 72 20 74 68 65 20 77 72 69 74 65 20 69 73 20 64 69 73 63 61
72 64 65 64 2e 20 4f 6d 69 74 74 69 6e 67 20 74 68 65 20 66 6c 75 73 68
20 6d 61 64 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 65 76 65 72 79 20 6c 61 77 68 20 6f 70 65 6e 20 6d 69 6e 74 20 61
20 6e 65 77 20 62 6f 61 72 64 2e 71 61 64 61 70 74 65 72 2d 73 65 6c 65
63 74 69 6f 6e 79 01 e7 54 68 65 20 70 61 67 65 27 73 20 6f 77 6e 20 55
52 4c 20 64 65 63 69 64 65 73 3a 20 61 20 70 61 74 68 20 6f 66 20 2f 61
70 70 73 2f 7b 73 6c 75 67 7d 2f 20 6f 72 20 61 6e 0a 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 61 70 70 73 20 73 75
62 64 6f 6d 61 69 6e 20 6d 65 61 6e 73 20 61 20 62 61 63 6b 65 6e 64 20
69 73 20 70 72 65 73 65 6e 74 2c 20 61 6e 79 74 68 69 6e 67 20 65 6c 73
65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 69 73 20 6c 6f 63 61 6c 3b 20 61 6e 20 6f 76 65 72 72 69 64 65 20 76
61 72 69 61 62 6c 65 20 66 6f 72 63 65 73 20 65 69 74 68 65 72 2e 20 54
68 69 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 72 65 70 6c 61 63 65 64 20 61 20 62 75 69 6c 64 20 73 74 65 70
20 74 68 61 74 20 72 65 77 72 6f 74 65 20 61 6e 20 69 6d 70 6f 72 74 20
73 74 61 74 65 6d 65 6e 74 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 57 68 65 6e 20 74 68 65 20 68 6f 73 74 20
62 65 67 61 6e 20 73 65 72 76 69 6e 67 20 74 68 65 20 72 65 70 6f 73 69
74 6f 72 79 20 61 73 2d 69 73 20 74 68 61 74 0a 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 73 74 65 70 20 73 74 6f 70
70 65 64 20 72 75 6e 6e 69 6e 67 2c 20 61 6e 64 20 74 68 65 20 64 65 70
6c 6f 79 65 64 20 61 70 70 20 73 69 6c 65 6e 74 6c 79 20 75 73 65 64 0a
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 62
72 6f 77 73 65 72 20 73 74 6f 72 61 67 65 2e 6d 6e 6f 2d 62 75 69 6c 64
2d 73 74 65 70 79 01 aa 4e 61 74 69 76 65 20 45 53 20 6d 6f 64 75 6c 65
73 2c 20 6e 6f 20 62 75 6e 64 6c 65 72 2c 20 6e 6f 20 74 72 61 6e 73 70
69 6c 65 72 2e 20 4e 6f 74 20 6d 69 6e 69 6d 61 6c 69 73 6d 0a 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 66 6f 72 20 69 74 73 20 6f 77
6e 20 73 61 6b 65 3a 20 74 68 65 20 61 70 70 20 69 73 20 73 65 72 76 65
64 20 73 74 72 61 69 67 68 74 20 66 72 6f 6d 20 61 20 67 69 74 0a 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 72 65 70 6f 73 69 74 6f 72
79 20 62 79 20 69 74 73 20 68 6f 73 74 2c 20 61 6e 64 20 61 20 62 75 69
6c 64 20 73 74 65 70 20 74 68 65 20 64 65 70 6c 6f 79 65 64 20 61 70 70
0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 64 65 70 65 6e 64
73 20 6f 6e 20 68 61 73 20 61 6c 72 65 61 64 79 20 62 72 6f 6b 65 6e 20
69 74 20 6f 6e 63 65 20 e2 80 94 20 74 68 65 20 64 65 70 6c 6f 79 6d 65
6e 74 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 73 69 6c 65
6e 74 6c 79 20 66 65 6c 6c 20 62 61 63 6b 20 74 6f 20 62 72 6f 77 73 65
72 20 73 74 6f 72 61 67 65 20 77 69 74 68 20 6e 6f 20 73 69 67 6e 2d 69
6e 2c 20 61 6e 64 20 61 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 71 75 65 72 79 20 70 61 72 61 6d 65 74 65 72 20 69 6e 20 74 68 65
20 55 52 4c 20 77 61 73 20 74 68 65 20 6f 6e 6c 79 20 73 79 6d 70 74 6f
6d 2e
canonical CBOR for examples/sijil.umsg 54698 bytes

Every construct on this page

The formal columns are read from the specification when this page is generated. The last column is this site's plain-language gloss and is not normative — where they differ, the specification is right.

constructglyphcarriesexamplegloss
:annotationA bare name qualifying the value after it—for example a language tag or a unit such as kg. It is not a value itself; a bare name with nothing after it is an error, not a guess.
:array^type, or type:shape; then [ elements ]^f64 [ 1.5, 2.5 ] or ^i16:2x3 [ … ]A packed, homogeneous numeric array. The ^ marker gives every element its type and may also give the row-major shape: ^f64:2x3 [ … ].
:array-elementOne element of a typed array. Its type comes from the ^ marker, so 1.5 inside ^f64 is binary64 rather than an exact decimal.
:array-missingA missing position in a typed array. null here is not an element value: it adds a validity mask while preserving the array's shape.
:blockA block: named pairs, in braces. Its keys are sorted in the encoding and shown here as written.
:bytes~encoding:data~hex:ff00 or ~b64:iVBORw0KGgo=Raw octets, carried as octets. No base64 tax, no pretending they are text.
:comment--to end of line-- a noteA note for people. It travels with the pair it precedes and never reaches the bytes.
:decimalAn exact decimal. 19.99 is nineteen and ninety-nine hundredths, not the nearest double to it.
:extension!name, then value!acme/hint { zone 4 }A qualifier this reader may not know. It survives the round trip intact, and stays legible on the way past — the rule that separates an extension from a private convention.
:floatA binary float, marked so it can never be mistaken for the exact decimal beside it.
:hash#algorithm:hex#sha256:deadbeefThe digest of some content, with the algorithm said out loud so it is still meaningful in ten years.
:header%unimsg only%unimsg 0 labelDeclares the format version and what this document is. Optional, and useful exactly when a file arrives without context.
:identifier@word@ord-88213Gives this value a name, so another document can point at it without copying it.
:integerA whole number of any size. Past 2^53 it is still exact, which is the whole reason this is not JSON.
:keyA field name: the first thing in a pair. It is bare when possible and quoted when needed, and names the content without becoming part of the value.
:reference->an identifier or a path-> @cust-4471, -> @lexicon.entries.kitābPoints at a name. Nothing follows it while reading — resolution is somebody else's job, deliberately.
:reserved-literalOne of six bare words that are values rather than names. The list is fixed, so no value is coerced by what it looks like.
:sequenceAn ordered list. Order is preserved and is meaning.
:stringText. May span lines, so prose does not have to be escaped into one.
:symbol:word:dispatchedA name from a fixed vocabulary, not free text. :high is a value someone chose; "high" is a phrase someone typed.
:table-row|cells| sku qtyOne record of a table. A table is sugar for a sequence of blocks with the same keys, and encodes identically to the longhand.
:timestampA temporal value at the precision written. 2026-08 stays a month, and 03:52 stays a wall-clock time; neither is widened into an invented instant.