Skip to content

FastForm Phases 0–4: cookie/parse/match/compile/classify/transport pipeline - #1

Merged
SupaOhm merged 24 commits into
mainfrom
phases-0-4
Aug 6, 2026
Merged

FastForm Phases 0–4: cookie/parse/match/compile/classify/transport pipeline#1
SupaOhm merged 24 commits into
mainfrom
phases-0-4

Conversation

@SupaOhm

@SupaOhm SupaOhm commented Aug 6, 2026

Copy link
Copy Markdown
Owner

Implements Phases 0–4 of the FastForm design: a hand-runnable pipeline that
submits a Google Form by POSTing directly to formResponse, with authentication
read live from Chrome. Task 11 (the fire.py CLI that wires the pipeline into a
single command) is intentionally not in this PR yet.

What's here

  • cookies.py — reads Google auth cookies live from Chrome's cookie store
    (Keychain secret → PBKDF2 → AES-128-CBC via openssl, zero deps). Requires an
    explicit profile; resolve_accounts() names each profile's account.
  • parse.py — form page → FormSpec from FB_PUBLIC_LOAD_DATA_; detects
    sign-in state and scrapes the per-load token/tag hidden inputs.
  • match.py — matches prepared answers to questions by text with a
    confidence ladder; a choice value not in the options list is a gap, not a fill.
  • compile.pyFilledForm → request body + headers; refuses to build
    without token/tag.
  • classify.py — response → outcome, from measured fixtures.
  • transport.py — one warm connection reused across GET and POST.

Verified against the real Google Forms behavior

This design was corrected repeatedly by empirical testing, not assumption. Key
findings, all encoded in the code and its tests:

  • Cookies expire in minutes (Chrome rotates __Secure-1PSIDTS), so a static
    captured header is unusable — cookies are read live at run time.
  • The POST needs token and tag, per-page-load hidden inputs, HTML-escaped
    in the page. Not reCAPTCHA — scrapeable.
  • A signed-out form returns HTTP 200 with the full structure, never a
    redirect; detected by a data-sign-in-to-continue attribute.
  • There is no server-side duplicate protection — no fbzx dedupe, no
    limit-to-one enforcement against a direct POST. The client's stop-on-success
    is the only safeguard, which shaped the retry policy.
  • The classifier keys on the <form> element, because a success page and a
    rejection page both contain FB_PUBLIC_LOAD_DATA_. An earlier heuristic
    reported a recorded submission as REJECTED; that regression is now pinned to
    a real fixture by a test.

Tests

93 tests, stdlib unittest, no network (a local server exercises transport).

python3 -m unittest discover -s tests -v

Not included / follow-ups

  • Task 11 (fire.py CLI) — the pipeline is built but not yet wired into the
    single-command runner.
  • Chrome profile is unset in config/profile.toml; the tool refuses to run
    until an account is chosen.
  • Minor review findings (e.g. hidden-input regex assumes attribute order) are
    tracked for the final review.

🤖 Generated with Claude Code

https://claude.ai/code/session_01HvAS3iP5DJxYkmGuwXadoL

ohm and others added 24 commits August 5, 2026 19:58
Design for a Google Form speed-submission system: reactive daemon over a
parse/compile + transport seam, stdlib-only hot path, cookie-based auth with
no browser in the fire path, warm TLS connection pool, structural (not
locale-dependent) response classification, and a check-then-act retry policy.

Includes the calibration experiment set against self-owned test forms and a
phased build order gated on cookie-only POST working.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HvAS3iP5DJxYkmGuwXadoL
- Collapse poll_get_then_post into the PRE_OPEN sub-state; they described the
  same behavior, and poll_get_then_post could never execute. Add PRE_OPEN to
  the state machine list.
- Add UNKNOWN to the stop-condition table: stop, probe once, never resend on an
  unclassifiable response.
- Specify the limit-to-one=OFF timeout branch, previously an open case: resend
  directly without probing, since no already-responded state exists to observe.
- Route blockers to browser handoff rather than the gate, resolving a
  contradiction between the runtime and risks sections.
- Stop intake threads on entering ARMED; the 5ms clipboard poll is a spin loop,
  not a blocked read, and contended with the fire window.
- Replace blanket gc.disable() with gc.freeze() at ARMED plus disable only
  around each send, since PRE_OPEN can run for minutes.
- Add E9: verify warm TLS connections survive hours of idle. The warm-pool
  premise rested on this and nothing tested it.
- Correct E7 to set the send timeout from p95; max_sends derives from E3.
- Make Phase 4's sender explicitly single-shot so the first usable version is
  safe by construction, and drop the "ship tonight" framing, which assumed a
  deadline that does not exist.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HvAS3iP5DJxYkmGuwXadoL
Second review pass found that the "URL arrives early" scenario had no
representation in the design at all: ARMING flowed straight into FIRING, so a
leaked-early URL fired immediately against a form the organizer had not yet
opened for competition.

- Add ARMED_HOLDING sub-state and open_at config. Parsing, matching, and gap
  reporting happen on URL receipt; firing waits. The value is discovering an
  unmatched required question hours early rather than at the open bell.
- Re-scope optimistic mode, which had become unreachable: the ARMING table can
  produce no state where the form both parses and is not yet open. It is now
  scoped to the one reachable case (held FormSpec + form closed for reset
  before open), which the hold state creates.
- Hold-time re-validation, since an organizer may edit the form between leak
  and open and stale the entry IDs.
- Intake now stops on FIRING rather than on arming, so a replacement URL can
  supersede a held one. Updated the jitter section to match.
- Resolve profile.toml listing "strategy" as config while FIRING says modes are
  runtime-selected.
- Note classify.py handles probe-GET bodies, since ALREADY_RESPONDED is not
  observable in a POST response.
- Remove duplicated Phase 4 paragraph and remaining "MVP" framing.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HvAS3iP5DJxYkmGuwXadoL
Eleven TDD tasks producing a hand-run tool: paste a form URL, get a submission.
Scoped to phases 0-4 deliberately — phase 6 consumes values that phase 5
calibration measures, so planning it now would mean inventing numbers.

Two deviations from the spec, both to avoid speculative work: cookies are
captured by hand from DevTools rather than decrypted from Chrome's SQLite
store (decryption needs AES, hence a dependency), and RequestBlob holds an
encoded body plus headers rather than raw socket bytes (E7 decides whether
raw serialization earns its keep).

All plan code was extracted and executed before committing: 40 tests pass,
and the parse/match/compile pipeline was exercised end to end on synthetic
form data.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HvAS3iP5DJxYkmGuwXadoL
Deep review of the plan found two defects that would have broken execution:

1. F1 was created with limit-to-one ON and then manually submitted to capture
   the reference cURL. Task 3's E1 gate POSTs to that same form from the same
   account — exactly what limit-to-one blocks. The gate would have returned
   "already responded", no row would have appeared, and the plan instructs the
   operator to conclude the design is unviable and stop. The same root cause
   crashed Task 8's curl_diff, whose GET would hit the already-responded page
   and raise NotParseable unhandled.

2. F1 disabled email collection and relied on limit-to-one for sign-in, while
   F2 was specified with limit-to-one off and "Responder input" — which does
   not force sign-in and contradicts F1. F2 would have required no auth, and
   every end-to-end check in Task 11 ran against it, so the cookie path went
   unexercised past Task 3.

Both fixed by the same restructure: F1 forces sign-in via Collect email
addresses -> Verified and keeps limit-to-one OFF, flipping it on only for
Task 9's already-responded capture. That removes F2's reason to exist in this
plan. Added an incognito check so a form that does not require sign-in is
caught immediately.

Also:
- Cookie file must hold the bare value; the shell curl does not strip a
  "Cookie:" prefix the way the Python loader does, and the doubled header
  silently yields a signed-out page.
- --drop-required now drops exactly one required field rather than emptying
  the payload, which risks being treated as a draft rather than a rejection.
- Dropped the authfail fixture: AUTH_FAIL is detected from status and Location,
  neither of which a saved body preserves, and capturing it meant temporarily
  overwriting the real cookie file.
- Task 10 now states plainly that Phase 4 gets no warm-pool benefit; the real
  gain is GET and POST sharing one connection.
- fire.py distinguishes a redirect from a closed form, so a forms.gle link
  reports the redirect target instead of "form is closed".
- Done criterion 5 checked git status for ignored files, which never shows
  them; now checks git ls-files.
- Named BLOCKER_TYPES/CHOICE_TYPES in the Task 5/6 interface blocks.

Re-extracted and re-ran all plan code: 40 tests pass, every module compiles,
and the new drop-one-required path was exercised directly.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HvAS3iP5DJxYkmGuwXadoL
Implement fastform.cookies module with load() and verify() functions.
- load() reads and parses the Cookie header from config/cookies.txt
- verify() checks that the cookie still authenticates against Google
- USER_AGENT constant available for downstream tasks

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HvAS3iP5DJxYkmGuwXadoL
Task 2's review established that verify() cannot distinguish a captcha or
consent interstitial served with HTTP 200 from a signed-in page, so the
Known Risks entry claiming the boot-time authenticated GET mitigates the
'verify it's you' challenge was overstating what the check can deliver.

Closing the gap needs a captured sample of such a page to derive a marker
from; guessing at markers without one would be worse than the stated gap.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HvAS3iP5DJxYkmGuwXadoL
verify() decides whether a stored cookie is still signed in, and every
later task acts on that answer -- but it had zero test coverage. Add
unit tests covering signed-in with/without an email in the body,
redirect to accounts.google.com, redirect elsewhere (documents the
actual fall-through behavior, not a redesigned one), and a bare 5xx
status. All tests patch http.client.HTTPSConnection so no real network
request occurs.

Also note in verify()'s docstring that any HTTP 200 is currently read
as signed in, so a captcha/interstitial served with status 200 would
be misread as authenticated -- documentation only, no detection added.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HvAS3iP5DJxYkmGuwXadoL
The E1 gate passed - a cookie-only POST does record a response - but running it
disproved four assumptions that were load-bearing in the design.

1. COOKIES EXPIRE IN MINUTES, NOT MONTHS. A header copied from DevTools
   authenticated for ~7 minutes and was dead across all of Google within 20.
   Chrome rotates __Secure-1PSIDTS continuously (4 minutes old in the live
   profile, vs 35 hours for __Secure-1PSID); once it rotates the captured value
   stops working. The browser session stays healthy. "Extract cookies once,
   offline" cannot work, and neither can a boot-time check hours early nor
   ARMED_HOLDING on a static header. Reading Chrome's cookie store live is now
   the design, verified end to end with zero Python dependencies via Keychain
   plus an openssl subprocess.

2. THE POST NEEDS token AND tag. Both are per-page-load hidden inputs; dropping
   either returns 400. They are NOT reCAPTCHA - the page has no recaptcha,
   grecaptcha or botguard reference - so scraping them from the arming GET
   works. Their values are HTML-escaped in the page and must be unescaped, or
   the POST 400s even with correct field names. emailAddress is also required
   when the form collects the responder's address.

3. GOOGLE FORMS DOES NOT REDIRECT FOR SIGN-IN. A signed-out sign-in-required
   form returns 200 with the question structure fully intact, so parsing
   succeeds while unauthenticated. Detection must key on the
   data-sign-in-to-continue attribute, which is locale-independent.

4. FB_PUBLIC_LOAD_DATA_ IS PRESENT ON THE SUCCESS PAGE TOO. The heuristic
   "form re-rendered means rejected" reported REJECTED on a submission that had
   actually been recorded - the worst error available, since it invites a retry.
   The real discriminator is whether the response still contains a
   <form action="...formResponse"> element. The freebirdFormviewerViewResponse*
   classes the classifier keyed on do not exist in current markup.

Adds real captured fixtures for the success and rejection responses.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HvAS3iP5DJxYkmGuwXadoL
Three protections the spec assumed were tested and all three are absent:

  fbzx deduplication - three identical POSTs sharing one fbzx, token and tag
    produced three separate rows.
  "Limit to 1 response" - with the setting on and prior responses from the same
    account, a direct POST appended a new row and changed nothing existing.
  ALREADY_RESPONDED - no such state on either verb. The GET returns an ordinary
    form; the POST returns an ordinary confirmation.

The spec's check-then-act timeout policy therefore had nothing to check. It is
replaced by: resend on timeout up to a low max_sends, since a duplicate row
costs little in a first-three-wins race while a lost submission costs
everything. The consequence is that the client's RECORDED hard-stop is now the
only thing preventing duplicate entries, which makes it safety-critical.

Optimistic POST-polling is downgraded to high-risk and off by default for the
same reason.

Also captured: a closed form 302s to /closedform and records nothing - the one
genuine no-op available. And status 200 does not imply recorded; two probes
returned 200 with no confirmation marker, so the classifier must never key on
status alone.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HvAS3iP5DJxYkmGuwXadoL
resp-already.bin held a confirmation page, not an already-responded page -
that state does not exist, since limit-to-one does not block a direct POST.
Keeping it under that name would have taught the classifier the wrong lesson.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HvAS3iP5DJxYkmGuwXadoL
cookie_header_from_chrome() defaulted to the profile with the most Google
cookies. Cookie count is not an identity, and a count shift on the day could
silently switch the submitting account, so the profile argument is now
required - the tool refuses to guess who submits.

resolve_accounts() pairs each profile with its signed-in email via one
authenticated GET each, so the operator chooses between accounts rather than
between profile numbers. On the test machine only 2 of 5 profiles still
authenticate.

Also closes the reviewer's Minor: the 32-byte domain-hash-strip branch in
decrypt_value now has a real openssl round-trip test, plus a guard that a
sub-32-byte value is not mistaken for a prefixed one. And corrects the module
docstring, which still claimed cookies "last months" - the assumption this
whole line of work disproved.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HvAS3iP5DJxYkmGuwXadoL
The competition account is not yet decided and may be neither of the two
currently signed in, so the profile stays unset. The tool already refuses to
run without it, so unset is a safe state. Documents how to list accounts and
what to do if the right one is not signed into Chrome yet.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HvAS3iP5DJxYkmGuwXadoL
Real F3/F4 need browser work; these hand-built FB_PUBLIC_LOAD_DATA_ fixtures
satisfy parse.py's multi-section and file-upload tests now. Verified against
the plan's parse.py: F3 -> 3 pages/0,1,2/city options, F4 -> one file-upload
blocker. Real forms remain a deferred fidelity check.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HvAS3iP5DJxYkmGuwXadoL
Implements FB_PUBLIC_LOAD_DATA_ extraction, question and option parsing,
sign-in detection, and hidden input scraping with HTML unescaping.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HvAS3iP5DJxYkmGuwXadoL
_items() already guards the top-level FB_PUBLIC_LOAD_DATA_ access, but the
per-item unpacking loop in parse() (item[3], item[1], item[4], entry[0..2])
had no equivalent guard, so a structurally short item leaked a bare
IndexError instead of the contracted NotParseable that callers rely on to
distinguish "not a parseable form" from a real error.
The plan's classifier still had the investigation's disproven logic: it keyed
success on FB_PUBLIC_LOAD_DATA_ reappearing (present on the success page too)
and on freebird* classes that do not exist, so it reported RECORDED submissions
as REJECTED. Rewritten to key on the <form action> element (primary
recorded-vs-rejected split), the /closedform redirect, and the sign-in
attribute. Verified 11/11 against the three real captured fixtures plus
redirect and signed-out edge cases. Dropped the resp-already.bin references -
that state does not exist.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HvAS3iP5DJxYkmGuwXadoL
Implement Outcome enum (RECORDED, REJECTED, CLOSED, ALREADY_RESPONDED, AUTH_FAIL,
UNKNOWN) and classify() function to map HTTP responses to outcomes using real
captured fixtures. Classifier detects: redirect status/location, form re-render,
sign-in requirement, closed-form page, and positive confirmation markers.

All 11 classify tests pass; full suite 86/86 passing.
Review found test_connection_is_reusable could not fail: the test server
defaulted to HTTP/1.0 and closed after every response, so http.client silently
opened a fresh socket and the test passed even with the body-drain deleted -
guarding nothing, on the one property this module exists to provide.

Fix:
- Test handler now speaks HTTP/1.1 with Content-Length on every response, so
  the server actually keeps the connection alive.
- test_connection_is_reusable asserts the same underlying socket serves both
  requests, with a 5s timeout so a drain regression fails fast, not by hanging.
  Verified: deleting resp.read() makes it fail (ResponseNotReady); restoring
  it passes.
- connect() now closes any existing connection before reassigning, fixing a
  socket leak on a second connect(). Guarded by a new test asserting the first
  socket's fileno() is -1 after reconnect.
- Added the missing get()-before-connect RuntimeError test.

93 tests pass.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HvAS3iP5DJxYkmGuwXadoL
Copilot AI lite review requested due to automatic review settings August 6, 2026 03:03
@SupaOhm
SupaOhm merged commit f1618d3 into main Aug 6, 2026
1 check passed

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Implements the initial FastForm “Phases 0–4” pipeline for submitting Google Forms via a direct formResponse POST, with cookie auth sourced live from Chrome, plus a fixture-driven test suite that exercises parsing, matching, compilation, transport reuse, and response classification.

Changes:

  • Added core pipeline modules: Chrome cookie extraction (cookies.py), page parsing into a FormSpec (parse.py), answer matching (match.py), request compilation (compile.py), warm-connection transport (transport.py), and response classification (classify.py).
  • Added extensive unittest coverage and local fixtures for parser/classifier/transport behavior.
  • Added configuration scaffolding (config/*.toml, .gitignore) and a detailed design/spec document.

Reviewed changes

Copilot reviewed 21 out of 26 changed files in this pull request and generated 6 comments.

Show a summary per file
File Description
fastform/cookies.py Reads/decrypts Google cookies from Chrome profile store and verifies sign-in state.
fastform/parse.py Extracts FB_PUBLIC_LOAD_DATA_ + hidden inputs into FormSpec and question list.
fastform/match.py Matches answer-bank entries to questions and produces FilledForm + confidence/gaps.
fastform/compile.py Builds POST body/headers for formResponse, enforcing presence of token/tag.
fastform/transport.py Provides a reusable warm HTTP(S) connection and basic heartbeat logic.
fastform/classify.py Classifies submission outcomes using structural markers and saved fixtures.
tests/test_cookies.py Unit tests for cookie loading/verification/decryption and profile selection logic.
tests/test_parse.py Parser tests against real/synthetic fixtures; sign-in and hidden-input extraction coverage.
tests/test_match.py Matching and confidence ladder tests, including choice-option constraints and blockers.
tests/test_compile.py Request compilation tests (headers/encoding/fbzx/token/tag/pageHistory/email).
tests/test_transport.py Ensures response draining enables keep-alive reuse; validates elapsed timing and reconnect semantics.
tests/test_classify.py Classifier tests pinned to captured response bodies and redirect semantics.
tests/__init__.py Marks tests package.
fixtures/resp-success.bin Captured “recorded” response fixture used by classifier tests.
fixtures/resp-closed.bin Captured “closed form” response/landing fixture used by classifier tests.
fixtures/f3-viewform.html Synthetic multi-section form HTML for parser tests.
fixtures/f4-viewform.html Synthetic file-upload blocker form HTML for parser tests.
fixtures/README.md Documents fixture provenance and intended semantics.
docs/superpowers/specs/2026-08-05-fastform-design.md Architecture/design rationale and phased build plan.
config/answers.toml Initial answer bank example (match phrases/regex/value).
config/profile.toml Chrome profile selection guidance (intentionally unset by default).
.gitignore Ignores cookie override file and curl fixture artifacts.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread fastform/parse.py
Comment on lines +35 to +37
_HIDDEN_RE = re.compile(
rb'<input[^>]+type="hidden"[^>]+name="([^"]+)"[^>]+value="([^"]*)"'
)
Comment thread fastform/cookies.py
Comment on lines +155 to +159
placeholders = ",".join("?" * len(_GOOGLE_HOSTS))
return con.execute(
f"SELECT name, encrypted_value FROM cookies "
f"WHERE host_key IN ({placeholders})", _GOOGLE_HOSTS
).fetchall()
Comment thread fastform/compile.py
Comment on lines +63 to +64
# Prefer the page's own fbzx; it is already paired with this token.
fields.append(("fbzx", fbzx or spec.hidden.get("fbzx") or new_fbzx()))
Comment thread fixtures/resp-success.bin
@@ -0,0 +1 @@
<!DOCTYPE html><html class="HB1eCd-UMrnmb PHOcVb"><head><style nonce="XwIC0uPJcU-t6bJiV53CRw">.iPj4P { background-color: #5746e3 !important; }</style><link rel="shortcut icon" sizes="16x16" href="https://www.gstatic.com/images/branding/productlogos/forms_2026/v2/web-16dp/logo_forms_2026_color_1x_web_16dp.png"><title>FastForm F1</title><link rel="stylesheet" href="https://www.gstatic.com/_/freebird/_/ss/k=freebird.v.cqyCYBwdeHc.L.W.O/am=ECACHA/d=1/rs=AMjVe6j9xICbazDamdb6RTKBMujjsz1Aqg" data-id="_cl" nonce="XwIC0uPJcU-t6bJiV53CRw"><link href="https://fonts.googleapis.com/css?family=Google+Sans_old:400,500|Roboto_old:300,400,400i,500,700&subset=latin,vietnamese,latin-ext,cyrillic,greek,cyrillic-ext,greek-ext" rel="stylesheet" nonce="XwIC0uPJcU-t6bJiV53CRw"><script nonce="Mbluc987l1QNVMBvCgi-PA">var DOCS_timing={}; DOCS_timing['pls']=new Date().getTime(); DOCS_timing['sl']=DOCS_timing['pls']; _docs_webfonts_json = {"fontMetadataMap":{"Calibri":{"documentFont":false,"fontFaces":[{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":452,"ascender":1536,"cmapFormat2":false,"codepoint4e00":false,"descender":-512,"fsSelection":64,"lineGap":452,"ulCodePageRange1":1,"unitsPerEm":2048,"usWinAscent":1950,"usWinDescent":550},"fontFamily":"Calibri","menuFont":false,"sources":[{"format":"woff2","isLocal":true,"url":"Calibri"},{"format":"woff2","isLocal":false,"url":"//fonts.gstatic.com/l/font?kit\u003dJ7afnpV-BGlaFfdAtLMS7JNK\u0026skey\u003da1029226f80653a8\u0026v\u003dv15"}],"style":"normal","subset":"ALL","subsetValue":"*","weight":400,"weightedFontFamily":"Calibri"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":452,"ascender":1536,"cmapFormat2":false,"codepoint4e00":false,"descender":-512,"fsSelection":1,"lineGap":452,"ulCodePageRange1":1,"unitsPerEm":2048,"usWinAscent":1950,"usWinDescent":550},"fontFamily":"Calibri","menuFont":false,"sources":[{"format":"woff2","isLocal":true,"url":"Calibri Italic"},{"format":"woff2","isLocal":true,"url":"Calibri-Italic"},{"format":"woff2","isLocal":false,"url":"//fonts.gstatic.com/l/font?kit\u003dJ7adnpV-BGlaFfdAhLQY67FIEjg\u0026skey\u003d36a3d5758e0e2f58\u0026v\u003dv15"}],"style":"italic","subset":"ALL","subsetValue":"*","weight":400,"weightedFontFamily":"Calibri"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":452,"ascender":1536,"cmapFormat2":false,"codepoint4e00":false,"descender":-512,"fsSelection":32,"lineGap":452,"ulCodePageRange1":1,"unitsPerEm":2048,"usWinAscent":1950,"usWinDescent":550},"fontFamily":"Calibri","menuFont":false,"sources":[{"format":"woff2","isLocal":true,"url":"Calibri Bold"},{"format":"woff2","isLocal":true,"url":"Calibri-Bold"},{"format":"woff2","isLocal":false,"url":"//fonts.gstatic.com/l/font?kit\u003dJ7aanpV-BGlaFfdAjAo9zp5gGDAb\u0026skey\u003dcd2dd6afe6bf0eb2\u0026v\u003dv15"}],"style":"normal","subset":"ALL","subsetValue":"*","weight":700,"weightedFontFamily":"Calibri Bold"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":452,"ascender":1536,"cmapFormat2":false,"codepoint4e00":false,"descender":-512,"fsSelection":33,"lineGap":452,"ulCodePageRange1":1,"unitsPerEm":2048,"usWinAscent":1950,"usWinDescent":550},"fontFamily":"Calibri","menuFont":false,"sources":[{"format":"woff2","isLocal":true,"url":"Calibri Bold Italic"},{"format":"woff2","isLocal":true,"url":"Calibri-BoldItalic"},{"format":"woff2","isLocal":false,"url":"//fonts.gstatic.com/l/font?kit\u003dJ7aYnpV-BGlaFfdAhLQgUp5qHxIZrCE\u0026skey\u003d8b00183e5f6700b6\u0026v\u003dv15"}],"style":"italic","subset":"ALL","subsetValue":"*","weight":700,"weightedFontFamily":"Calibri Bold"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":452,"ascender":1536,"cmapFormat2":false,"codepoint4e00":false,"descender":-512,"fsSelection":64,"lineGap":452,"ulCodePageRange1":1,"unitsPerEm":2048,"usWinAscent":1950,"usWinDescent":550},"fontFamily":"Calibri--Menu","menuFont":true,"sources":[{"format":"woff2","isLocal":false,"url":"//fonts.gstatic.com/l/font?kit\u003dJ7afnpV-BGlaFfdAhLcY67FIEjg\u0026skey\u003da1029226f80653a8\u0026v\u003dv15"}],"style":"normal","subset":"MENU","subsetValue":"menu","weight":400,"weightedFontFamily":"Calibri"}],"genericFallback":"sans-serif","hasInkedWhitespace":false,"restrictedDomainFont":false,"userDomainFont":false,"version":"v15"}},"unrecognizedFontFamilies":[],"weightedFontFamilyMap":{"Calibri":"Calibri","Calibri Bold":"Calibri"}}</script><script nonce="Mbluc987l1QNVMBvCgi-PA">_docs_webfonts_fontFaces = null; _docs_webfonts_iframe_fontFaces = null;(function() {_docs_webfonts_createFontFaces = function(doc) {if (doc && doc.fonts) {var win = window; var fontFaceObject = {}; var docs_fontFaces_data = {}; for (var identifierString in docs_fontFaces_data) {var fontFace = new win.FontFace( docs_fontFaces_data[identifierString]['fontFamily'], docs_fontFaces_data[identifierString]['sourceString'],{'style': docs_fontFaces_data[identifierString]['style'], 'weight': docs_fontFaces_data[identifierString]['weight']}); fontFace.load().then(function(loadedFontFace) {doc.fonts.add(loadedFontFace);}); fontFaceObject[identifierString] = fontFace;}return fontFaceObject;}return null;}; _docs_webfonts_fontFaces = _docs_webfonts_createFontFaces(document);})();DOCS_timing['wpid']=new Date().getTime();</script><link href="https://fonts.googleapis.com/css?family=Product+Sans&subset=latin,vietnamese,latin-ext,cyrillic,greek,cyrillic-ext,greek-ext" rel="stylesheet" type="text/css" nonce="XwIC0uPJcU-t6bJiV53CRw"><meta name="viewport" content="width=device-width, initial-scale=1"><meta name="referrer" content="strict-origin-when-cross-origin"><script data-id="_gd" nonce="Mbluc987l1QNVMBvCgi-PA">window.WIZ_global_data = {"K1cgmc":"%.@.[null,null,null,[1,1,[1785749849,516300000],4],null,0]]","SpaT4e":"editors","TSDtV":"%.@.[[null,[[45759550,null,false,null,null,null,\"ipHXZe\"],[45765567,null,false,null,null,null,\"Gu5Dg\"],[45755088,null,false,null,null,null,\"fzPMYc\"],[45805719,null,false,null,null,null,\"ZZrh9e\"],[45796590,null,false,null,null,null,\"rFDJvb\"],[45776074,null,false,null,null,null,\"H0kCgf\"],[45681910,null,true,null,null,null,\"OKXfNb\"],[45662509,null,false,null,null,null,\"fLCtnf\"],[45794381,null,false,null,null,null,\"mPb5ue\"],[45808609,null,false,null,null,null,\"SY6Rxb\"],[45657263,null,false,null,null,null,\"ByEExb\"],[45769604,null,false,null,null,null,\"h14wf\"],[45822231,null,false,null,null,null,\"CwJ3S\"],[45744490,null,false,null,null,null,\"luHWB\"],[45760386,null,false,null,null,null,\"B22Yae\"],[45791957,null,false,null,null,null,\"yYo5Mc\"],[45727616,null,true,null,null,null,\"qNQRAf\"],[45644642,null,null,null,\"X-WS exp!\",null,\"rsrxGc\"],[45748088,null,false,null,null,null,\"KLuwTc\"],[45744236,null,false,null,null,null,\"Rnque\"],[45778211,null,false,null,null,null,\"W7jxNc\"],[45749331,null,false,null,null,null,\"JQs3De\"],[45696305,null,false,null,null,null,\"Uujhbc\"],[45807852,null,false,null,null,null,\"O7AOQd\"],[45775833,null,false,null,null,null,\"bRlUw\"],[45679175,null,false,null,null,null,\"OETeme\"],[45747909,null,false,null,null,null,\"uTkAWb\"],[45677009,null,false,null,null,null,\"JkUdKe\"],[45678187,null,false,null,null,null,\"OrvCpd\"],[45822250,null,false,null,null,null,\"mtSDUb\"],[45672203,null,true,null,null,null,\"jDBBvd\"],[45643359,null,true,null,null,null,\"GcxuKe\"],[45672066,null,true,null,null,null,\"E1A5lb\"],[45773777,null,false,null,null,null,\"PT2mkd\"],[45751947,null,false,null,null,null,\"sT6Vl\"],[45670693,null,false,null,null,null,\"V7Wemb\"],[45730498,null,false,null,null,null,\"ZycXJf\"],[45717711,null,false,null,null,null,\"lhxHkd\"],[45777286,null,false,null,null,null,\"NYeKmb\"],[45775584,0,null,null,null,null,\"bjSjmf\"],[45775398,null,false,null,null,null,\"ejP0Cd\"],[45712967,null,false,null,null,null,\"rZW8ld\"],[45673686,null,false,null,null,null,\"TVdkuc\"],[45673687,null,false,null,null,null,\"OQKgkd\"],[45762063,null,false,null,null,null,\"WlmQwb\"],[45681145,null,true,null,null,null,\"hV6kcd\"],[45743516,null,false,null,null,null,\"C3mEk\"],[45801628,null,false,null,null,null,\"HAOZVe\"],[45678265,null,false,null,null,null,\"P7qpdc\"],[45725105,null,false,null,null,null,\"VQN2ac\"],[45800462,null,false,null,null,null,\"ggsQnc\"],[45672211,null,true,null,null,null,\"Wgtd8c\"],[45797816,null,false,null,null,null,\"HLGpcd\"],[45729447,null,false,null,null,null,\"hjIR6e\"],[45782633,null,false,null,null,null,\"CfqILe\"],[45768846,null,false,null,null,null,\"rwPWxf\"],[45754885,null,true,null,null,null,\"rKnVYd\"],[45757913,null,false,null,null,null,\"qmNm7d\"],[45769936,null,false,null,null,null,\"FXtIgb\"],[45808613,null,false,null,null,null,\"Ln6bt\"],[45686665,null,true,null,null,null,\"xGJelc\"],[45668197,null,true,null,null,null,\"pReYPb\"],[45723911,null,false,null,null,null,\"e77Z7d\"],[45763814,null,false,null,null,null,\"s2BRxc\"],[45822166,null,null,null,\"Generate the draft based on these details.\",null,\"K2uSgc\"],[45706188,null,false,null,null,null,\"OF1zrd\"],[45824069,null,false,null,null,null,\"Ufe4Y\"],[45770955,null,true,null,null,null,\"GYvfVc\"],[45714946,null,true,null,null,null,\"ZYrane\"],[45816821,null,false,null,null,null,\"mvTBld\"],[45700150,null,false,null,null,null,\"RLRykc\"],[45678679,null,false,null,null,null,\"HbebVe\"],[45785527,null,false,null,null,null,\"Vgzmac\"],[45772218,null,false,null,null,null,\"KV2rCe\"],[45715074,null,true,null,null,null,\"xxxPgb\"],[45700770,null,false,null,null,null,\"Mk7a4d\"],[45681147,null,true,null,null,null,\"pgDArb\"],[45776812,null,true,null,null,null,\"SX5Atc\"],[45677445,null,false,null,null,null,\"rPYk8\"],[45658949,null,true,null,null,null,\"NfShlf\"],[45803148,null,false,null,null,null,\"xwAAZc\"],[45788232,null,false,null,null,null,\"zMXnKc\"],[45748403,null,false,null,null,null,\"XYCTRc\"],[45699702,null,false,null,null,null,\"Xo3sI\"],[45807357,null,false,null,null,null,\"IQZOkd\"],[45765896,null,false,null,null,null,\"Gl5aM\"],[45749214,null,null,null,\"\",null,\"HkDBBd\"],[45729467,null,false,null,null,null,\"kKLGLb\"],[45769154,null,false,null,null,null,\"OPleEe\"],[45789804,null,false,null,null,null,\"ymRI8\"],[45812735,null,false,null,null,null,\"Yk2s0e\"],[45813075,null,false,null,null,null,\"aq7kZe\"],[45762489,null,false,null,null,null,\"cqFBGe\"],[45823385,null,false,null,null,null,\"Bj7Brf\"],[45760024,null,false,null,null,null,\"iKoeab\"],[45775102,null,null,null,\"\",null,\"patyy\"],[45774956,null,false,null,null,null,\"rhB3ee\"],[45724259,null,true,null,null,null,\"Sjqsdf\"],[45672206,null,true,null,null,null,\"qxTK9b\"],[45709238,null,true,null,null,null,\"jQTN0e\"],[45729422,null,false,null,null,null,\"OOSdib\"],[45812940,null,false,null,null,null,\"O22Sge\"],[45798443,null,false,null,null,null,\"C687tf\"],[45654291,null,false,null,null,null,\"rhP5uf\"],[45653421,null,false,null,null,null,\"K2C7od\"],[45644639,null,true,null,null,null,\"GoJCRc\"],[45796009,null,true,null,null,null,\"CUiBhe\"],[45820374,null,false,null,null,null,\"Gnzcd\"],[45672202,null,true,null,null,null,\"CyvTSb\"],[45726382,null,false,null,null,null,\"QUY3\"],[45813099,null,false,null,null,null,\"j4o8qe\"],[45744918,null,false,null,null,null,\"f9HMbb\"],[45788753,null,true,null,null,null,\"AH4mzf\"],[45621619,null,false,null,null,null,\"PfkIr\"],[45773994,null,false,null,null,null,\"dADOHe\"],[45735186,null,false,null,null,null,\"SIvvz\"],[45791678,null,false,null,null,null,\"AX1Zl\"],[45672213,null,true,null,null,null,\"BfWTle\"],[45822286,null,null,null,\"The draft looks good and covers everything. Let us finalize it.\",null,\"pwGLae\"],[45771189,null,false,null,null,null,\"N8Zn3e\"],[45802962,null,false,null,null,null,\"jVyASe\"],[45810797,null,false,null,null,null,\"mwxF4b\"],[45758631,null,false,null,null,null,\"kGhHOe\"],[45818531,null,false,null,null,null,\"UmzKbc\"],[45802693,null,false,null,null,null,\"QwN3Ve\"],[45730506,null,false,null,null,null,\"qhuWUc\"],[45769023,null,false,null,null,null,\"z66fFe\"],[45690176,null,false,null,null,null,\"qF6xVc\"],[45686663,null,true,null,null,null,\"KGh4Cc\"],[45697234,null,false,null,null,null,\"cUoIXb\"],[45708298,null,false,null,null,null,\"T4IN0c\"],[45812992,null,false,null,null,null,\"OYyUS\"],[45748868,null,false,null,null,null,\"HraNse\"],[45806359,null,false,null,null,null,\"Hc7m4c\"],[45718842,null,false,null,null,null,\"Ywwwdb\"],[45770251,null,false,null,null,null,\"ugtdaf\"],[45811075,null,false,null,null,null,\"hdbTPe\"],[45821188,null,false,null,null,null,\"kIO20c\"],[45766700,null,false,null,null,null,\"wxRkOc\"],[45788792,null,false,null,null,null,\"NYGVYd\"],[45804556,null,false,null,null,null,\"uGfKYc\"],[45752852,null,false,null,null,null,\"Pdqiud\"],[45823523,null,false,null,null,null,\"L8Gquf\"],[45812932,null,false,null,null,null,\"cEao8\"],[45752686,null,false,null,null,null,\"mi0YMb\"],[45729830,null,false,null,null,null,\"DCV6If\"],[45814566,null,false,null,null,null,\"UtIL3e\"],[45785103,null,false,null,null,null,\"mywtHd\"],[45712870,null,false,null,null,null,\"J04FPb\"],[45762802,null,false,null,null,null,\"zcN1ic\"],[45769980,null,true,null,null,null,\"GcH8If\"],[45658679,null,true,null,null,null,\"qdTkee\"],[45720792,null,false,null,null,null,\"NFUw0c\"],[45753332,null,false,null,null,null,\"s7RHUb\"],[45771617,null,false,null,null,null,\"Blimsc\"],[45767102,null,true,null,null,null,\"SFyMwf\"],[45783804,null,false,null,null,null,\"BBtrjb\"],[45770188,null,false,null,null,null,\"JMBoZe\"],[45779204,null,false,null,null,null,\"yC3ALe\"],[45725154,null,false,null,null,null,\"WbzTGf\"],[45801648,null,false,null,null,null,\"mxFwrf\"],[45800085,null,false,null,null,null,\"Wi7jZ\"],[45782336,null,false,null,null,null,\"qUIPl\"],[45641838,null,false,null,null,null,\"fLPxhf\"],[45723104,null,true,null,null,null,\"EkiEee\"],[45747769,null,true,null,null,null,\"pkwVub\"],[45737532,null,false,null,null,null,\"JmYEv\"],[45820980,null,false,null,null,null,\"SCHNtf\"],[45755277,null,false,null,null,null,\"kHLD6e\"],[45776409,null,false,null,null,null,\"G5gJw\"],[45798803,null,false,null,null,null,\"cLNSBb\"],[45686662,null,true,null,null,null,\"go03Eb\"],[45773549,null,false,null,null,null,\"Xo7q9d\"],[45660690,null,false,null,null,null,\"ovKHsb\"],[45770837,null,false,null,null,null,\"FJ461c\"],[45677461,null,null,null,null,null,\"qb66hd\",[\"[[\\\"fr\\\",\\\"es\\\",\\\"pt\\\",\\\"it\\\",\\\"de\\\",\\\"ja\\\",\\\"ko\\\"]]\"]],[45816614,null,null,null,null,null,\"y9Fone\",[\"[[\\\"en\\\"]]\"]],[45792493,null,false,null,null,null,\"fYmo4c\"],[45808544,null,false,null,null,null,\"EteYEb\"],[45819588,0,null,null,null,null,\"wbzdub\"],[45769474,null,false,null,null,null,\"u2dq9e\"],[45746380,null,false,null,null,null,\"fkqxGb\"],[45821527,null,false,null,null,null,\"Rqnnh\"],[45793906,null,false,null,null,null,\"yLhhJb\"],[45725110,null,false,null,null,null,\"ElheSd\"],[45728785,null,false,null,null,null,\"UPAJB\"],[45660287,null,false,null,null,null,\"nIuPDe\"],[45788422,null,false,null,null,null,\"biLVcb\"],[45686664,null,true,null,null,null,\"P0fSX\"],[45769057,null,false,null,null,null,\"o9iuvb\"],[45692064,null,false,null,null,null,\"wZ64Sb\"],[45773613,null,false,null,null,null,\"tDmOYe\"],[45711477,null,false,null,null,null,\"Rnlerd\"],[45797188,null,false,null,null,null,\"bHmAwd\"],[45676996,null,false,null,null,null,\"KFVYtf\"],[45799901,null,false,null,null,null,\"hxZa7b\"],[45672205,null,true,null,null,null,\"E7dKkc\"],[45802547,null,false,null,null,null,\"MSDC3c\"],[45699204,null,true,null,null,null,\"XWRwod\"],[45776401,null,false,null,null,null,\"VdeTBe\"],[45806947,300,null,null,null,null,\"b0rpgd\"],[45752655,null,false,null,null,null,\"NsOFEe\"],[45769147,null,false,null,null,null,\"DFM4ae\"],[45796246,null,false,null,null,null,\"N0Rqe\"],[45736179,null,false,null,null,null,\"LIe8ub\"],[45644640,42,null,null,null,null,\"xbuGR\"],[45804726,null,false,null,null,null,\"jtTPA\"],[45801316,null,false,null,null,null,\"EOyv4b\"],[45796251,null,false,null,null,null,\"Fdalgf\"],[45742079,null,false,null,null,null,\"awHj9\"],[45676754,null,false,null,null,null,\"YwbU8\"],[45767159,0,null,null,null,null,\"yDErgc\"],[45770249,null,false,null,null,null,\"cUUSDf\"],[45726852,null,false,null,null,null,\"qgjRgd\"],[45700504,null,false,null,null,null,\"u6ksOd\"],[45783852,1,null,null,null,null,\"Ygmeod\"],[45672085,null,true,null,null,null,\"FJbUAf\"],[45742759,null,false,null,null,null,\"hc5Fic\"],[45762425,null,false,null,null,null,\"l5Ziqe\"],[45765314,null,false,null,null,null,\"jNI7Hb\"],[45737769,null,false,null,null,null,\"C4gACf\"],[45684108,null,false,null,null,null,\"IHwhDb\"],[45674285,null,false,null,null,null,\"zRoGXc\"],[45774501,null,false,null,null,null,\"flYjKf\"],[45766771,null,false,null,null,null,\"aCW0Qd\"],[45775440,null,false,null,null,null,\"LBBJ2e\"],[45746176,null,false,null,null,null,\"atfOHe\"],[45779046,null,false,null,null,null,\"wYy78\"],[45736482,null,false,null,null,null,\"DAnsv\"],[45804808,null,false,null,null,null,\"hV66bc\"],[45684730,null,true,null,null,null,\"aW7Ggd\"],[45677444,null,false,null,null,null,\"WYEV9b\"],[45776017,null,false,null,null,null,\"aAEbr\"],[45795492,null,false,null,null,null,\"WLRPhf\"],[45779941,null,false,null,null,null,\"r18O9b\"],[45798772,null,true,null,null,null,\"Wa5bQc\"],[45747879,null,false,null,null,null,\"kZsK5\"],[45661802,null,false,null,null,null,\"I09lfd\"],[45772691,null,false,null,null,null,\"A6J3Xb\"],[45746685,null,false,null,null,null,\"Q3KBSd\"],[45778160,null,false,null,null,null,\"oWcm2d\"],[45794745,null,false,null,null,null,\"tVjQye\"],[45737207,null,false,null,null,null,\"Kw5UUd\"],[45639541,null,false,null,null,null,\"LHinid\"],[45736727,null,false,null,null,null,\"JJHfwf\"],[45768825,null,false,null,null,null,\"pf4r3c\"],[45748983,null,true,null,null,null,\"s0d1Kd\"],[45757707,null,false,null,null,null,\"yZYBLb\"],[45780893,null,false,null,null,null,\"sRGemf\"],[45772141,null,false,null,null,null,\"jXHT1d\"],[45719766,null,false,null,null,null,\"A3eSQd\"],[45772275,null,false,null,null,null,\"oqsMtf\"],[45696085,null,false,null,null,null,\"g3Gc7d\"],[45793966,null,false,null,null,null,\"ev0hBf\"],[45731897,null,true,null,null,null,\"NK5elf\"],[45745030,null,true,null,null,null,\"HKORbd\"],[45785853,null,false,null,null,null,\"pRgIoc\"],[45798771,null,true,null,null,null,\"qgvf6d\"],[45788942,null,false,null,null,null,\"Nm6g8e\"],[45811102,null,false,null,null,null,\"HedPKb\"],[45746766,null,true,null,null,null,\"a6khDf\"],[45657471,null,null,null,null,null,\"kMR5pc\",[\"[]\"]],[45772706,null,false,null,null,null,\"LZgWZ\"],[45820748,null,false,null,null,null,\"ZyMUec\"],[45686667,null,true,null,null,null,\"ek81nf\"],[45813544,null,false,null,null,null,\"gpy7be\"],[45658731,null,true,null,null,null,\"zMe6ub\"],[45777878,null,false,null,null,null,\"Se84Kc\"],[45658716,null,true,null,null,null,\"Fa3cob\"],[45685754,null,true,null,null,null,\"OyPt5\"],[45756433,null,false,null,null,null,\"Zb8rLd\"],[45661086,null,false,null,null,null,\"wfVdS\"],[45666088,null,false,null,null,null,\"MgfT5\"],[45774508,null,false,null,null,null,\"h5ZSZb\"],[45771289,null,false,null,null,null,\"s7fdUc\"],[45729970,null,false,null,null,null,\"V517pe\"],[45658644,null,true,null,null,null,\"ZdwoD\"],[45696263,null,null,null,null,null,\"W12Bse\",[\"[[\\\"feature named `pageObserver` was not found\\\",\\\"feature named `hover` was not found\\\"]]\"]],[45653615,null,null,null,null,null,\"lwF00d\",[\"[]\"]],[45658291,null,true,null,null,null,\"OSuRGd\"],[45779090,null,false,null,null,null,\"hCbIKb\"],[45743085,null,true,null,null,null,\"Ph5VH\"],[45795480,null,false,null,null,null,\"UDqFgb\"],[45681790,null,false,null,null,null,\"uPCxtc\"],[45647060,null,false,null,null,null,\"uYjPWb\"],[45720439,null,false,null,null,null,\"UFhFZb\"],[45736698,null,false,null,null,null,\"nhgo9c\"],[45810643,null,false,null,null,null,\"qH1kDb\"],[45686666,null,true,null,null,null,\"dZ9mjb\"],[45644641,null,null,3.14159,null,null,\"FX1FL\"],[45747887,null,false,null,null,null,\"BvfvHb\"],[45694562,null,false,null,null,null,\"D50qNc\"],[45777794,null,false,null,null,null,\"E1AmL\"],[45773680,null,false,null,null,null,\"rgqUee\"]],\"CAMSmgEdkAbTlPY3A5KlDQO0BAPMLgNIA4jTBqdBA+yOBQPPgQ4DsQ0D64UFA3oDUQMp+QYDZAPj1QUDpAYD/wYD0AYD5K4VAyUD3NlMo+YFA7QGA0oDgQUD2ecnA8ff/QMD8Z8BA8OkDAPv1QgDpKIVkpUSA+GKAgOVugQDj7EDq7hHA5bIDgOn9wUDyOQCA6L5CIaiJgOMghAD5gYD\"]]]","eNnkwf":"1722992466","gnD3ee":"%.@.null,null,null,\"https://drive-qa.corp.google.com/viewer/main\"]","nQyAE":{},"pzJKf":1,"qymVe":"lHuM4d2UuSmhUZ_KpkZxfzk8D_Q","w2btAe":"%.@.\"04799816263973835557\",\"04799816263973835557\",\"0\",true,null,null,true,false]"};</script><style id="WTVccd" nonce="XwIC0uPJcU-t6bJiV53CRw">.Iq2xPb .kaAt2 .KKHx9e {background-color: #3C4043;}.Iq2xPb .kaAt2.KKjvXb .KKHx9e {background-color: rgb(87, 70, 227);}.Iq2xPb .kaAt2.RDPZE .KKHx9e {background-color: #70757a;}.wGQFbe.N2RpBe:not(.RDPZE), .wGQFbe.B6Vhqe:not(.RDPZE) {border-color: rgb(87, 70, 227);}.wGQFbe.i9xfbb > .MbhUzd, .wGQFbe.u3bW4e > .MbhUzd {background-color: rgba(87, 70, 227, 0.15);}.wGQFbe.wGQFbe:hover > .MbhUzd {background-color: rgba(87, 70, 227, 0.04);}.wGQFbe.wGQFbe:focus > .MbhUzd {background-color: rgba(87, 70, 227, 0.15);}.BJHAP.N2RpBe.RDPZE, .BJHAP.B6Vhqe.RDPZE {border-color: rgb(87, 70, 227);}.BJHAP.RDPZE:not(.N2RpBe):not(.B6Vhqe) {border-color: #9AA0A6;}.da8bmd .BJHAP.N2RpBe.RDPZE, .da8bmd .BJHAP.B6Vhqe.RDPZE, .wMUAvd .BJHAP.RDPZE {border-color: #5F6368;}.aomaEc.N2RpBe:not(.RDPZE) .Id5V1, .aomaEc .nQOrEb {border-color: rgb(87, 70, 227);}.aomaEc .N2RpBe:not(.RDPZE) .Id5V1 {border-color: rgb(87, 70, 227);}.aomaEc.i9xfbb > .MbhUzd, .aomaEc.u3bW4e > .MbhUzd {background-color: rgba(87, 70, 227, 0.15);}.aomaEc :not(.RDPZE):hover > .MbhUzd {background-color: rgba(87, 70, 227, 0.04);}.aomaEc :not(.RDPZE):focus > .MbhUzd {background-color: rgba(87, 70, 227, 0.15);}.ECvBRb .N2RpBe.RDPZE .Id5V1, .ECvBRb .N2RpBe.RDPZE .nQOrEb {border-color: rgb(87, 70, 227);}.ECvBRb .RDPZE:not(.N2RpBe) .Id5V1 {border-color: #9AA0A6;}.da8bmd .ECvBRb .N2RpBe.RDPZE .Id5V1, .da8bmd .ECvBRb .N2RpBe.RDPZE .nQOrEb, .wMUAvd .ECvBRb .RDPZE .Id5V1 {border-color: #5F6368;}.aYSFK > :first-child {border-left: transparent solid 5px;}.aYSFK.N2RpBe {background-color: rgb(238, 237, 252);}.aYSFK.N2RpBe > :first-child {border-left-color: rgb(87, 70, 227);}.mhLiyf.KKjvXb.RDPZE {color: #5F6368;}.TFBnVe .MbhUzd {background-image: radial-gradient( circle farthest-side,rgba(87, 70, 227, 0.15),rgba(87, 70, 227, 0.15) 80%,rgba(87, 70, 227, 0) 100% );}.TFBnVe {color: rgb(87, 70, 227);}.TFBnVe.RDPZE {color: rgba(87, 70, 227, 0.5);}.TFBnVe.u3bW4e {outline: 2px solid rgb(87, 70, 227); outline-offset: 2px;}.TFBnVe.u3bW4e .CeoRYc {background-color: rgba(87, 70, 227, 0.15);}.RvMhje .MbhUzd {background-image: radial-gradient( circle farthest-side,rgba(255, 255, 255, .3),rgba(255, 255, 255, .3) 80%,rgba(255, 255, 255, 0) 100% );}.RvMhje {background-color: rgb(87, 70, 227); color: rgba(255, 255, 255, 1);}.RvMhje.RDPZE {color: rgba(255, 255, 255, 1); opacity: .54;}.RvMhje a .snByac {color: rgba(255, 255, 255, 1);}.RvMhje.u3bW4e {outline: 2px solid rgb(87, 70, 227); outline-offset: 2px;}.RvMhje.u3bW4e .CeoRYc {background-color: rgba(255, 255, 255, .3);}.QvWxOd {background-color: rgb(87, 70, 227);}.QvWxOd.u3bW4e {outline: 2px solid rgb(87, 70, 227); outline-offset: 2px;}.QvWxOd .TpQm9d, .QvWxOd .TpQm9d:hover, .QvWxOd .TpQm9d:link, .QvWxOd .TpQm9d:visited {background-color: rgb(87, 70, 227);}.QvWxOd:hover {box-shadow: 0px 2px 1px -1px rgba(87, 70, 227, 0.2), 0px 1px 1px 0px rgba(87, 70, 227, 0.14), 0px 1px 3px 0px rgba(87, 70, 227, 0.12);}.QvWxOd.RDPZE:hover {box-shadow: none;}.QvWxOd.qs41qe.qs41qe {box-shadow: 0px 3px 5px -1px rgba(87, 70, 227, 0.2), 0px 6px 10px 0px rgba(87, 70, 227, 0.14), 0px 1px 18px 0px rgba(87, 70, 227, 0.12);}.ctEux {color: rgb(87, 70, 227);}.ctEux.u3bW4e {outline: 2px solid rgb(87, 70, 227); outline-offset: 2px;}.ctEux .CeoRYc {background-color: rgb(87, 70, 227);}.ctEux .MbhUzd {background-image: radial-gradient( circle farthest-side,rgba(87, 70, 227, 0.15),rgba(87, 70, 227, 0.15) 80%,rgba(87, 70, 227, 0) 100% );}.pRZhW {color: rgb(104, 109, 115);}.XTgocd {border-color: rgb(104, 109, 115);}.p6JeP .kaAt2 {color: rgb(104, 109, 115);}.p6JeP .kaAt2.KKjvXb {background-color: rgba(87, 70, 227, 0.15); color: rgb(87, 70, 227);}.p6JeP .kaAt2.KKjvXb.RDPZE {background-color: rgba(189, 189, 189, .38);; color: #9AA0A6;}.p6JeP .k6JGBb {fill: rgb(104, 109, 115);}.p6JeP .KKjvXb .k6JGBb {fill: rgb(87, 70, 227);}.p6JeP .RDPZE .k6JGBb, .p6JeP .KKjvXb.RDPZE.k6JGBb {fill: #9AA0A6;}.mfr8Qd .SKMfG {fill: rgb(87, 70, 227);}.Iq2xPb .s7bIcf {background-color: rgb(87, 70, 227);}@media screen and (forced-colors: active) {.Iq2xPb .s7bIcf {outline: 1px solid Highlight;}}.Iq2xPb .kaAt2 {color: #3C4043;}.Iq2xPb .kaAt2.KKjvXb {color: rgb(87, 70, 227);}.Iq2xPb .kaAt2.RDPZE {color: #70757a; cursor: default;}.Iq2xPb .RDPZE + .s7bIcf {background-color: #70757a;}.Iq2xPb .MbhUzd {background-image: radial-gradient( circle farthest-side,rgba(87, 70, 227, 0.15),rgba(87, 70, 227, 0.15) 80%,rgba(87, 70, 227, 0) 100% );}.Iq2xPb .PXrNBb {fill: #5F6368;}.Iq2xPb .KKjvXb .PXrNBb {fill: rgb(87, 70, 227);}.Iq2xPb RDPZE .PXrNBb, .Iq2xPb .KKjvXb.RDPZE.PXrNBb {fill: #9AA0A6;}.LKH0ge .cXrdqd {background-color: rgb(87, 70, 227);}.Yp9mw:focus-within {border-bottom-color: rgb(87, 70, 227);}.LKH0ge .Is7Fhb {color: rgb(87, 70, 227);}.LKH0ge.u3bW4e .snByac {color: rgb(87, 70, 227);}.LKH0ge.IYewr .oJeWuf.mIZh1c, .LKH0ge.IYewr .oJeWuf.cXrdqd {background-color: rgb(221, 218, 249);}.whsOnd:not([disabled]):focus ~ .AxOyFc.snByac, .u3bW4e > .oJeWuf >.fqp6hd.snByac, .u3bW4e.dm7YTc > .oJeWuf >.fqp6hd.snByac {color: rgb(87, 70, 227);}.HNgK9.RDPZE .zHQkBf[disabled] {color: rgba(0, 0, 0, .87);}.FlwNw.u3bW4e .oJeWuf:before {border-color: rgb(87, 70, 227);}.FlwNw .zHQkBf:not([disabled]):focus ~ .snByac {color: rgb(87, 70, 227);}.yqQS1 .cXrdqd {background-color: rgb(87, 70, 227);}.yqQS1 .Is7Fhb {color: rgb(87, 70, 227);}.yqQS1.IYewr .oJeWuf.mIZh1c, .yqQS1.IYewr .oJeWuf.cXrdqd {background-color: rgb(221, 218, 249);}.toT2u.RDPZE .zHQkBf[disabled] {color: rgba(0, 0, 0, .87);}.Y4klN.N2RpBe .espmsb {border-color: rgb(87, 70, 227); color: rgba(255, 255, 255, 1);}.Y4klN.N2RpBe > .MLPG7 {border-color: rgb(221, 218, 249);}.Y4klN.i9xfbb > .MbhUzd, .Y4klN.u3bW4e > .MbhUzd {background-color: rgba(87, 70, 227, 0.15);}.bvhls {border-color: rgb(87, 70, 227);}.bvhls.N2RpBe {background-color: rgb(87, 70, 227); color: rgba(255, 255, 255, 1);}.TCbR9b {display: none;}.IszBRc-Guievd-HLvlvd .TCbR9b {display: block;}.IszBRc-Guievd-HLvlvd .doKKyd {display: none;}.KHCwJ {display: none;}.naGohb {background-color: rgb(87, 70, 227);color: rgba(255, 255, 255, 1);}.b4wEpf {background-color: rgb(87, 70, 227);}.barETd .X1clqd, .barETd .qRUolc, .barETd .pPQgvf {color: #202124; fill: #5F6368;}.IszBRc-Guievd-JaPV2b .barETd {border: 2px solid white;}.IszBRc-Guievd-HLvlvd .barETd {border: 2px solid black;}.IOncP .HvOprf {color: rgb(87, 70, 227);}.IOncP .HvOprf.u3bW4e {outline: 2px solid rgb(87, 70, 227); outline-offset: 2px;}.IOncP .HvOprf .CeoRYc {background-color: rgb(87, 70, 227);}.IOncP .HvOprf .MbhUzd {background-image: radial-gradient( circle farthest-side,rgba(87, 70, 227, 0.15),rgba(87, 70, 227, 0.15) 80%,rgba(87, 70, 227, 0) 100% );}.IOncP .HvOprf:hover {border-color: rgb(221, 218, 249);}.IOncP .HvOprf.RDPZE {color: rgba(87, 70, 227, 0.5);}.IOncP .HvOprf.RDPZE:hover {box-shadow: none;}.IOncP .HvOprf.qs41qe.qs41qe {box-shadow: 0px 2px 1px -1px rgba(87, 70, 227, 0.2), 0px 1px 1px 0px rgba(87, 70, 227, 0.14), 0px 1px 3px 0px rgba(87, 70, 227, 0.12);}.Pi3FHb {outline-style: solid; outline-color: rgb(87, 70, 227);}.da8bmd .RDPZE .Pi3FHb {outline-color: rgba(0, 0, 0, .54);}.LygNqb.RDPZE .snByac {color: #70757a;}.LygNqb.RDPZE.N2RpBe .snByac, .LygNqb.RDPZE.B6Vhqe .snByac {color: #202124;}.wMUAvd .LygNqb.RDPZE .snByac, .wMUAvd .LygNqb.RDPZE.N2RpBe .snByac, .wMUAvd .LygNqb.RDPZE.B6Vhqe .snByac {color: black;}.LygNqb.RDPZE .PgfOZ svg {fill: rgba(0, 0, 0, .54);}.LygNqb.RDPZE.N2RpBe .PgfOZ, .LygNqb.RDPZE.B6Vhqe .PgfOZ svg {fill: rgba(0, 0, 0, .87);}.mqhyCf {color: rgb(87, 70, 227);}.AQRMP {color: rgb(87, 70, 227);}.RVEQke {background-color: rgb(87, 70, 227); color: rgba(255, 255, 255, 1);}.D8bnZd {background-color: rgb(238, 237, 252);}.xEUmYd {background-color: rgba(87, 70, 227, 0.05);}.cz0Zle {background-color: rgb(166, 133, 255);}.ENxQTe:hover {background-color: rgba(87, 70, 227, 0.1);}.YiC7Id {fill: rgb(87, 70, 227); stroke: rgb(87, 70, 227);}.PgdKqf {fill: rgb(87, 70, 227);}.LAANW {border-color: rgb(87, 70, 227);}.DGR5Ac {fill: rgba(255, 255, 255, 1)}.graCKc {background-color: rgb(104, 109, 115);}.G4EHhc, .G4EHhc .Wic03c .tL9Q4c, .G4EHhc .I9OJHe .KRoqRc, .G4EHhc .PyrB4, .G4EHhc .snByac {font-family: 'docs-Roboto', Helvetica, Arial, sans-serif;}.Jqhdy {font-family: 'docs-Roboto', Helvetica, Arial, sans-serif;}.BuWscd {font-family: 'docs-Parisienne', cursive;}.ULZu6e {font-family: 'docs-Patrick Hand', fantasy;}.kZBGEb {font-family: 'docs-Cormorant Garamond', serif;}.LgNcQe, .LgNcQe .Wic03c .tL9Q4c, .LgNcQe .I9OJHe .KRoqRc, .LgNcQe .PyrB4, .LgNcQe .snByac {font-size: 24pt;font-family: 'docs-Roboto', Helvetica, Arial, sans-serif;letter-spacing: 0;}.M7eMe, .M7eMe .Wic03c .tL9Q4c, .M7eMe .I9OJHe .KRoqRc, .M7eMe .PyrB4, .M7eMe .snByac{font-size: 12pt;font-family: 'docs-Roboto', Helvetica, Arial, sans-serif;letter-spacing: 0;}.OIC90c, .OIC90c.RjsPE, .OIC90c .zHQkBf, .OIC90c .Wic03c .tL9Q4c, .OIC90c .I9OJHe .KRoqRc, .OIC90c .PyrB4, .OIC90c .snByac {font-size: 11pt; line-height: 15pt;letter-spacing: 0;}.OIC90c .oJeWuf .zHQkBf {}.sId0Ce, .sId0Ce a {color: rgba(0, 0, 0, 0.66);}</style><link rel="icon" sizes="192x192" href="//ssl.gstatic.com/docs/forms/device_home/android_192.png"><link rel="apple-touch-icon" sizes="120x120" href="//ssl.gstatic.com/docs/forms/device_home/ios_120.png"><link rel="apple-touch-icon" sizes="152x152" href="//ssl.gstatic.com/docs/forms/device_home/ios_152.png"><meta name="msapplication-TileImage" content="//ssl.gstatic.com/docs/forms/device_home/windows_144.png"><meta name="msapplication-TileColor" content="#673ab7"><script nonce="Mbluc987l1QNVMBvCgi-PA">_docs_flag_initialData={"docs-ails":"docs_warm","docs-fwds":"docs_nf","docs-crs":"docs_crs_unk","docs-fl":1,"docs-hpr":0,"docs-orl":9,"docs-rls":1,"docs-shdn":0,"docs-eivt":false,"info_params":{"token":"BQje0p8BAAA.2XagEvFYDFkaWpnIMlXeBA.coqQgnObkYX5S7AVLyH2tQ","ouid":"114810002058710688470"},"docs-esaf":false,"docs-ecdh":true,"docs-pcdpoc":false,"docs-pcdpos":true,"docs-eabpcmewm":false,"docs-eabtzmewm":false,"docs-eabtsmewm":false,"docs-eaicewm":false,"docs-easdewm":true,"docs-eassewm":false,"docs-eaebewm":false,"docs-eafcmcewm":false,"docs-eavssewm":false,"docs-ebodewm":false,"docs-ebrfdewm":true,"docs-ebasdewm":false,"docs-ebpsewm":false,"docs-ecnbewm":false,"docs-ecedcdewm":true,"docs-ecsewm":false,"docs-ectdcdewm":true,"docs-ectscdewm":true,"docs-eclrbewm":false,"docs-eclsecewm":false,"docs-ecssewm":false,"docs-ectwm":true,"docs-ecgdewm":false,"docs-edsewm":false,"docs-edsnmewm":false,"docs-ewcfer":true,"docs-edwb":false,"docs-edibewm":false,"docs-edeibewm":false,"docs-eegdewm":false,"docs-ewubum":true,"docs-ewmcsm":true,"docs-ewmsm":false,"docs-eewsm":true,"docs-efcmewm":false,"docs-efrdwm":true,"docs-efasewm":false,"docs-eftsewm":false,"docs-eftbewm":false,"docs-efosewm":false,"docs-egasewm":false,"docs-eipdewm":false,"docs-elicewm":false,"docs-elmwbewm":false,"docs-elfcbewm":false,"docs-empwm":true,"docs-emdewm":true,"docs-emadwm":true,"docs-ensdewm":true,"docs-eodcewm":false,"docs-epsdewm":true,"docs-epftewm":false,"docs-eppbewm":false,"docs-epticewm":false,"docs-epacewm":false,"docs-epbtewm":false,"docs-eppvdewm":false,"docs-eppmewm":false,"docs-epecewm":false,"docs-eptsewm":false,"docs-eqsewm":false,"docs-erssewm":false,"docs-ertdewm":true,"docs-erhswm":true,"docs-esacewm":false,"docs-essr":true,"docs-essewm":false,"docs-esswm":false,"docs-esspm":false,"docs-esndewm":true,"docs-esdwm":false,"docs-esosewm":false,"docs-esssewm":false,"docs-esctwm":false,"docs-ettpdewm":true,"docs-ettrsewm":false,"docs-etsewm":false,"docs-etibewm":false,"docs-etesewm":false,"docs-etcsewm":false,"docs-ethsewm":false,"docs-eupubw":true,"docs-evgcewm":false,"docs-evosewm":false,"docs-evpsewm":false,"docs-evssewm":false,"docs-ewbm":true,"docs-eicwdubl":true,"docs-hmg":true,"uls":"{\"langs\":[\"en\"],\"itcs\":[],\"selected\":\"\",\"activated\":false}","docs-idu":false,"customer_type":"education","scotty_upload_url":"/upload/forms/resumable","docs-edcfmb":false,"docs-erlbwfa":false,"docs-net-udmi":500000,"docs-net-udpt":40000,"docs-net-udur":"/upload/blob/forms","docs-net-usud":false,"docs-enable_feedback_svg":false,"docs-fpid":713678,"docs-fbid":"ExternalUserData","docs-obsImUrl":"https://ssl.gstatic.com/docs/common/netcheck.gif","docs-text-ewf":true,"docs-wfsl":["ca","da","de","en","es","fi","fr","it","nl","no","pt","sv"],"docs-efrsde":true,"docs-efpsf":true,"docs-edfn":true,"docs-efpsp":true,"docs-dli":false,"docs-liap":"/naLogImpressions","ilcm":{"eui":"ADFN-ct7RjY8QfQM10mVoXhk1Bd4qgu1aYlSVRQu3o6xbGkUa9fpmooQgtu9m1CLXuSNeXy1K0vz","je":1,"sstu":1785945594246114,"si":"COPn7uXtiZYDFdiHRAcdOpUJdQ","gsc":null,"ei":[5700103,5701877,5703839,5704621,5705891,5706270,5707461,5707565,5711226,5713195,5713554,5715055,5726679,5726695,5727241,5727257,5734616,5734632,5737784,5737800,5740798,5740814,5754982,5754998,5764330,5764346,5764470,5764486,5774256,5774272,5790673,5790689,48966134,48966142,49398701,49398709,49471983,49471991,49498853,49498861,49623461,49623469,49644035,49644043,49769457,49769465,49822981,49822989,49823204,49823212,49833442,49833450,49842815,49842823,49924606,49924614,49926233,49926241,49943179,49943187,49979678,49979686,50223621,50223629,50266122,50266130,50273508,50273516,50297176,50297184,50439260,50439268,50513194,50513202,50561323,50561331,50562844,50562852,50587022,50587030,70971216,70971224,71079898,71079906,71085321,71085329,71121048,71121056,71376166,71376174,71387272,71387280,71387789,71387797,71466027,71466035,71515789,71515797,71528617,71528625,71530063,71530071,71544874,71544882,71546345,71546353,71652641,71657900,71657908,71659973,71659981,71679440,71679448,71689960,71689968,71710000,71710008,71727137,71727153,71825463,71825471,71854840,71854848,71897867,71897875,71899300,71960380,71960388,94327631,94327639,94353268,94353276,94368276,94368292,94386811,94386819,94434397,94434405,94624825,94624833,94629817,94629825,94661682,94661690,94692458,94692466,94785149,94785157,94813423,94813431,94818995,94819000,94819399,94819404,94891454,94891470,94904249,94904257,94919112,94919120,94940214,95087106,95087114,95112693,95112701,95129666,95182369,95182374,95213932,95213940,95314762,95314770,99251903,99251911,99368832,99368840,99400302,99400310,99402431,99402439,99440873,99440881,99457727,99457735,101448281,101448286,101492791,101492799,101519240,101519248,101561269,101561277,101561712,101561720,101562326,101562334,101574941,101574949,101586440,101586456,101631251,101631259,101686977,101686985,101887514,101887522,101889103,101889111,101891730,101891746,101917105,101917113,101922619,101922627,101922800,101922808,101933651,101933659,102030662,102030670,102059481,102059489,102070616,102070624,102070810,102070818,102146667,102146675,102161547,102161555,102198422,102198430,102236066,102236074,102244629,102244637,102258765,102258781,102280788,102280796,102343480,102343488,102402799,102402807,102469700,102469708,102517204,102517209,102548641,102548649,102618768,102618776,102673415,102685423,102685428,102685864,102685869,102691193,102691198,102691278,102691283,102718435,102727428,102727433,102761461,102761466,102762395,102762403,102784808,102784816,102787543,102807750,102807758,102864243,102864251,102867955,102867963,102883718,102883726,102902868,102902876,102903640,102903648,102909763,102909768,102911103,102911108,102925919,102925927,102926683,102926691,102932487,102932495,102944241,102944246,102944372,102944377,102944464,102944469,102944516,102944771,102944776,102944876,102944881,102956605,102956613,102972689,102972697,102986987,102986995,102988246,102988251,102988415,102988420,102988669,102988674,102988890,102988895,103011439,103011447,103066322,103066338,103074675,103074691,103124896,103124912,103144628,103144636,103162984,103162992,103176050,103176058,103281962,103281967,103285786,103285794,103286464,103286472,103288326,103288334,103289155,103289160,103289195,103289200,103296094,103296102,103326327,103326335,103339876,103339884,103343910,103343918,104522784,104522800,104530124,104538364,104574019,104574027,104575345,104575350,104575530,104575535,104575613,104575618,104575881,104575886,104615635,104615643,104627936,104627942,104699464,104699472,104713957,104713973,104761671,104761679,104794563,104794571,104907871,104907879,104976657,104976665,104983229,104983237,105070800,105070816,105082017,105082025,105083668,105083676,105085109,105085117,105087808,105087816,105112557,105112562,105125437,105125445,105140345,105140353,105180974,105180982,105255638,105283767,105283775,105292936,105292944,105345084,105345089,105346185,105346193,105360438,105360446,105372003,105372011,105373984,105373992,105393691,105393699,105439351,105439359,115511347,115511352,115525394,115525402,115601029,115601037,115612847,115612852,115626358,115626366,115626539,115626547,115669318,115669326,115722298,115722314,115737286,115737294,115748334,115748340,115774379,115774385,115779881,115779889,115780378,115780386,115797625,115797630,115822385,115822393,115849188,115849193,115854888,115854896,115893420,115893428,115899197,115909881,115909889,115916250,115916255,115986507,115986513,116053991,116053996,116059265,116059273,116062690,116062698,116068778,116068786,116076925,116076931,116090650,116090666,116091118,116176769,116176777,116213889,116221494,116221502,116250645,116250653,116276381,116276389,116353680,116372497,116372505,116377870,116377875,116416054,116416062,116418047,116418055,116479751,116480001,116502867,116508642,116508647,116514183,116514189,116524154,116538596,116538604,116567607,116567612,116609531,116609539,116678925,116678931,116697553,116697559,116699389,116699397,116700070,116700075,116731449,116731455,116731463,116731469,116731477,116731483,116731491,116731497,116731505,116731511,116731519,116731525,116757024,116771270,116771276,116783457,116783462,116783762,116783767,116833180,116833185,116840746,116840751,116847573,116847578,116866196,116866201,116880764,116880769,116882876,116882883,116913208,116918027,116934386,116934391,116980547,116980555,116988304,116988312,116999246,116999254,117027676,117033060,117033066,117033745,117037188,117037196,117039162,117039170,117075206,117075212,117091085,117124349,117124356,117143742,117143747,117148946,117148952,117212081,117212087,117224119,117224127,117248280,117251847,117269017,117269025,117283963,117283968,117286690,117286698,117290250,117290258,117297869,117297874,117309354,117309362,117310230,117310238,117316514,117316522,117332319,117334158,117357715,117357721,117367088,117367094,117381179,117381187,117436640,117436648,117457938,117457946,117474409,117474414,117478339,117478344,117480147,117480152,117504303,117504311,117547701,117547709,117586569,117586574,117605990,117605995,117623323,117623329,117643180,117643188,117643608,117643616,117673585,117723591,117723597,117728293,117728301,117740479,117740485,117742758,117742766,117879413,117879418,117895960,117895968,117930842,117930847,117969893,117969898,117983432,117983437,118029473,118029479,118043880,118043885,118048893,118048900,118048944,118048950,118057575,118057581,118086120,118086126,118094570,118094575,118119539,118119545,118127484,118127489,118144499,118144504,118155211,118155217,118171097,118174626,118174631,118181389,118181395,118199432,118199438,118210158,118210163,118213586,118213591,118219809,118219815,118227602,118227608,118237015,118237023,118240038,118240044,118242443,118242448,118255415,118255420,118256780,118256787,118269303,118269308,118272113,118272118,118281184,118281192,118292262,118292268,118292276,118292282,118311122,118311127,118367501,118367507,118368017,118368025,118368756,118368764,118382150,118382157,118410833,118410856,118417304,118417312,118419982,118419988,118427971,118427977,118444432,118444438,118485663,118485669,118485677,118485683,118497529,118497535,118500904,118500909,118500918,118500923,118515459,118515465,118517998,118518004,118521972,118521977,118531234,118541625,118541633,118544270,118544277,118556017,118556025,118566888,118566900,118574431,118574437,118576741,118579779,118579784,118596018,118596023,118599561,118599569,118599872,118599880,118600863,118602071,118602079,118623871,118623879,118656213,118656218,118676321,118676329,118683648,118683653,118716911,118716919,118728532,118728537,118735214,118735220,118753224,118753232,118758232,118758238,118781276,118781281,118786501,118786509,118792284,118792292,118795502,118795508,118803374,118803380,118824720,118824725,118870266,118871022,118891895,118891900,118896670,118896675,118910283,118910289,118938363,118938369,118959046,118959054,118960888,118960896,118965149,118965154,118984042,118984050,118986367,118986375,119001820,119001825,119012212,119012218,119022252,119022260,119058017,119058022,119062090,119062098,119071842,119071848,119076644,119076649,119077255,119077263,119109674,119109682,119168749,119170344,119170349,119178779,119185423,119185443,119185683,119185691,119186386,119186391,119189027,119189032,119190842,119190847,119206371,119206377,119207504,119207509,119235564,119235569,119237704,119237709,119239792,119244192,119260206,119260211,119261840,119261848,119287095,119287101,119290941,119290946,119292945,119292950,119293882,119293887,119296949,119296954,119335774,119335779,119350203,119350208,119372604,119372610,119374110,119374116,119389601,119389606,119400586,119400592,119407316,119407322,119412195,119419025,119419030,119419128,119419133,119431313,119446111,119446117,119454133,119454138,119454364,119454369,119455664,119455672,119464287,119464292,119474774,119474782,119497026,119497031,119502682,119502687,119538769,119538776,119544248,119544253,119544260,119544265,119548091,119548098,119566747,119566753,119575990,119576796,119576803,119587201,119587209,119588321,119588326,119597421,119597426,119597434,119597439,119599143,119602231,119605350,119605358,119611766,119616198,119621317,119621324,119621918,119641664,119641672,119680681,119680688,119700684,119700692,119703104,119703112,119722946,119722951,119727967,119727972,119761002,119761007,119764078,119764086,119769817,119769823,119772710,119772715,119788302,119788307,119794312,119794317,119805421,119805427,119805435,119805440,119809375,119809383,119809394,119809402,119809404,119809412,119809651,119809656,119820261,119826320,119826325,119840989,119842248,119842254,119844358,119844363,119844371,119844376,119856922,119856927,119872197,119872205,119891468,119891473,119919341,119919349,119930504,119930509,119932762,119932767,119939750,119939758,119943776,119943781,120008596,120008601,120008654,120008659,120025498,120025503,120074338,120074344,120091095,120091101,120098782,120098787,120104059,120104065,120118426,120118434,120122228,120122233,120122256,120122261,120128884,120128889,120172375,120172380,120176385,120176393,120178272,120178277,120190042,120190047,120200993,120200999,120207025,120207031,120221882,120221887,120251798,120251803],"crc":0,"cvi":[]},"docs-ccdil":true,"docs-eil":true,"docs-ecuach":false,"docs-cclt":2035,"docs-ecci":true,"docs-esi":false,"docs-cei":{"i":[95129666,105283775,116697559,101492799,102343488,101933659,118753232,102807758,118556025,118292282,102198430,117224127,49644043,102258781,102761466,102070624,116999254,115797630,102926691,102070818,119186391,118155217,118485683,116076931,119419030,117895968,70971224,102469708,119602231,116353680,117367094,119722951,95087114,117643188,71387797,71121056,117478344,116866201,118566900,119001825,119296954,95112701,118497535,117037196,102867963,104538364,116731455,118292268,71854848,101561277,102944377,115525402,118240044,5704621,119474782,118281192,116609539,71710008,120074344,119454369,117586574,120118434,102944246,119761007,119805440,119170349,103326335,5713195,115986513,105070816,117124356,118368764,103144636,118255420,118256787,118795508,102911108,118242448,119372610,71079906,102762403,116514189,120128889,116783767,119856927,117740485,119616198,117297874,105125445,104713973,48966142,116980555,119769823,101519248,116771276,119419133,50562852,101889111,115893428,116731511,102685428,118029479,115748340,119943781,120200999,115626366,102727433,118311127,118596023,116880769,118237023,119400592,102988251,94629825,119597426,118728537,119700692,119497031,119548098,118531234,118986375,118938369,118716919,120207031,117969898,118599569,119350208,119794317,115779889,71679448,119062098,71530071,118574437,5790689,119809656,49979686,50223629,118269308,118602079,102956613,49822989,118896675,119566753,5754998,116221502,118417312,49623469,117033745,5713554,116372505,94692466,117143747,118171097,119611766,115822393,5707565,102787543,105360446,120091101,102903648,119809383,119680688,5705891,118576741,99457735,5706270,119844363,50266130,119932767,119446117,71727153,119930509,115916255,71387280,117148952,99251911,116416062,117504311,117879418,117334158,102972697,104530124,117316522,119022260,118272118,102030670,71652641,102685869,105180982,115669326,105372011,50513202,119455672,103281967,115722314,102691283,118219815,103288334,119641672,71689968,117269025,118500909,103296102,104699472,94891470,104976665,118792292,103289200,71466035,101448286,71546353,118127489,116377875,102932495,102146675,119588326,116678931,101574949,119185443,49398709,101562334,101887522,118758238,119374116,119772715,49926241,118048900,117623329,118544277,118086126,118599880,116731483,118984050,116840751,104575535,120008601,118174631,105083676,94368292,102244637,118500923,71960388,119703112,120122261,116418055,119727972,71657908,116700075,119076649,117039170,5726695,118119545,104794571,50561331,119464292,102618776,118960896,119389606,104575350,118518004,104575618,5764346,117309362,119431313,119407322,49833450,116731525,101561720,118891900,116988312,118094575,101922627,117474414,94624833,105345089,116502867,49498861,102402807,94353276,120178277,118910289,117547709,116090666,115899197,50587030,119335779,95314770,94919120,102864251,5737800,117436648,115909889,103074691,119544253,117983437,105393699,119071848,71528625,118579784,118199438,119454138,117742766,105140353,104983237,119292950,5700103,116508647,119206377,119058022,117290258,5764486,103343918,50439268,118965154,94785157,103289160,94661690,116699397,118735220,118144504,119842254,103339884,49842823,116053996,102161555,119872205,117283968,118181395,99440881,103162992,117930847,119544265,105439359,118521977,116059273,104522800,49823212,115626547,118382157,5715055,119538776,118368025,115601037,71515797,49471991,5707461,102517209,105087816,104615643,120172380,101891746,119805427,71544882,102902876,119764086,101686985,71659981,105112562,119826325,116567612,117643616,118057581,94434405,120008659,119621324,102944881,119012218,119939758,117728301,105373992,120176393,104575886,117286698,119261848,102944469,101586456,120098787,99402439,117480152,102988420,119293887,118786509,71897875,102988674,118227608,103124912,103066338,102784816,120122233,118213591,94386819,116847578,120025503,99368840,119597439,95182374,5774272,118427977,119260211,115780386,104627942,115737294,119788307,119190847,101631259,118367507,104907879,94327639,119809402,119575990,94813431,5727257,118485669,119844376,116176777,119290946,49943187,5711226,117357721,119239792,102925927,118566888,119077263,49769465,118623879,5734632,118824725,71825471,118656218,102909768,5740814,120251803,119178779,116276389,116783462,105292944,102944776,102548649,118803380,102883726,118515465,116062698,116480001,103286472,94819000,119189032,119109682,117212087,99400310,118410856,116882883,120104065,115774385,102236074,119235569,119502687,116934391,118676329,115511352,49924614,117033066,116918027,118683653,115854896,71376174,117381187,101917113,116833185,118871022,118781281,115849193,117251847,105085117,103011447,119840989,105082025,50297184,119576803,119185691,103176058,5703839,119287101,103285794,102988895,115612852,104761679,104574027,102059489,120221887,117457946,119587209,117075212,118048950,119891473,102691198,117605995,116250653,95213940,117723597,118210163,5701877,116731469,116731497,116538604,117310238,50273516,118043885,71085329,119621918,118959054,105346193,119605358,119237709,102986995,120190047,101922808,119919349,119809412,116068786,118419988,102280796,94904257,118444438,94819404,119207509,105283767,116697553,101492791,102343480,101933651,118753224,102807750,118556017,118292276,102198422,117224119,49644035,102258765,102761461,102070616,116999246,115797625,102926683,102070810,119186386,118155211,118485677,116076925,119419025,117895960,70971216,102469700,117673585,102944516,117367088,119722946,95087106,117643180,71387789,71121048,117478339,116866196,118541625,119001820,119296949,95112693,118497529,117037188,102867955,71899300,116731449,118292262,71854840,101561269,102944372,115525394,118240038,119474774,118281184,116609531,71710000,120074338,119454364,117586569,120118426,102944241,119761002,119805435,119170344,103326327,115986507,105070800,117124349,118368756,103144628,118255415,118256780,118795502,102911103,118242443,119372604,71079898,102762395,116514183,120128884,116783762,119856922,117740479,116213889,117297869,105125437,104713957,48966134,116980547,119769817,101519240,116771270,119419128,50562844,101889103,115893420,116731505,102685423,118029473,115748334,119943776,120200993,115626358,102727428,118311122,118596018,116880764,118237015,119400586,102988246,94629817,119597421,118728532,119700684,119497026,119548091,116913208,118986367,118938363,118716911,120207025,117969893,118599561,119350203,119794312,115779881,71679440,119062090,71530063,118574431,5790673,119809651,49979678,50223621,118269303,118602071,102956605,49822981,118896670,119566747,5754982,116221494,118417304,49623461,117027676,116372497,94692458,117143742,94940214,116757024,115822385,102673415,105360438,120091095,102903640,119809375,119680681,117091085,99457727,119844358,50266122,119932762,119446111,71727137,119930504,115916250,71387272,117148946,99251903,116416054,117504303,117879413,117332319,102972689,102718435,117316514,119022252,118272113,102030662,102685864,105180974,115669318,105372003,50513194,119455664,103281962,115722298,102691278,118219809,103288326,119641664,71689960,117269017,118500904,103296094,104699464,94891454,104976657,118792284,103289195,71466027,101448281,71546345,118127484,116377870,102932487,102146667,119588321,116678925,101574941,119185423,49398701,101562326,101887514,118758232,119374110,119772710,49926233,118048893,117623323,118544270,118086120,118599872,116731477,118984042,116840746,104575530,120008596,118174626,105083668,94368276,102244629,118500918,71960380,119703104,120122256,116418047,119727967,71657900,116700070,119076644,117039162,5726679,118119539,104794563,50561323,119464287,102618768,118960888,119389601,104575345,118517998,104575613,5764330,117309354,119412195,119407316,49833442,116731519,101561712,118891895,116988304,118094570,101922619,117474409,94624825,105345084,116091118,49498853,102402799,94353268,120178272,118910283,117547701,116090650,105255638,50587022,119335774,95314762,94919112,102864243,5737784,117436640,115909881,103074675,119544248,117983432,105393691,119071842,71528617,118579779,118199432,119454133,117742758,105140345,104983229,119292945,116508642,119206371,119058017,117290250,5764470,103343910,50439260,118965149,94785149,103289155,94661682,116699389,118735214,118144499,119842248,103339876,49842815,116053991,102161547,119872197,117283963,118181389,99440873,103162984,117930842,119544260,105439351,118521972,116059265,104522784,49823204,115626539,118382150,119538769,118368017,115601029,71515789,49471983,102517204,105087808,104615635,120172375,101891730,119805421,71544874,102902868,119764078,101686977,71659973,105112557,119826320,116567607,117643608,118057575,94434397,120008654,119621317,102944876,119012212,119939750,117728293,105373984,120176385,104575881,117286690,119261840,102944464,101586440,120098782,99402431,117480147,102988415,119293882,118786501,71897867,102988669,118227602,103124896,103066322,102784808,120122228,118213586,94386811,116847573,120025498,99368832,119597434,95182369,5774256,118427971,119260206,115780378,104627936,115737286,119788302,119190842,101631251,118367501,104907871,94327631,119809394,119244192,94813423,5727241,118485663,119844371,116176769,119290941,49943179,117357715,118600863,102925919,118541633,119077255,49769457,118623871,5734616,118824720,71825463,118656213,102909763,5740798,120251798,119168749,116276381,116783457,105292936,102944771,102548641,118803374,102883718,118515459,116062690,116479751,103286464,94818995,119189027,119109674,117212081,99400302,118410833,116882876,120104059,115774379,102236066,119235564,119502682,116934386,118676321,115511347,49924606,117033060,116524154,118683648,115854888,71376166,117381179,101917105,116833180,118870266,118781276,115849188,117248280,105085109,103011439,119820261,105082017,50297176,119576796,119185683,103176050,119287095,103285786,102988890,115612847,104761671,104574019,102059481,120221882,117457938,119587201,117075206,118048944,119891468,102691193,117605990,116250645,95213932,117723591,118210158,116731463,116731491,116538596,117310230,50273508,118043880,71085321,119599143,118959046,105346185,119605350,119237704,102986987,120190042,101922800,119919341,119809404,116068778,118419982,102280788,94904249,118444432,94819399,119207504],"cf":{"enable_homescreen_priority_docs":[null,0],"enable_homescreen_priority_docs_promo":[null,0],"enable_homescreen_action_items_structured_query":[null,0]}},"docs-est":"CAMSFBUX9NL9N67auQayvgTkiQWnBh0H","docs-exfv":false,"docs-li":"713678","docs-trgthnt":"4MBkBg26q0mHq3jmV6o0QeKPRMpY","docs-etmhn":false,"docs-thnt":"","docs-hdet":["nMX17M8pQ0kLUkpsP190WPbQDRJQ","17hED8kG50kLUkpsP190TThQn3DA","BDNZR4PXx0kLUkpsP190SJtNPkYt","Etj5wJCQk0kLUkpsP190NwiL8UMa","xCLbbDUPA0kLUkpsP190XkGJiPUm","2NUkoZehW0kLUkpsP190UUNLiXW9","yuvYtd5590kLUkpsP190Qya5K4UR","ZH4rzt2uk0kLUkpsP190UDkF5Bkq","uQUQhn57A0kLUkpsP190WHoihP41","93w8zoRF70kLUkpsP190TxXbtSeV","fAPatjr1X0kLUkpsP190SaRjNRjw","T4vgqqjK70kLUkpsP190ScPehgAW","JyFR2tYWZ0kLUkpsP190Rn3HzkxT","ufXj7vmeJ0kLUkpsP190QURhvJn2","KFks7UeZ30kLUkpsP190UUMR6cvh","LcTa6EjeC0kLUkpsP190RKgvW5qi","s3UFcjGjt0kLUkpsP190Z45ftWRr","o99ewBQXy0kLUkpsP190Nq2qr6tf","PHVyy5uSS0kLUkpsP190SUsYo8gQ","yZn21akid0iSFTCbiEB0WPiGEST3","h2TtqzmQF0kLUkpsP190YPJiQt7p","MZi9vb5UC0kLUkpsP190ReUhvVjy","dSR6SPjB80kLUkpsP190Y3xHa9qA","Bz6B7VmLu0kLUkpsP190W3FeobP7","AiLoubzsd0kLUkpsP190XtYNPgYT","2J3DVQoVh0kLUkpsP190R5wShSrC","MLmbZasLS0kLUkpsP190YHf6Zjsf","S1T4ezMsZ0kLUkpsP190U6GfQUxi","LwAAPYPwi0kLUkpsP190TR4aaiFR","zZpS7TtwA0kLUkpsP190SJfhmHn8","LqadmuFLc0kLUkpsP190VqMgRe9G","PyRpJWvnF0kLUkpsP190X6czxBQU","oiu5UhKXt0kLUkpsP190XWFatA4U","m3m67mpQU0kLUkpsP190RpzeM6tt","WKyXQmUiJ0kLUkpsP190WtAghmdt","cb1fdvu6p0kLUkpsP190U5AywQpZ","43PL8e9wN0kLUkpsP190PfUhabvT","N5u4VeWhx0iSFTCbiEB0VUTNdX6g","XM16tjwrD0iSFTCbiEB0NfzvTeuU","ybYTJk1eD0iSFTCbiEB0QV4rkzSF","TgXar1TSG0iSFTCbiEB0SsXMaKuP","JYfGDkExa0iSFTCbiEB0TTQnEDtH","2i9JBUZ3w0iSFTCbiEB0RytbUoNq","pgvTVXNKa0iSFTCbiEB0ShqmBTMR","NsVnd81bW0iSFTCbiEB0RhcXEK9M","rTQirATnb0iSFTCbiEB0W5cPcA7D","wNyww2Syr0iSFTCbiEB0Pzsbemba","DVdpfbqGj0iSFTCbiEB0RP4dMdFg","WKN3dsuG20iSFTCbiEB0NtEYhMK7","S5iPRteXX0iSFTCbiEB0YkMazE6h","6hmou1AcB0iSFTCbiEB0R9rZWXdz","wvo4NcLUj0iSFTCbiEB0Tt7mcVxE","HWuSeN2AB0iSFTCbiEB0PoBwHT2F","rMLvYG5Cd0iSFTCbiEB0VMB6o5sk","EnxXFzAMR0iSFTCbiEB0NxWnFJEU","4SFrbzo420iSFTCbiEB0W7wu3rzt","Nr7mDWodK0iSFTCbiEB0Ruynrudk","pSnfxxWWp0iSFTCbiEB0RaiP6PBc","rTcCMw3BM0mHq3jmV6o0RHeAExRK","HUYzfGVRa0mHq3jmV6o0Uxe2caXK","1XYMmM1Cu0mHq3jmV6o0Z3pEi8xm","xHhMJiXiV0mHq3jmV6o0WB8WinyM","xwSFpxEiU0mHq3jmV6o0PcnvcKmd","4MBkBg26q0mHq3jmV6o0QeKPRMpY","y5g8iW2T80mHq3jmV6o0Nr8SAj4C","W9YRKy3Lb0iSFTCbiEB0Xfs1EfPr","Ed3nhrN8D0iSFTCbiEB0RN4bJ53y","zxDKY7PC10iSFTCbiEB0UDYPJwDZ","bhEyDmbwi0mHq3jmV6o0TngCF1v2","6rKYZ6uHA0mHq3jmV6o0TeDZjgB8","71Deousgx0mHq3jmV6o0WXBQiyzi","sVEZbUAa70mHq3jmV6o0TNq1M7FF","8ZPFZT5nG0mHq3jmV6o0PJ5yoVh4","LDuvzP2Bd0mHq3jmV6o0TwNPVpW8","P55v8p4Lk0mHq3jmV6o0VjggjHMV","QqnZoz9ko0mHq3jmV6o0QskzBcHn","Nq8mdjdGg0mHq3jmV6o0WShxQA39","iQNA6mEJy0mHq3jmV6o0Q2iGT9fW","sNcbk2hJ80mHq3jmV6o0VbqaovQb","6nr31z9Wv0mERqSGkGf0VhuvAXWC","RLHeYNm410mERqSGkGf0Y817EUFK","vmx68XtfJ0mERqSGkGf0RCUBfsQr","687J7yD1q0mERqSGkGf0RVmMYHo1","qwhWQy8Zi0mERqSGkGf0W2tdypUF","wF8Sk241e0mERqSGkGf0YNtN6gpV","ijUhdx2QN0mERqSGkGf0TSD26iBJ","3iBLaMnuG0mERqSGkGf0VdY8XuLS","cFR77YEGo0iSFTCbiEB0PcMDWjX2","evUYuNCS80mERqSGkGf0Psi8j3Dw","soWncRV7C0mERqSGkGf0PZheXrWA","TvjoiCaar0mERqSGkGf0S9qS5adj","txL54xWLC0mERqSGkGf0XoEGTvCu","MP3EsW1un0mERqSGkGf0QDkfTxat","N1q4Y3fqz0mERqSGkGf0W1oPWWoc","pnKWhXiJi0mERqSGkGf0RDJejrBm","uLoGBsxEp0mERqSGkGf0Umz4HBC5","zu73Bdvrn0mERqSGkGf0P7FS5ZnG","KwaNot15n0mERqSGkGf0UnBhGVoK","ffZmMGtYT0suK1NZr2K0QUxSzEMN","NagbcZWyB0suK1NZr2K0SJmfmJ3n","KMcLKvubv0suK1NZr2K0PLMUJ7zr","a13ejFS5i0suK1NZr2K0WzewY5tP","pZ1hXv7ve0suK1NZr2K0U5qoNhyU","pwLDucJZU0ezFcgqx310NgtmYpbV","TCKDVQ6J0Bn3gbW4AcZC0PQKypCa","Z7vabQzZ0Bn3gbW4AcZC0TfvmSab","UUNcLtsso0mERqSGkGf0Uwg2tMZa","fznmScpy0Bn3gbW4AcZC0Vie7eK1","wYCZkqoz10fBWirfAym0S1sADKbJ"],"docs-hunds":false,"docs-hae":"PROD","docs-ehn":true,"docs-eagat":false,"docs-api-keys":{"scone_api_key":"AIzaSyAP66yw8QnPe4CgbQmLJ1potsrppninXxs","workspace_ui_api_key":"AIzaSyAGu65yOsDqNkYFlUT96M1i6BsyH4Nl6-s","espresso_api_key":"AIzaSyAYQn7Fb7-MOxi3BLfWHblG97kylSec-ak","cloud_search_api_key":"AIzaSyDsoqkkkgjVPCg2ep86sdbNNMrkGsCMJo0","link_previews_safe_search_api_key":"AIzaSyB8IGC2vlg9cTitrdc4HVUcbkr4SC1Z29s"},"docs-effeoima":true,"docs-etut":true,"docs-emec":true,"docs-ertis":false,"docs-estistl":false,"docs-etsonc":false,"docs-euvtistl":false,"docs-effnp":false,"docs-effnpf":false,"docs-dcheg":false,"docs-pdhp":true,"buildLabel":"apps-forms.freebird_20260728.06_p0","docs-show_debug_info":false,"docs-edmlf":false,"docs-eemc":false,"docs-emleow":true,"docs-emlewpc":true,"docs-rmls":"DEFAULT_NO_RETRY","ondlburl":"//docs.google.com","docs-ecupbsc":true,"drive_url":"https://drive.google.com/u/0?usp\u003dforms_web","app_url":"https://docs.google.com/forms/u/0/?authuser\u003d0\u0026usp\u003dforms_web","drive_base_url":"https://drive.google.com","docs-umbitfdi":false,"docs-gsmd":"https://workspace.google.com","docs-icdmt":[],"docs-mip":25000000,"docs-mif":1000,"docs-msid":32767,"docs-ecshi":false,"docs-ecswi":false,"docs-emid":false,"docs-ewchd":false,"docs-mib":52428800,"docs-mid":2048,"docs-rid":1024,"docs-dgit":false,"docs-evit":false,"docs-ejsp":false,"docs-jspmpdm":30000.0,"docs-jspsim":8.0,"docs-jsptp":0.01,"docs-elbllqpm":true,"docs-phe":"https://contacts.google.com","docs-eafgl":false,"docos-dges":false,"docs-eethc":false,"docs-enees":false,"docs-eph":true,"docs-ispdr":true,"docs-istdr":false,"docs-escmv":false,"docs-sup":"/forms/u/0","docs-seu":"https://docs.google.com/forms/d/e/1FAIpQLSePSiwHtTPQmqoAksYWbcy_01M8Ub7hevvwC-XROvzq_A0YsQ/edit","docs-ucd":"","docs-sccfo":"PROD","docs-uptc":["ofip","rr","lsrp","noreplica","tam","ntd","ths","app_install_xsrf_token","ouid","authEmail","authuser","ca","sh","fromCopy","ct","cs","cct","cwc","sle","dl","hi","hi_ext","usp","urp","utm_source","utm_medium","utm_campaign","utm_term","utm_content","docs_gsdv","gs_dl","srd"],"docs-doddn":"","docs-uddn":"Sirindhorn International Institute of Technology, Thammasat University","docs-ugn":"Supakorn","docs-epg":false,"docs-epq":true,"docs-upap":"/prefs","docs-shmtbsl":-1,"docs-euit":false,"docs-tst":"","docs-eia":true,"docs-ilbefsd":false,"docs-lbefm":0,"docs-elsic":false,"docs-thtea":false,"docs-tdc":"[{\"id\":\"0:Basics\",\"name\":\"Basics\",\"deletedIds\":[]},{\"id\":\"0:Brochures\",\"name\":\"Brochures \\u0026 newsletters\",\"deletedIds\":[]},{\"id\":\"0:Calendars\",\"name\":\"Calendars \\u0026 schedules\",\"deletedIds\":[]},{\"id\":\"0:Business\",\"name\":\"Contracts, onboarding, and other forms\",\"deletedIds\":[]},{\"id\":\"0:Finance\",\"name\":\"Finance \\u0026 accounting\",\"deletedIds\":[]},{\"id\":\"0:Letters\",\"name\":\"Letters\",\"deletedIds\":[]},{\"id\":\"0:Reports\",\"name\":\"Reports \\u0026 proposals\",\"deletedIds\":[]},{\"id\":\"0:Planners\",\"name\":\"Trackers\",\"deletedIds\":[]},{\"id\":\"Unparented\",\"name\":\"Uncategorized\",\"deletedIds\":[\"0:NoTemplateCategories\"]}]","docs-ttt":0,"docs-tcdtc":"[]","docs-ividtg":false,"docs-icfdt":false,"docs-hetsdiaow":true,"docs-edt":true,"docs-tafl":true,"docs-puvtftv":true,"docs-erdiiv":false,"docs-eemt":["image"],"docs-eqspdc":true,"docs-roosb":false,"docs-esehbc":true,"docs-sqcuu":true,"docs-uaid":true,"docs-uaqs":0,"docs-eclpa":false,"docs-edp2":false,"docs-iidpm":false,"docs-mefu":true,"docs-iicp":false,"docs-edvm":false,"docs-elpg":false,"docs-elpgpm":false,"docs-acap":["docs.security.access_capabilities",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0],"docs-ci":"","docs-eccfs":false,"docs-eep":false,"docs-ndt":"Untitled form","docs-plwtu":"//ssl.gstatic.com/docs/common/product/forms_app_icon1.png","docs-prn":"Google Forms","docs-sprn":"","docs-een":false,"docs-as":"","docs-mdck":"AIzaSyD8OLHtLvDxnjZsBoVq4-_cuwUbKEMa70s","docs-eccbs":false,"docs-mmpt":9000,"docs-erd":false,"docs-uootuns":false,"docs-amawso":false,"docs-ofmpp":false,"docs-anlpfdo":false,"docs-ems":"SHARE_SUBMENU","docs-glu":"","docs-wsu":"","docs-wsup":"","docs-fecgd":false,"docs-pid":"114810002058710688470","docs-ricocpb":false,"docs-dec":false,"docs-ecgd":false,"docs-dsps":true,"docs-ececs":false,"docs-ezdi":false,"docs-ezduole":false,"server_time_ms":1785945594253,"gaia_session_id":"0","docs-usp":"forms_web","docs-isb":true,"docs-agdc":false,"docs-anddc":false,"docs-adndldc":false,"docs-clibs":1,"docs-cirts":20000,"docs-cide":true,"docs-cn":"Sirindhorn International Institute of Technology, Thammasat University","docs-dprfo":false,"docs-duesf":false,"docs-dom":false,"docs-eacr":false,"docs-eacw":false,"docs-ecer":false,"docs-ecir":true,"docs-ecssl":false,"docs-ecssi":false,"docs-ecped":true,"docs-copy-ecci":false,"docs-edpq":false,"docs-edamc":false,"docs-edomic":false,"docs-edbsms":false,"docs-eddm":false,"docos-edii":false,"docs-edspi":false,"docs-edvpim":false,"docs-edvpim2":false,"docs-fwd":false,"docs-eibs":true,"docs-elds":false,"docs-emp":false,"docs-emcf":true,"docs-emmu":false,"docs-enpks":false,"docs-eoems":false,"docs-epmi":false,"docs-epat":false,"docs-ermcf":false,"docs-erpep":true,"docs-ersd":false,"docs-esml":true,"docs-ete":false,"docs-ewlip":true,"docs-echiut":"default","docs-lfuls":false,"docs-oesf":false,"docs-oursf":false,"docs-plimif":20.0,"docs-srmdue":0.0,"docs-srmoe":0.01,"docs-srmour":0.05,"docs-srmxue":0.01,"docs-ssi":false,"docs-uoci":"023lry54","docs-wesf":true,"docs-xduesf":false,"docs-ddm":false,"docs-emmda":false,"docs-edncm":false,"docs-edailm":false,"docs-eafst":false,"docs-ectrt":false,"docs-elpta":false,"docs-eltafi":false,"docs-eltafip2":false,"docs-epdcl":false,"docs-eptfafi":false,"docs-eptfi":false,"docs-eptbc":false,"docs-eptfcl":false,"docs-ersrn":true,"docs-rolibilc":false,"docs-esrl":true,"docs-esqppo":true,"docs-etpi":true,"docs-ipmmp":true,"docs-emmaffr":false,"docs-emmafi":false,"docs-enpi2":true,"docs-gth":"Go to Forms home screen","docs-ndsom":[],"docs-dm":"application/vnd.google-apps.freebird","docs-sdslm":[],"docs-sdsom":[],"opmbs":52428800,"opmpd":5000,"docs-pe":1,"ophi":"trix_forms","opst":"","opuci":"","docs-ehipo":false,"docs-drk":[],"docs-erkpp":false,"docs-erkfsu":true,"maestro_domain":"https://script.google.com","docs-isctp":false,"docs-emae":false,"mae-cwssw":false,"mae-aoeba":true,"mae-esme":false,"mae-seitd":true,"docs-emgsmw":true,"docs-mae-xt":"Ad9Ebw4MRt3MPAd_4BZNtBWiHZRr:1785945594254","docs-cpv":0,"docs-urouih":false,"docs-hue":"student@example.com","docs-ect":true,"docs-alu":"https://myaccount.google.com/language","docs-cpks":["[\"1add24076589b4a7\",\"AAVFbsGvPsErlriifHKWPSnFvmJgrcd4PBqJDbxeizjmw90SIBN/KMBl5lwq8A76ucj59DGZ1cYu\"]","[\"c861e7a03a6261db\",\"AK2fzyAmWzQ52PkhlMW7YOhnhTMJPTtgkYtx+hG6dBt6ncgHmy3Uwqc6Wg2pkYeXBO1JdsMwEkNh\"]"],"docs-dfhsi":true,"docs-dvhsi":true,"docs-hasid":"Forms","docs-hdod":"docs.google.com","docs-eehs":false,"docs-ehinbd":true,"docs-dphi":false,"docs-hdck":"AIzaSyCs1AYpdoC8cECMZEWg89u054wu3GiI0lI","docs-hucs":true,"docs-hufcm":false,"docs-cbrs":50,"docs-cpari":"https://people-pa.clients6.google.com/","docs-cfru":"https://lh3.google.com","docs-ctak":"AIzaSyAWGrfCCr7albM3lmCc937gx4uIphbpeKQ","docs-cgav":0,"docs-cci":2,"docs-gap":"/drive/v2internal","docs-eaotx":true,"docs-ecrerfmo":false,"jobset":"prod","docs-cdie":false,"docs-copy-hp":true,"docs-ercter":false,"docs-icfc":false,"docs-nad":"sites.google.com","docs-ccwt":80,"docs-ut":1,"docs-sol":true,"docs-dvs":1,"docs-dac":1,"docs-ilbrc":false,"docs-dlpe":false,"docs-erre":false,"docs-cvmo":-1,"docs-ac":"[\"docs_analytics_capabilities\"]","docs-eqam":false,"docs-euaool":false,"docs-esap":true,"docs-efib":false,"docs-se":false,"docs-eaaw":false,"docs-eecs":false,"docs-efsm":false,"docs-ehlbap":true,"docs-emtr":false,"docs-eocc":false,"docs-uwzh":false,"docs-dafjera":false,"docs-daflia":false,"docs-dafgfma":false,"docs-era":true,"docs-aist":"","docs-fhnfst":"sVEZbUAa70mHq3jmV6o0TNq1M7FF","docs-fhnlst":"","docs-fhnprt":"bhEyDmbwi0mHq3jmV6o0TngCF1v2","docs-fhnqt":"8ZPFZT5nG0mHq3jmV6o0PJ5yoVh4","docs-fhnqgst":"sNcbk2hJ80mHq3jmV6o0VbqaovQb","docs-fhnrqtt":"P55v8p4Lk0mHq3jmV6o0VjggjHMV","docs-fhnst":"Nq8mdjdGg0mHq3jmV6o0WShxQA39","docs-fhntrts":"QqnZoz9ko0mHq3jmV6o0QskzBcHn","docs-egn":"-1","docs-eulsdo":false,"docs-eopd":"espresso-pa.googleapis.com","docs-gaopd":"appsgenaiserver-pa.clients6.google.com","docs-idephr":false,"docs-eoool":false,"docs-idep":true,"docs-ilc":false,"docs-ilecoi":false,"docs-ilecoo":false,"docs-ioefuesf":false,"docs-ics":false,"docs-dcarft":false,"docs-egafedo":false,"docs-egafkd":false,"docs-dsfid":false,"docs-ebubgi":false,"docs-ebiagaqae":false,"docs-ecscv2":true,"docs-ed2vpm":false,"docs-ed2viv0":false,"docs-ed2viv1":false,"docs-edtg":false,"docs-eeai":false,"docs-eslc":false,"docs-egnup":false,"docs-egpf":false,"docs-egaat":false,"docs-egqe":true,"docs-eisel":true,"docs-esptc":false,"docs-eupfsi":false,"docs-erfn":false,"docs-esa":false,"docs-es":false,"docs-esgap":false,"docs-esn":false,"docs-evdmt":false,"docs-evdr":false,"docs-evst":false,"docs-mdfcp":"","docs-mdcfsi":"","docs-mdcfst":"","docs-mnafsg":5,"docs-shti":"","docs-rpod":"appsgrowthpromo-pa.clients6.google.com","docs-dht":"","docs-dgec":false,"docs-edcb":false,"docs-deo":false,"docs-depvv2":true,"docs-efrm":true,"docs-epbih":false,"docs-eradihf":true,"docs-dslb":false,"docs-hpgsdepsv":false,"docs-sgsd":false,"docs-egsdsr":false,"docs-ecpda":true,"docs-egsdepsv":false,"docs-egsdic":false,"docs-egsdihfp":false,"docs-gsdv":0,"docs-gsdvofdh":false,"docs-dt":"freebird","zpgp":"blanhdxlknafbtjkmcffomuxhbaijwxyhdlrxtwbeteydmkrxeildyaufkerjwwgewrakfwehylmuzkxbedkmvu","ughumwr_zduoqhc_prtlxqzlkg":0.3,"cbqzg_rkas_iqhptqhtit":0.5,"cbqzg_pmcs_zajo_prtlxqzlkg":0.3,"hasa_pgzvss_cfv_fsxkpqnfmgu_nfykwk_mpf":"https://docs.google.com/picker?protocol\u003dgadgets\u0026parent\u003dhttps://docs.google.com/relay.html\u0026hostId\u003dspreadsheet-form-linker\u0026title\u003dChoose+a+spreadsheet+where+we\u0027ll+copy+responses+to+your+form\u0026hl\u003den\u0026authuser\u003d0\u0026newDriveView\u003dtrue\u0026origin\u003dhttps://docs.google.com\u0026nav\u003d((%22spreadsheets%22,null,%7B%22mimeTypes%22:%22application/vnd.google-apps.spreadsheet,application/vnd.google-apps.ritz%22%7D))","yqc_nslf_rjgniq_hur":"https://docs.google.com/picker?protocol\u003dgadgets\u0026parent\u003dhttps://docs.google.com/relay.html\u0026hostId\u003dtrix_forms-fonts\u0026title\u003dFonts\u0026hl\u003den\u0026authuser\u003d0\u0026newDriveView\u003dtrue\u0026origin\u003dhttps://docs.google.com\u0026navHidden\u003dtrue\u0026multiselectEnabled\u003dtrue\u0026selectButtonLabel\u003dOK\u0026nav\u003d((%22fonts%22))","fdjjm_sbrfbjg_cebugmt_ggvm":"https://support.google.com/a/answer/1726914","ke_gpepqo_exkpo_srxs":false,"hasaa-gddy":"6LcJMyUUAAAAABOakew3hdiQ0dU8a21s-POW69KQ","hasaa-cen":false,"hasaa-crfttjhykne":false,"hasaa-bee":"Untitled survey","hasaa-czfa":true,"hasaa-cebrn":false,"hasaa-mebsd":false,"hasaa-qmi":"gndmhdcefbhlchkhipcnnbkcmicncehk","hasaa-cjg":false,"hasaa-cda":false,"hasaa-crgd":false,"hasaa-crs":false,"hasaa-crnij":false,"hasaa-cfb":false,"hasaa-cylq":false,"hasaa-cmpa":true,"hasaa-cdbhd":false,"hasaa-eqf":"https://accounts.google.com/","hasaa-cyq":true,"hasaa-cpqfoywr":true,"hasaa-stoh":false,"hasaa-cbc":true,"hasaa-ccdj2":false,"hasaa-ccdj3":false,"hasaa-cqatgwu":true,"hasaa-ccqig":false,"hasaa-cbbg":false,"hasaa-crd":false,"hasaa-crntt":false,"hasaa-ctxq":false,"hasaa-qrhbf":false,"hasaa-cfcg":false,"hasaa-boqhxm":true,"hasaa-coefjy":false,"hasaa-pow":10000,"hasaa-pxzzt":50000,"hasaa-pewku":40000,"hasaa-qewku":80000,"hasaa-ohwku":8000,"hasaa-pxzgt":100000,"hasaa-pxzgdj":10000,"hasaa-c3aq":true,"hasaa-czgf":true,"hasaa-cs4g":false,"hasaa-c3aa":false,"hasaa-ccga":false,"hasaa-cscvpk":false,"hasaa-cacddkf":false,"hasaa-cngse":false,"hasaa-codijvtz":true,"hasaa-cforcr":false,"docs-ecubs":true,"hasaa-crczpru":true,"hasaa-cencg":true,"hasaa-cmt":false,"hasaa-cee":true,"hasaa-cun":false,"hasaa-ccr":false,"hasaa-ccrpu":false,"hasaa-cqdqs":false,"hasaa-cbcrbin":true,"hasaa-nddw":false,"hasaa-cttcn":true,"hasaa-c3a-suv":true,"hasaa-cotz":true,"hasaa-cuwmf":true,"hasaa-crncp":false,"hasaa-cdcqti":true,"googlesystem_blogspot_banlevel":"http://goo.gl/vqaya","docs-bcbt":"Forms home","docs-bc-css":"forms","docs-spdy":false,"xdbcfAllowHostNamePrefix":true,"xdbcfAllowXpc":true,"docs-dbctc":false,"docs-ebctcio":true,"docs-iror":false,"docs-pse":"PROD","docs-nrfd":false,"docs-nrfdfr":false,"docs-sdb":false,"docs-lucpf":true,"docs-hbiwud":false,"docs-iwu":{"initialWorkspaceUdp":true},"docs-efypr":true,"docs-eyprp":true,"docs-cp-tp":6,"docs-cr-tp":5,"docs-fe-re":3,"docs-l1lc":5,"docs-l1lm":"BKK","docs-l2lc":2,"docs-l2lm":"CBF","docs-l2t":0,"docs-lsd":4,"docs-tfh":"","docs-crp":"/forms/d/e/1FAIpQLSePSiwHtTPQmqoAksYWbcy_01M8Ub7hevvwC-XROvzq_A0YsQ/formResponse","docs-ifr":false,"docs-tintd":false,"docs-tdcp":0,"docs-tdvc":true,"docs-dhnap":"docs.google.com","docs-ds":"https","docs-ipuv":true,"docs-po":"https://docs.google.com","docs-to":"https://docs.google.com","opdu":true,"opru":"https://docs.google.com/relay.html","opsmu":"https://docs.google.com/picker","opbu":"https://docs.google.com/picker","enable_maestro":true,"docs-mhea":false,"docs-caru":"https://clients6.google.com","docs-cbau":"https://drive.google.com","docs-cdru":"https://drivefrontend-pa.clients6.google.com","docs-cwc":"","enable_omnibox":true,"docs-dcr":false,"docs-eytpgcv":1};</script><meta property="og:title" content="FastForm F1"><meta property="og:type" content="article"><meta property="og:site_name" content="Google Docs"><meta property="og:url" content="https://docs.google.com/forms/d/e/1FAIpQLSePSiwHtTPQmqoAksYWbcy_01M8Ub7hevvwC-XROvzq_A0YsQ/viewform?usp=embed_facebook"><meta property="og:image" content="https://lh6.googleusercontent.com/05LJ3Pqeb3oMNZByfPNCXileix-ikdBzyodFQV-lvh3iFkRf6zOtsDlhhAg9lc-J7AaPfqWJPNm2X2o=w1200-h630-p"><meta property="og:image:width" content="200"><meta property="og:image:height" content="200"><meta property="og:ttl" content="604800"></head><body dir="ltr" itemscope itemtype="http://schema.org/CreativeWork/FormObject" class="D8bnZd " data-is-prepopulate-mode="false" data-form-submission-timestamp="-1" jscontroller="lN6Aje" jsaction="rcuQ6b:rcuQ6b; click:KjsqPd;"><meta itemprop="name" content="FastForm F1"><meta itemprop="faviconUrl" content="https://ssl.gstatic.com/docs/spreadsheets/forms/forms_icon_2026_v2.ico"><meta itemprop="url" content="https://docs.google.com/forms/d/e/1FAIpQLSePSiwHtTPQmqoAksYWbcy_01M8Ub7hevvwC-XROvzq_A0YsQ/viewform?usp=embed_googleplus"><meta itemprop="embedURL" content="https://docs.google.com/forms/d/e/1FAIpQLSePSiwHtTPQmqoAksYWbcy_01M8Ub7hevvwC-XROvzq_A0YsQ/viewform?embedded=true&amp;usp=embed_googleplus"><meta itemprop="thumbnailUrl" content="https://ssl.gstatic.com/docs/forms/social/social-forms-big-2.png"><meta itemprop="image" content="https://ssl.gstatic.com/docs/forms/social/social-forms-big-2.png"><meta itemprop="imageUrl" content="https://ssl.gstatic.com/docs/forms/social/social-forms-big-2.png"><div class="Uc2NEf"><div class="vnFTpb teQAzf ErmvL KHCwJ"></div><div class="teQAzf"><div class="RH5hzf RLS9Fe"><div class="idZHHb"><div class="UOnQub RVEQke"></div><div class="pdLVYe LgNcQe" role="heading" aria-level="1">FastForm F1</div><div class="vHW8K">Your response has been recorded.</div><div class="c2gzEf"><a href="https://docs.google.com/forms/u/0/d/e/1FAIpQLSePSiwHtTPQmqoAksYWbcy_01M8Ub7hevvwC-XROvzq_A0YsQ/viewform?usp=form_confirm">Submit another response</a></div></div></div><div><div class="v1CNvb sId0Ce">This form was created outside of your domain. - <a jsname="FqYDPb" jscontroller="KFVhZe" jsaction="click:jwOTSd;" role="button" tabindex="0" data-user-email-address="student@example.com" data-user-display-name="Supakorn Prayongyam">Contact form owner</a> - <a href="https://policies.google.com/terms" target="_blank">Terms of Service</a> - <a href="https://policies.google.com/privacy" target="_blank">Privacy Policy</a><p>Does this form look suspicious? <a href="https://docs.google.com/forms/u/0/d/e/1FAIpQLSePSiwHtTPQmqoAksYWbcy_01M8Ub7hevvwC-XROvzq_A0YsQ/abuse" target="_blank">Report</a></p></div><div class="I3zNcc yF4pU"><a dir="auto" href="//www.google.com/forms/about/?utm_source=product&utm_medium=forms_logo&utm_campaign=forms"><img src="https://www.gstatic.com/images/branding/googlelogo/svg/googlelogo_dark_clr_74x24px.svg" alt="Google" height="24px" width="74px"/>&nbsp;<span class="sUXvCd">Forms</span></a></div></div></div></div><div jscontroller="rK97wb" jsaction="rcuQ6b:HYsj2"></div><script nonce="Mbluc987l1QNVMBvCgi-PA">var FB_PUBLIC_LOAD_DATA_ = [null,[],"/forms","Untitled form",null,null,null,"0",null,0,1,null,"",0,"e/1FAIpQLSePSiwHtTPQmqoAksYWbcy_01M8Ub7hevvwC-XROvzq_A0YsQ",0,"[{\"data\":{\"value\":[]},\"keyPath\":[\"syncMap\",\"applicationFonts\",\"6\"],\"state\":{\"hashValue\":\"00000000\"}},{\"data\":{\"value\":[]},\"keyPath\":[\"syncMap\",\"domainFonts\",\"0\"],\"state\":{\"hashValue\":\"00000000\"}},{\"data\":{\"familyList\":[\"Alegreya\",\"Amatic SC\",\"Bree Serif\",\"Calibri\",\"Cambria\",\"Merriweather\",\"Permanent Marker\",\"Pinyon Script\",\"Playfair Display\",\"Proxima Nova\",\"Roboto\",\"Roboto Mono\",\"Ultra\",\"Varela Round\"],\"recentlyUsedFamilyList\":[\"Times New Roman\",\"Arial\",\"Impact\",\"Calibri\"],\"transitionedFamilyList\":[\"Calibri\"],\"hasTransitioned\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-fonts\"],\"state\":{\"timestamp\":1776955003571127}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-mention-dsp\"],\"state\":{\"timestamp\":1785945592777800}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-enable_colon_emoji_insertion\"],\"state\":{\"timestamp\":1785945592777800}},{\"data\":{\"recent_templates\":[\"62\"]},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-recent_templates\",\"5\"],\"state\":{\"timestamp\":1777014971552049}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-dlpc\"],\"state\":{\"timestamp\":1785945592782009}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"mae-show_addons_menu_promo\"],\"state\":{\"timestamp\":1742820896871488}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-homescreen-aips\"],\"state\":{\"timestamp\":1759746299975684}},{\"data\":{},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-homescreen-asp\",\"6\"],\"state\":{\"timestamp\":1755611433603476}},{\"data\":{\"value\":0},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-homescreen-ftbdct\"],\"state\":{\"timestamp\":1759746299975684}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-homescreen-dbs\"],\"state\":{\"timestamp\":1759746299975684}},{\"data\":{\"view\":1},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-homescreen-dv\",\"5\"],\"state\":{\"timestamp\":1759746299975684}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-homescreen-ht\"],\"state\":{\"timestamp\":1759746299975684}},{\"data\":{\"filter_type\":0},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-homescreen-of\",\"1\"],\"state\":{\"timestamp\":1759746299975684}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-homescreen-wws\"],\"state\":{\"timestamp\":1759746299975684}},{\"data\":{\"value\":0},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-etg-lvt\"],\"state\":{\"timestamp\":1785945592790322}},{\"data\":{\"viewMode\":1},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-chrome\",\"1\"],\"state\":{\"timestamp\":1773987389516446}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-enable_scoped_screen_reader\",\"1\"],\"state\":{\"timestamp\":1697171213544186}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-enable_scoped_screen_reader\",\"5\"],\"state\":{\"timestamp\":1697171213544186}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-enable_scoped_braille\",\"1\"],\"state\":{\"timestamp\":1697171213544186}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-enable_scoped_braille\",\"5\"],\"state\":{\"timestamp\":1697171213544186}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-enable_scoped_unified_accessibility\",\"1\"],\"state\":{\"timestamp\":1697171213544186}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-enable_scoped_unified_accessibility\",\"5\"],\"state\":{\"timestamp\":1697171213544186}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-screenreader\"],\"state\":{\"timestamp\":1697171213544186}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-enable_braille\"],\"state\":{\"timestamp\":1697171213544186}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"docs-mute_collaborators\"],\"state\":{\"timestamp\":1697171213544186}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_chooser\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_link_form_promo\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_whats_new\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-expand_dasher_options\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"proto\":\"[]\"},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-auto_create_sink\"],\"state\":{\"timestamp\":1785945592798121}},{\"data\":{\"proto\":\"[]\"},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-ui_version\"],\"state\":{\"timestamp\":1785945592801055}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-questions_required_by_default\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-collect_usernames_by_default\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"proto\":\"[]\"},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-collect_email_default_choice\"],\"state\":{\"timestamp\":1785945592803107}},{\"data\":{\"value\":0},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-default_point_value\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_contact_owner_by_default\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_assessments_guided_help\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_qxq_guided_help\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_braveheart_guided_help\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_manual_grading_guided_help\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_record_view_guided_help\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_brain_guided_help\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-has_seen_braveheart_theme_warning\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_custom_themes_toast\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_edu_bundle_18_toast\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_quizzes_intro\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_question_import_guided_help\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_locked_mode_guided_help\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_draft_responses_modal\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-expanded_fonts_guided_help\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_published_form_guided_help\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_published_reader_guided_help\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_formsmith_onboarding_dialog\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":false},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_contact_form_owner_by_default\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_formsmith_popup_bubble\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_text_response_summary_onboarding_dialog\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_questionsmith_onboarding_dialog\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_text_response_categorization_onboarding_dialog\"],\"state\":{\"timestamp\":1727612378429691}},{\"data\":{\"value\":true},\"keyPath\":[\"syncMap\",\"preferences\",\"freebird-show_form_response_insights_onboarding_dialog\"],\"state\":{\"timestamp\":1727612378429691}}]",1,0,1];</script><script id="base-js" src="https://www.gstatic.com/_/freebird/_/js/k=freebird.v.en.9o6maJPFea0.O/am=ECACHA/d=1/rs=AMjVe6gXI1CS2lLWWGNZhysoi0acccGcWw/m=viewer_base" nonce="Mbluc987l1QNVMBvCgi-PA"></script></body></html> No newline at end of file
Comment thread fixtures/resp-closed.bin
@@ -0,0 +1 @@
<!DOCTYPE html><html class="HB1eCd-UMrnmb PHOcVb"><head><style nonce="_1p_YcB4K8mvOH_ESbzk2g">.iPj4P { background-color: #5746e3 !important; }</style><link rel="shortcut icon" sizes="16x16" href="https://www.gstatic.com/images/branding/productlogos/forms_2026/v2/web-16dp/logo_forms_2026_color_1x_web_16dp.png"><title>FastForm F1</title><link rel="stylesheet" href="https://www.gstatic.com/_/freebird/_/ss/k=freebird.v.cqyCYBwdeHc.L.W.O/am=ECACHA/d=1/rs=AMjVe6j9xICbazDamdb6RTKBMujjsz1Aqg" data-id="_cl" nonce="_1p_YcB4K8mvOH_ESbzk2g"><link href="https://fonts.googleapis.com/css?family=Google+Sans_old:400,500|Roboto_old:300,400,400i,500,700&subset=latin,vietnamese,latin-ext,cyrillic,greek,cyrillic-ext,greek-ext" rel="stylesheet" nonce="_1p_YcB4K8mvOH_ESbzk2g"><script nonce="BXaZIM21kmEz1TTsK9PRlQ">var DOCS_timing={}; DOCS_timing['pls']=new Date().getTime(); DOCS_timing['sl']=DOCS_timing['pls']; _docs_webfonts_json = {"fontMetadataMap":{"Calibri":{"documentFont":false,"fontFaces":[{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":452,"ascender":1536,"cmapFormat2":false,"codepoint4e00":false,"descender":-512,"fsSelection":64,"lineGap":452,"ulCodePageRange1":1,"unitsPerEm":2048,"usWinAscent":1950,"usWinDescent":550},"fontFamily":"Calibri","menuFont":false,"sources":[{"format":"woff2","isLocal":true,"url":"Calibri"},{"format":"woff2","isLocal":false,"url":"//fonts.gstatic.com/l/font?kit\u003dJ7afnpV-BGlaFfdAtLMS7JNK\u0026skey\u003da1029226f80653a8\u0026v\u003dv15"}],"style":"normal","subset":"ALL","subsetValue":"*","weight":400,"weightedFontFamily":"Calibri"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":452,"ascender":1536,"cmapFormat2":false,"codepoint4e00":false,"descender":-512,"fsSelection":1,"lineGap":452,"ulCodePageRange1":1,"unitsPerEm":2048,"usWinAscent":1950,"usWinDescent":550},"fontFamily":"Calibri","menuFont":false,"sources":[{"format":"woff2","isLocal":true,"url":"Calibri Italic"},{"format":"woff2","isLocal":true,"url":"Calibri-Italic"},{"format":"woff2","isLocal":false,"url":"//fonts.gstatic.com/l/font?kit\u003dJ7adnpV-BGlaFfdAhLQY67FIEjg\u0026skey\u003d36a3d5758e0e2f58\u0026v\u003dv15"}],"style":"italic","subset":"ALL","subsetValue":"*","weight":400,"weightedFontFamily":"Calibri"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":452,"ascender":1536,"cmapFormat2":false,"codepoint4e00":false,"descender":-512,"fsSelection":32,"lineGap":452,"ulCodePageRange1":1,"unitsPerEm":2048,"usWinAscent":1950,"usWinDescent":550},"fontFamily":"Calibri","menuFont":false,"sources":[{"format":"woff2","isLocal":true,"url":"Calibri Bold"},{"format":"woff2","isLocal":true,"url":"Calibri-Bold"},{"format":"woff2","isLocal":false,"url":"//fonts.gstatic.com/l/font?kit\u003dJ7aanpV-BGlaFfdAjAo9zp5gGDAb\u0026skey\u003dcd2dd6afe6bf0eb2\u0026v\u003dv15"}],"style":"normal","subset":"ALL","subsetValue":"*","weight":700,"weightedFontFamily":"Calibri Bold"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":452,"ascender":1536,"cmapFormat2":false,"codepoint4e00":false,"descender":-512,"fsSelection":33,"lineGap":452,"ulCodePageRange1":1,"unitsPerEm":2048,"usWinAscent":1950,"usWinDescent":550},"fontFamily":"Calibri","menuFont":false,"sources":[{"format":"woff2","isLocal":true,"url":"Calibri Bold Italic"},{"format":"woff2","isLocal":true,"url":"Calibri-BoldItalic"},{"format":"woff2","isLocal":false,"url":"//fonts.gstatic.com/l/font?kit\u003dJ7aYnpV-BGlaFfdAhLQgUp5qHxIZrCE\u0026skey\u003d8b00183e5f6700b6\u0026v\u003dv15"}],"style":"italic","subset":"ALL","subsetValue":"*","weight":700,"weightedFontFamily":"Calibri Bold"},{"fontDrawSize":{"STypoAscender":1536,"STypoDescender":-512,"STypoLineGap":452,"ascender":1536,"cmapFormat2":false,"codepoint4e00":false,"descender":-512,"fsSelection":64,"lineGap":452,"ulCodePageRange1":1,"unitsPerEm":2048,"usWinAscent":1950,"usWinDescent":550},"fontFamily":"Calibri--Menu","menuFont":true,"sources":[{"format":"woff2","isLocal":false,"url":"//fonts.gstatic.com/l/font?kit\u003dJ7afnpV-BGlaFfdAhLcY67FIEjg\u0026skey\u003da1029226f80653a8\u0026v\u003dv15"}],"style":"normal","subset":"MENU","subsetValue":"menu","weight":400,"weightedFontFamily":"Calibri"}],"genericFallback":"sans-serif","hasInkedWhitespace":false,"restrictedDomainFont":false,"userDomainFont":false,"version":"v15"}},"unrecognizedFontFamilies":[],"weightedFontFamilyMap":{"Calibri":"Calibri","Calibri Bold":"Calibri"}}</script><script nonce="BXaZIM21kmEz1TTsK9PRlQ">_docs_webfonts_fontFaces = null; _docs_webfonts_iframe_fontFaces = null;(function() {_docs_webfonts_createFontFaces = function(doc) {if (doc && doc.fonts) {var win = window; var fontFaceObject = {}; var docs_fontFaces_data = {}; for (var identifierString in docs_fontFaces_data) {var fontFace = new win.FontFace( docs_fontFaces_data[identifierString]['fontFamily'], docs_fontFaces_data[identifierString]['sourceString'],{'style': docs_fontFaces_data[identifierString]['style'], 'weight': docs_fontFaces_data[identifierString]['weight']}); fontFace.load().then(function(loadedFontFace) {doc.fonts.add(loadedFontFace);}); fontFaceObject[identifierString] = fontFace;}return fontFaceObject;}return null;}; _docs_webfonts_fontFaces = _docs_webfonts_createFontFaces(document);})();DOCS_timing['wpid']=new Date().getTime();</script><link href="https://fonts.googleapis.com/css?family=Product+Sans&subset=latin,vietnamese,latin-ext,cyrillic,greek,cyrillic-ext,greek-ext" rel="stylesheet" type="text/css" nonce="_1p_YcB4K8mvOH_ESbzk2g"><meta name="viewport" content="width=device-width, initial-scale=1"><meta name="referrer" content="strict-origin-when-cross-origin"><script data-id="_gd" nonce="BXaZIM21kmEz1TTsK9PRlQ">window.WIZ_global_data = {"K1cgmc":"%.@.[null,null,null,[1,1,[1785741704,110245000],4],null,0]]","SpaT4e":"editors","TSDtV":"%.@.[[null,[[45759550,null,false,null,null,null,\"ipHXZe\"],[45765567,null,false,null,null,null,\"Gu5Dg\"],[45755088,null,false,null,null,null,\"fzPMYc\"],[45805719,null,false,null,null,null,\"ZZrh9e\"],[45796590,null,false,null,null,null,\"rFDJvb\"],[45776074,null,false,null,null,null,\"H0kCgf\"],[45681910,null,true,null,null,null,\"OKXfNb\"],[45662509,null,false,null,null,null,\"fLCtnf\"],[45794381,null,false,null,null,null,\"mPb5ue\"],[45808609,null,false,null,null,null,\"SY6Rxb\"],[45657263,null,false,null,null,null,\"ByEExb\"],[45769604,null,false,null,null,null,\"h14wf\"],[45822231,null,false,null,null,null,\"CwJ3S\"],[45744490,null,false,null,null,null,\"luHWB\"],[45760386,null,false,null,null,null,\"B22Yae\"],[45791957,null,false,null,null,null,\"yYo5Mc\"],[45727616,null,true,null,null,null,\"qNQRAf\"],[45644642,null,null,null,\"X-WS exp!\",null,\"rsrxGc\"],[45748088,null,false,null,null,null,\"KLuwTc\"],[45744236,null,false,null,null,null,\"Rnque\"],[45778211,null,false,null,null,null,\"W7jxNc\"],[45749331,null,false,null,null,null,\"JQs3De\"],[45696305,null,false,null,null,null,\"Uujhbc\"],[45807852,null,false,null,null,null,\"O7AOQd\"],[45775833,null,false,null,null,null,\"bRlUw\"],[45679175,null,false,null,null,null,\"OETeme\"],[45747909,null,false,null,null,null,\"uTkAWb\"],[45677009,null,false,null,null,null,\"JkUdKe\"],[45678187,null,false,null,null,null,\"OrvCpd\"],[45822250,null,false,null,null,null,\"mtSDUb\"],[45672203,null,true,null,null,null,\"jDBBvd\"],[45643359,null,true,null,null,null,\"GcxuKe\"],[45672066,null,true,null,null,null,\"E1A5lb\"],[45751947,null,false,null,null,null,\"sT6Vl\"],[45670693,null,false,null,null,null,\"V7Wemb\"],[45730498,null,false,null,null,null,\"ZycXJf\"],[45717711,null,false,null,null,null,\"lhxHkd\"],[45777286,null,false,null,null,null,\"NYeKmb\"],[45775584,0,null,null,null,null,\"bjSjmf\"],[45775398,null,false,null,null,null,\"ejP0Cd\"],[45712967,null,false,null,null,null,\"rZW8ld\"],[45673686,null,false,null,null,null,\"TVdkuc\"],[45673687,null,false,null,null,null,\"OQKgkd\"],[45762063,null,false,null,null,null,\"WlmQwb\"],[45681145,null,true,null,null,null,\"hV6kcd\"],[45743516,null,false,null,null,null,\"C3mEk\"],[45801628,null,false,null,null,null,\"HAOZVe\"],[45678265,null,false,null,null,null,\"P7qpdc\"],[45725105,null,false,null,null,null,\"VQN2ac\"],[45800462,null,false,null,null,null,\"ggsQnc\"],[45672211,null,true,null,null,null,\"Wgtd8c\"],[45797816,null,false,null,null,null,\"HLGpcd\"],[45729447,null,false,null,null,null,\"hjIR6e\"],[45782633,null,false,null,null,null,\"CfqILe\"],[45768846,null,false,null,null,null,\"rwPWxf\"],[45754885,null,true,null,null,null,\"rKnVYd\"],[45757913,null,false,null,null,null,\"qmNm7d\"],[45769936,null,false,null,null,null,\"FXtIgb\"],[45808613,null,false,null,null,null,\"Ln6bt\"],[45686665,null,true,null,null,null,\"xGJelc\"],[45668197,null,true,null,null,null,\"pReYPb\"],[45723911,null,false,null,null,null,\"e77Z7d\"],[45763814,null,false,null,null,null,\"s2BRxc\"],[45822166,null,null,null,\"Generate the draft based on these details.\",null,\"K2uSgc\"],[45706188,null,false,null,null,null,\"OF1zrd\"],[45824069,null,false,null,null,null,\"Ufe4Y\"],[45770955,null,true,null,null,null,\"GYvfVc\"],[45714946,null,true,null,null,null,\"ZYrane\"],[45816821,null,false,null,null,null,\"mvTBld\"],[45700150,null,false,null,null,null,\"RLRykc\"],[45678679,null,false,null,null,null,\"HbebVe\"],[45785527,null,false,null,null,null,\"Vgzmac\"],[45772218,null,false,null,null,null,\"KV2rCe\"],[45715074,null,true,null,null,null,\"xxxPgb\"],[45700770,null,false,null,null,null,\"Mk7a4d\"],[45681147,null,true,null,null,null,\"pgDArb\"],[45776812,null,true,null,null,null,\"SX5Atc\"],[45677445,null,false,null,null,null,\"rPYk8\"],[45658949,null,true,null,null,null,\"NfShlf\"],[45803148,null,false,null,null,null,\"xwAAZc\"],[45788232,null,false,null,null,null,\"zMXnKc\"],[45748403,null,false,null,null,null,\"XYCTRc\"],[45699702,null,false,null,null,null,\"Xo3sI\"],[45807357,null,false,null,null,null,\"IQZOkd\"],[45765896,null,false,null,null,null,\"Gl5aM\"],[45749214,null,null,null,\"\",null,\"HkDBBd\"],[45729467,null,false,null,null,null,\"kKLGLb\"],[45769154,null,false,null,null,null,\"OPleEe\"],[45789804,null,false,null,null,null,\"ymRI8\"],[45812735,null,false,null,null,null,\"Yk2s0e\"],[45813075,null,false,null,null,null,\"aq7kZe\"],[45762489,null,false,null,null,null,\"cqFBGe\"],[45823385,null,false,null,null,null,\"Bj7Brf\"],[45760024,null,false,null,null,null,\"iKoeab\"],[45775102,null,null,null,\"\",null,\"patyy\"],[45774956,null,false,null,null,null,\"rhB3ee\"],[45672206,null,true,null,null,null,\"qxTK9b\"],[45709238,null,true,null,null,null,\"jQTN0e\"],[45729422,null,false,null,null,null,\"OOSdib\"],[45812940,null,false,null,null,null,\"O22Sge\"],[45798443,null,false,null,null,null,\"C687tf\"],[45654291,null,false,null,null,null,\"rhP5uf\"],[45653421,null,false,null,null,null,\"K2C7od\"],[45644639,null,true,null,null,null,\"GoJCRc\"],[45796009,null,true,null,null,null,\"CUiBhe\"],[45820374,null,false,null,null,null,\"Gnzcd\"],[45672202,null,true,null,null,null,\"CyvTSb\"],[45726382,null,false,null,null,null,\"QUY3\"],[45813099,null,false,null,null,null,\"j4o8qe\"],[45744918,null,false,null,null,null,\"f9HMbb\"],[45788753,null,true,null,null,null,\"AH4mzf\"],[45621619,null,false,null,null,null,\"PfkIr\"],[45773994,null,false,null,null,null,\"dADOHe\"],[45735186,null,false,null,null,null,\"SIvvz\"],[45791678,null,false,null,null,null,\"AX1Zl\"],[45672213,null,true,null,null,null,\"BfWTle\"],[45822286,null,null,null,\"The draft looks good and covers everything. Let us finalize it.\",null,\"pwGLae\"],[45771189,null,false,null,null,null,\"N8Zn3e\"],[45802962,null,false,null,null,null,\"jVyASe\"],[45810797,null,false,null,null,null,\"mwxF4b\"],[45758631,null,false,null,null,null,\"kGhHOe\"],[45818531,null,false,null,null,null,\"UmzKbc\"],[45802693,null,false,null,null,null,\"QwN3Ve\"],[45730506,null,false,null,null,null,\"qhuWUc\"],[45769023,null,false,null,null,null,\"z66fFe\"],[45690176,null,false,null,null,null,\"qF6xVc\"],[45686663,null,true,null,null,null,\"KGh4Cc\"],[45697234,null,false,null,null,null,\"cUoIXb\"],[45708298,null,false,null,null,null,\"T4IN0c\"],[45812992,null,false,null,null,null,\"OYyUS\"],[45748868,null,false,null,null,null,\"HraNse\"],[45806359,null,false,null,null,null,\"Hc7m4c\"],[45718842,null,false,null,null,null,\"Ywwwdb\"],[45770251,null,false,null,null,null,\"ugtdaf\"],[45811075,null,false,null,null,null,\"hdbTPe\"],[45821188,null,false,null,null,null,\"kIO20c\"],[45766700,null,false,null,null,null,\"wxRkOc\"],[45788792,null,false,null,null,null,\"NYGVYd\"],[45804556,null,false,null,null,null,\"uGfKYc\"],[45752852,null,false,null,null,null,\"Pdqiud\"],[45823523,null,false,null,null,null,\"L8Gquf\"],[45812932,null,false,null,null,null,\"cEao8\"],[45752686,null,false,null,null,null,\"mi0YMb\"],[45729830,null,false,null,null,null,\"DCV6If\"],[45814566,null,false,null,null,null,\"UtIL3e\"],[45785103,null,false,null,null,null,\"mywtHd\"],[45712870,null,false,null,null,null,\"J04FPb\"],[45762802,null,false,null,null,null,\"zcN1ic\"],[45769980,null,true,null,null,null,\"GcH8If\"],[45658679,null,true,null,null,null,\"qdTkee\"],[45720792,null,false,null,null,null,\"NFUw0c\"],[45753332,null,false,null,null,null,\"s7RHUb\"],[45771617,null,false,null,null,null,\"Blimsc\"],[45767102,null,true,null,null,null,\"SFyMwf\"],[45783804,null,false,null,null,null,\"BBtrjb\"],[45770188,null,false,null,null,null,\"JMBoZe\"],[45779204,null,false,null,null,null,\"yC3ALe\"],[45725154,null,false,null,null,null,\"WbzTGf\"],[45801648,null,false,null,null,null,\"mxFwrf\"],[45800085,null,false,null,null,null,\"Wi7jZ\"],[45782336,null,false,null,null,null,\"qUIPl\"],[45641838,null,false,null,null,null,\"fLPxhf\"],[45723104,null,true,null,null,null,\"EkiEee\"],[45747769,null,true,null,null,null,\"pkwVub\"],[45820980,null,false,null,null,null,\"SCHNtf\"],[45755277,null,false,null,null,null,\"kHLD6e\"],[45776409,null,false,null,null,null,\"G5gJw\"],[45798803,null,false,null,null,null,\"cLNSBb\"],[45686662,null,true,null,null,null,\"go03Eb\"],[45773549,null,false,null,null,null,\"Xo7q9d\"],[45660690,null,false,null,null,null,\"ovKHsb\"],[45770837,null,false,null,null,null,\"FJ461c\"],[45677461,null,null,null,null,null,\"qb66hd\",[\"[[\\\"fr\\\",\\\"es\\\",\\\"pt\\\",\\\"it\\\",\\\"de\\\",\\\"ja\\\",\\\"ko\\\"]]\"]],[45816614,null,null,null,null,null,\"y9Fone\",[\"[[\\\"en\\\"]]\"]],[45792493,null,false,null,null,null,\"fYmo4c\"],[45808544,null,false,null,null,null,\"EteYEb\"],[45819588,0,null,null,null,null,\"wbzdub\"],[45769474,null,false,null,null,null,\"u2dq9e\"],[45746380,null,false,null,null,null,\"fkqxGb\"],[45821527,null,false,null,null,null,\"Rqnnh\"],[45793906,null,false,null,null,null,\"yLhhJb\"],[45725110,null,false,null,null,null,\"ElheSd\"],[45728785,null,false,null,null,null,\"UPAJB\"],[45660287,null,false,null,null,null,\"nIuPDe\"],[45788422,null,false,null,null,null,\"biLVcb\"],[45686664,null,true,null,null,null,\"P0fSX\"],[45692064,null,false,null,null,null,\"wZ64Sb\"],[45773613,null,false,null,null,null,\"tDmOYe\"],[45711477,null,false,null,null,null,\"Rnlerd\"],[45797188,null,false,null,null,null,\"bHmAwd\"],[45676996,null,false,null,null,null,\"KFVYtf\"],[45799901,null,false,null,null,null,\"hxZa7b\"],[45672205,null,true,null,null,null,\"E7dKkc\"],[45802547,null,false,null,null,null,\"MSDC3c\"],[45699204,null,true,null,null,null,\"XWRwod\"],[45776401,null,false,null,null,null,\"VdeTBe\"],[45806947,300,null,null,null,null,\"b0rpgd\"],[45752655,null,false,null,null,null,\"NsOFEe\"],[45769147,null,false,null,null,null,\"DFM4ae\"],[45796246,null,false,null,null,null,\"N0Rqe\"],[45736179,null,false,null,null,null,\"LIe8ub\"],[45644640,42,null,null,null,null,\"xbuGR\"],[45804726,null,false,null,null,null,\"jtTPA\"],[45801316,null,false,null,null,null,\"EOyv4b\"],[45796251,null,false,null,null,null,\"Fdalgf\"],[45742079,null,false,null,null,null,\"awHj9\"],[45676754,null,false,null,null,null,\"YwbU8\"],[45767159,0,null,null,null,null,\"yDErgc\"],[45770249,null,false,null,null,null,\"cUUSDf\"],[45726852,null,false,null,null,null,\"qgjRgd\"],[45700504,null,false,null,null,null,\"u6ksOd\"],[45783852,1,null,null,null,null,\"Ygmeod\"],[45672085,null,true,null,null,null,\"FJbUAf\"],[45742759,null,false,null,null,null,\"hc5Fic\"],[45762425,null,false,null,null,null,\"l5Ziqe\"],[45765314,null,false,null,null,null,\"jNI7Hb\"],[45737769,null,false,null,null,null,\"C4gACf\"],[45684108,null,false,null,null,null,\"IHwhDb\"],[45674285,null,false,null,null,null,\"zRoGXc\"],[45774501,null,false,null,null,null,\"flYjKf\"],[45766771,null,false,null,null,null,\"aCW0Qd\"],[45775440,null,false,null,null,null,\"LBBJ2e\"],[45746176,null,false,null,null,null,\"atfOHe\"],[45779046,null,false,null,null,null,\"wYy78\"],[45736482,null,false,null,null,null,\"DAnsv\"],[45804808,null,false,null,null,null,\"hV66bc\"],[45684730,null,true,null,null,null,\"aW7Ggd\"],[45677444,null,false,null,null,null,\"WYEV9b\"],[45776017,null,false,null,null,null,\"aAEbr\"],[45795492,null,false,null,null,null,\"WLRPhf\"],[45779941,null,false,null,null,null,\"r18O9b\"],[45798772,null,true,null,null,null,\"Wa5bQc\"],[45747879,null,false,null,null,null,\"kZsK5\"],[45661802,null,false,null,null,null,\"I09lfd\"],[45772691,null,false,null,null,null,\"A6J3Xb\"],[45746685,null,false,null,null,null,\"Q3KBSd\"],[45778160,null,false,null,null,null,\"oWcm2d\"],[45794745,null,false,null,null,null,\"tVjQye\"],[45737207,null,false,null,null,null,\"Kw5UUd\"],[45639541,null,false,null,null,null,\"LHinid\"],[45736727,null,false,null,null,null,\"JJHfwf\"],[45768825,null,false,null,null,null,\"pf4r3c\"],[45748983,null,true,null,null,null,\"s0d1Kd\"],[45757707,null,false,null,null,null,\"yZYBLb\"],[45780893,null,false,null,null,null,\"sRGemf\"],[45772141,null,false,null,null,null,\"jXHT1d\"],[45719766,null,false,null,null,null,\"A3eSQd\"],[45772275,null,false,null,null,null,\"oqsMtf\"],[45696085,null,false,null,null,null,\"g3Gc7d\"],[45793966,null,false,null,null,null,\"ev0hBf\"],[45785853,null,false,null,null,null,\"pRgIoc\"],[45798771,null,true,null,null,null,\"qgvf6d\"],[45788942,null,false,null,null,null,\"Nm6g8e\"],[45811102,null,false,null,null,null,\"HedPKb\"],[45746766,null,true,null,null,null,\"a6khDf\"],[45657471,null,null,null,null,null,\"kMR5pc\",[\"[]\"]],[45772706,null,false,null,null,null,\"LZgWZ\"],[45820748,null,false,null,null,null,\"ZyMUec\"],[45686667,null,true,null,null,null,\"ek81nf\"],[45813544,null,false,null,null,null,\"gpy7be\"],[45658731,null,true,null,null,null,\"zMe6ub\"],[45777878,null,false,null,null,null,\"Se84Kc\"],[45658716,null,true,null,null,null,\"Fa3cob\"],[45685754,null,true,null,null,null,\"OyPt5\"],[45756433,null,false,null,null,null,\"Zb8rLd\"],[45661086,null,false,null,null,null,\"wfVdS\"],[45666088,null,false,null,null,null,\"MgfT5\"],[45774508,null,false,null,null,null,\"h5ZSZb\"],[45771289,null,false,null,null,null,\"s7fdUc\"],[45729970,null,false,null,null,null,\"V517pe\"],[45658644,null,true,null,null,null,\"ZdwoD\"],[45696263,null,null,null,null,null,\"W12Bse\",[\"[[\\\"feature named `pageObserver` was not found\\\",\\\"feature named `hover` was not found\\\"]]\"]],[45653615,null,null,null,null,null,\"lwF00d\",[\"[]\"]],[45658291,null,true,null,null,null,\"OSuRGd\"],[45779090,null,false,null,null,null,\"hCbIKb\"],[45743085,null,true,null,null,null,\"Ph5VH\"],[45795480,null,false,null,null,null,\"UDqFgb\"],[45681790,null,false,null,null,null,\"uPCxtc\"],[45647060,null,false,null,null,null,\"uYjPWb\"],[45720439,null,false,null,null,null,\"UFhFZb\"],[45736698,null,false,null,null,null,\"nhgo9c\"],[45810643,null,false,null,null,null,\"qH1kDb\"],[45686666,null,true,null,null,null,\"dZ9mjb\"],[45644641,null,null,3.14159,null,null,\"FX1FL\"],[45747887,null,false,null,null,null,\"BvfvHb\"],[45694562,null,false,null,null,null,\"D50qNc\"],[45777794,null,false,null,null,null,\"E1AmL\"],[45773680,null,false,null,null,null,\"rgqUee\"]],\"CAMSjgEdjAbTlPY3A5KlDQO0BAPMLgNIA4jTBqdBA+yOBQPPgQ4DsQ0D64UFA3oDUQMp+QYDZAPj1QUDpAYD/wYD0AYD5K4VAyUD3NlMo+YFA7QGA0oDgQUD2ecnA8ff/QMDx7sWA5b/JoanHQOVugQDj7EDq7hHA5bIDgOn9wUDyOQCA6L5CIaiJgOMghAD5gYD\"]]]","eNnkwf":"1722992466","gnD3ee":"%.@.null,null,null,\"https://drive-qa.corp.google.com/viewer/main\"]","nQyAE":{},"pzJKf":1,"qymVe":"lHuM4d2UuSmhUZ_KpkZxfzk8D_Q","w2btAe":"%.@.\"04799816263973835557\",\"04799816263973835557\",\"0\",true,null,null,true,false]"};</script><style id="WTVccd" nonce="_1p_YcB4K8mvOH_ESbzk2g">.Iq2xPb .kaAt2 .KKHx9e {background-color: #3C4043;}.Iq2xPb .kaAt2.KKjvXb .KKHx9e {background-color: rgb(87, 70, 227);}.Iq2xPb .kaAt2.RDPZE .KKHx9e {background-color: #70757a;}.wGQFbe.N2RpBe:not(.RDPZE), .wGQFbe.B6Vhqe:not(.RDPZE) {border-color: rgb(87, 70, 227);}.wGQFbe.i9xfbb > .MbhUzd, .wGQFbe.u3bW4e > .MbhUzd {background-color: rgba(87, 70, 227, 0.15);}.wGQFbe.wGQFbe:hover > .MbhUzd {background-color: rgba(87, 70, 227, 0.04);}.wGQFbe.wGQFbe:focus > .MbhUzd {background-color: rgba(87, 70, 227, 0.15);}.BJHAP.N2RpBe.RDPZE, .BJHAP.B6Vhqe.RDPZE {border-color: rgb(87, 70, 227);}.BJHAP.RDPZE:not(.N2RpBe):not(.B6Vhqe) {border-color: #9AA0A6;}.da8bmd .BJHAP.N2RpBe.RDPZE, .da8bmd .BJHAP.B6Vhqe.RDPZE, .wMUAvd .BJHAP.RDPZE {border-color: #5F6368;}.aomaEc.N2RpBe:not(.RDPZE) .Id5V1, .aomaEc .nQOrEb {border-color: rgb(87, 70, 227);}.aomaEc .N2RpBe:not(.RDPZE) .Id5V1 {border-color: rgb(87, 70, 227);}.aomaEc.i9xfbb > .MbhUzd, .aomaEc.u3bW4e > .MbhUzd {background-color: rgba(87, 70, 227, 0.15);}.aomaEc :not(.RDPZE):hover > .MbhUzd {background-color: rgba(87, 70, 227, 0.04);}.aomaEc :not(.RDPZE):focus > .MbhUzd {background-color: rgba(87, 70, 227, 0.15);}.ECvBRb .N2RpBe.RDPZE .Id5V1, .ECvBRb .N2RpBe.RDPZE .nQOrEb {border-color: rgb(87, 70, 227);}.ECvBRb .RDPZE:not(.N2RpBe) .Id5V1 {border-color: #9AA0A6;}.da8bmd .ECvBRb .N2RpBe.RDPZE .Id5V1, .da8bmd .ECvBRb .N2RpBe.RDPZE .nQOrEb, .wMUAvd .ECvBRb .RDPZE .Id5V1 {border-color: #5F6368;}.aYSFK > :first-child {border-left: transparent solid 5px;}.aYSFK.N2RpBe {background-color: rgb(238, 237, 252);}.aYSFK.N2RpBe > :first-child {border-left-color: rgb(87, 70, 227);}.mhLiyf.KKjvXb.RDPZE {color: #5F6368;}.TFBnVe .MbhUzd {background-image: radial-gradient( circle farthest-side,rgba(87, 70, 227, 0.15),rgba(87, 70, 227, 0.15) 80%,rgba(87, 70, 227, 0) 100% );}.TFBnVe {color: rgb(87, 70, 227);}.TFBnVe.RDPZE {color: rgba(87, 70, 227, 0.5);}.TFBnVe.u3bW4e {outline: 2px solid rgb(87, 70, 227); outline-offset: 2px;}.TFBnVe.u3bW4e .CeoRYc {background-color: rgba(87, 70, 227, 0.15);}.RvMhje .MbhUzd {background-image: radial-gradient( circle farthest-side,rgba(255, 255, 255, .3),rgba(255, 255, 255, .3) 80%,rgba(255, 255, 255, 0) 100% );}.RvMhje {background-color: rgb(87, 70, 227); color: rgba(255, 255, 255, 1);}.RvMhje.RDPZE {color: rgba(255, 255, 255, 1); opacity: .54;}.RvMhje a .snByac {color: rgba(255, 255, 255, 1);}.RvMhje.u3bW4e {outline: 2px solid rgb(87, 70, 227); outline-offset: 2px;}.RvMhje.u3bW4e .CeoRYc {background-color: rgba(255, 255, 255, .3);}.QvWxOd {background-color: rgb(87, 70, 227);}.QvWxOd.u3bW4e {outline: 2px solid rgb(87, 70, 227); outline-offset: 2px;}.QvWxOd .TpQm9d, .QvWxOd .TpQm9d:hover, .QvWxOd .TpQm9d:link, .QvWxOd .TpQm9d:visited {background-color: rgb(87, 70, 227);}.QvWxOd:hover {box-shadow: 0px 2px 1px -1px rgba(87, 70, 227, 0.2), 0px 1px 1px 0px rgba(87, 70, 227, 0.14), 0px 1px 3px 0px rgba(87, 70, 227, 0.12);}.QvWxOd.RDPZE:hover {box-shadow: none;}.QvWxOd.qs41qe.qs41qe {box-shadow: 0px 3px 5px -1px rgba(87, 70, 227, 0.2), 0px 6px 10px 0px rgba(87, 70, 227, 0.14), 0px 1px 18px 0px rgba(87, 70, 227, 0.12);}.ctEux {color: rgb(87, 70, 227);}.ctEux.u3bW4e {outline: 2px solid rgb(87, 70, 227); outline-offset: 2px;}.ctEux .CeoRYc {background-color: rgb(87, 70, 227);}.ctEux .MbhUzd {background-image: radial-gradient( circle farthest-side,rgba(87, 70, 227, 0.15),rgba(87, 70, 227, 0.15) 80%,rgba(87, 70, 227, 0) 100% );}.pRZhW {color: rgb(104, 109, 115);}.XTgocd {border-color: rgb(104, 109, 115);}.p6JeP .kaAt2 {color: rgb(104, 109, 115);}.p6JeP .kaAt2.KKjvXb {background-color: rgba(87, 70, 227, 0.15); color: rgb(87, 70, 227);}.p6JeP .kaAt2.KKjvXb.RDPZE {background-color: rgba(189, 189, 189, .38);; color: #9AA0A6;}.p6JeP .k6JGBb {fill: rgb(104, 109, 115);}.p6JeP .KKjvXb .k6JGBb {fill: rgb(87, 70, 227);}.p6JeP .RDPZE .k6JGBb, .p6JeP .KKjvXb.RDPZE.k6JGBb {fill: #9AA0A6;}.mfr8Qd .SKMfG {fill: rgb(87, 70, 227);}.Iq2xPb .s7bIcf {background-color: rgb(87, 70, 227);}@media screen and (forced-colors: active) {.Iq2xPb .s7bIcf {outline: 1px solid Highlight;}}.Iq2xPb .kaAt2 {color: #3C4043;}.Iq2xPb .kaAt2.KKjvXb {color: rgb(87, 70, 227);}.Iq2xPb .kaAt2.RDPZE {color: #70757a; cursor: default;}.Iq2xPb .RDPZE + .s7bIcf {background-color: #70757a;}.Iq2xPb .MbhUzd {background-image: radial-gradient( circle farthest-side,rgba(87, 70, 227, 0.15),rgba(87, 70, 227, 0.15) 80%,rgba(87, 70, 227, 0) 100% );}.Iq2xPb .PXrNBb {fill: #5F6368;}.Iq2xPb .KKjvXb .PXrNBb {fill: rgb(87, 70, 227);}.Iq2xPb RDPZE .PXrNBb, .Iq2xPb .KKjvXb.RDPZE.PXrNBb {fill: #9AA0A6;}.LKH0ge .cXrdqd {background-color: rgb(87, 70, 227);}.Yp9mw:focus-within {border-bottom-color: rgb(87, 70, 227);}.LKH0ge .Is7Fhb {color: rgb(87, 70, 227);}.LKH0ge.u3bW4e .snByac {color: rgb(87, 70, 227);}.LKH0ge.IYewr .oJeWuf.mIZh1c, .LKH0ge.IYewr .oJeWuf.cXrdqd {background-color: rgb(221, 218, 249);}.whsOnd:not([disabled]):focus ~ .AxOyFc.snByac, .u3bW4e > .oJeWuf >.fqp6hd.snByac, .u3bW4e.dm7YTc > .oJeWuf >.fqp6hd.snByac {color: rgb(87, 70, 227);}.HNgK9.RDPZE .zHQkBf[disabled] {color: rgba(0, 0, 0, .87);}.FlwNw.u3bW4e .oJeWuf:before {border-color: rgb(87, 70, 227);}.FlwNw .zHQkBf:not([disabled]):focus ~ .snByac {color: rgb(87, 70, 227);}.yqQS1 .cXrdqd {background-color: rgb(87, 70, 227);}.yqQS1 .Is7Fhb {color: rgb(87, 70, 227);}.yqQS1.IYewr .oJeWuf.mIZh1c, .yqQS1.IYewr .oJeWuf.cXrdqd {background-color: rgb(221, 218, 249);}.toT2u.RDPZE .zHQkBf[disabled] {color: rgba(0, 0, 0, .87);}.Y4klN.N2RpBe .espmsb {border-color: rgb(87, 70, 227); color: rgba(255, 255, 255, 1);}.Y4klN.N2RpBe > .MLPG7 {border-color: rgb(221, 218, 249);}.Y4klN.i9xfbb > .MbhUzd, .Y4klN.u3bW4e > .MbhUzd {background-color: rgba(87, 70, 227, 0.15);}.bvhls {border-color: rgb(87, 70, 227);}.bvhls.N2RpBe {background-color: rgb(87, 70, 227); color: rgba(255, 255, 255, 1);}.TCbR9b {display: none;}.IszBRc-Guievd-HLvlvd .TCbR9b {display: block;}.IszBRc-Guievd-HLvlvd .doKKyd {display: none;}.KHCwJ {display: none;}.naGohb {background-color: rgb(87, 70, 227);color: rgba(255, 255, 255, 1);}.b4wEpf {background-color: rgb(87, 70, 227);}.barETd .X1clqd, .barETd .qRUolc, .barETd .pPQgvf {color: #202124; fill: #5F6368;}.IszBRc-Guievd-JaPV2b .barETd {border: 2px solid white;}.IszBRc-Guievd-HLvlvd .barETd {border: 2px solid black;}.IOncP .HvOprf {color: rgb(87, 70, 227);}.IOncP .HvOprf.u3bW4e {outline: 2px solid rgb(87, 70, 227); outline-offset: 2px;}.IOncP .HvOprf .CeoRYc {background-color: rgb(87, 70, 227);}.IOncP .HvOprf .MbhUzd {background-image: radial-gradient( circle farthest-side,rgba(87, 70, 227, 0.15),rgba(87, 70, 227, 0.15) 80%,rgba(87, 70, 227, 0) 100% );}.IOncP .HvOprf:hover {border-color: rgb(221, 218, 249);}.IOncP .HvOprf.RDPZE {color: rgba(87, 70, 227, 0.5);}.IOncP .HvOprf.RDPZE:hover {box-shadow: none;}.IOncP .HvOprf.qs41qe.qs41qe {box-shadow: 0px 2px 1px -1px rgba(87, 70, 227, 0.2), 0px 1px 1px 0px rgba(87, 70, 227, 0.14), 0px 1px 3px 0px rgba(87, 70, 227, 0.12);}.Pi3FHb {outline-style: solid; outline-color: rgb(87, 70, 227);}.da8bmd .RDPZE .Pi3FHb {outline-color: rgba(0, 0, 0, .54);}.LygNqb.RDPZE .snByac {color: #70757a;}.LygNqb.RDPZE.N2RpBe .snByac, .LygNqb.RDPZE.B6Vhqe .snByac {color: #202124;}.wMUAvd .LygNqb.RDPZE .snByac, .wMUAvd .LygNqb.RDPZE.N2RpBe .snByac, .wMUAvd .LygNqb.RDPZE.B6Vhqe .snByac {color: black;}.LygNqb.RDPZE .PgfOZ svg {fill: rgba(0, 0, 0, .54);}.LygNqb.RDPZE.N2RpBe .PgfOZ, .LygNqb.RDPZE.B6Vhqe .PgfOZ svg {fill: rgba(0, 0, 0, .87);}.mqhyCf {color: rgb(87, 70, 227);}.AQRMP {color: rgb(87, 70, 227);}.RVEQke {background-color: rgb(87, 70, 227); color: rgba(255, 255, 255, 1);}.D8bnZd {background-color: rgb(238, 237, 252);}.xEUmYd {background-color: rgba(87, 70, 227, 0.05);}.cz0Zle {background-color: rgb(166, 133, 255);}.ENxQTe:hover {background-color: rgba(87, 70, 227, 0.1);}.YiC7Id {fill: rgb(87, 70, 227); stroke: rgb(87, 70, 227);}.PgdKqf {fill: rgb(87, 70, 227);}.LAANW {border-color: rgb(87, 70, 227);}.DGR5Ac {fill: rgba(255, 255, 255, 1)}.graCKc {background-color: rgb(104, 109, 115);}.G4EHhc, .G4EHhc .Wic03c .tL9Q4c, .G4EHhc .I9OJHe .KRoqRc, .G4EHhc .PyrB4, .G4EHhc .snByac {font-family: 'docs-Roboto', Helvetica, Arial, sans-serif;}.Jqhdy {font-family: 'docs-Roboto', Helvetica, Arial, sans-serif;}.BuWscd {font-family: 'docs-Parisienne', cursive;}.ULZu6e {font-family: 'docs-Patrick Hand', fantasy;}.kZBGEb {font-family: 'docs-Cormorant Garamond', serif;}.LgNcQe, .LgNcQe .Wic03c .tL9Q4c, .LgNcQe .I9OJHe .KRoqRc, .LgNcQe .PyrB4, .LgNcQe .snByac {font-size: 24pt;font-family: 'docs-Roboto', Helvetica, Arial, sans-serif;letter-spacing: 0;}.M7eMe, .M7eMe .Wic03c .tL9Q4c, .M7eMe .I9OJHe .KRoqRc, .M7eMe .PyrB4, .M7eMe .snByac{font-size: 12pt;font-family: 'docs-Roboto', Helvetica, Arial, sans-serif;letter-spacing: 0;}.OIC90c, .OIC90c.RjsPE, .OIC90c .zHQkBf, .OIC90c .Wic03c .tL9Q4c, .OIC90c .I9OJHe .KRoqRc, .OIC90c .PyrB4, .OIC90c .snByac {font-size: 11pt; line-height: 15pt;letter-spacing: 0;}.OIC90c .oJeWuf .zHQkBf {}.sId0Ce, .sId0Ce a {color: rgba(0, 0, 0, 0.66);}</style><link rel="icon" sizes="192x192" href="//ssl.gstatic.com/docs/forms/device_home/android_192.png"><link rel="apple-touch-icon" sizes="120x120" href="//ssl.gstatic.com/docs/forms/device_home/ios_120.png"><link rel="apple-touch-icon" sizes="152x152" href="//ssl.gstatic.com/docs/forms/device_home/ios_152.png"><meta name="msapplication-TileImage" content="//ssl.gstatic.com/docs/forms/device_home/windows_144.png"><meta name="msapplication-TileColor" content="#673ab7"><script nonce="BXaZIM21kmEz1TTsK9PRlQ">_docs_flag_initialData={"docs-ails":"docs_warm","docs-fwds":"docs_nf","docs-crs":"docs_crs_tsol","docs-fl":1,"docs-hpr":0,"docs-orl":9,"docs-rls":1,"docs-shdn":0,"docs-eivt":false,"info_params":{"token":"S2H81J8BAAA.2XagEvFYDFkaWpnIMlXeBA.LLWqQ7s9UaE2yhyWUP7kNA","ouid":"114810002058710688470"},"docs-esaf":false,"docs-ecdh":true,"docs-pcdpoc":false,"docs-pcdpos":true,"docs-eabpcmewm":false,"docs-eabtzmewm":false,"docs-eabtsmewm":false,"docs-eaicewm":false,"docs-easdewm":true,"docs-eassewm":false,"docs-eaebewm":false,"docs-eafcmcewm":false,"docs-eavssewm":false,"docs-ebodewm":false,"docs-ebrfdewm":true,"docs-ebasdewm":false,"docs-ebpsewm":false,"docs-ecnbewm":false,"docs-ecedcdewm":true,"docs-ecsewm":false,"docs-ectdcdewm":true,"docs-ectscdewm":true,"docs-eclrbewm":false,"docs-eclsecewm":false,"docs-ecssewm":false,"docs-ectwm":true,"docs-ecgdewm":false,"docs-edsewm":false,"docs-edsnmewm":false,"docs-ewcfer":true,"docs-edwb":false,"docs-edibewm":false,"docs-edeibewm":false,"docs-eegdewm":false,"docs-ewubum":true,"docs-ewmcsm":true,"docs-ewmsm":false,"docs-eewsm":true,"docs-efcmewm":false,"docs-efrdwm":true,"docs-efasewm":false,"docs-eftsewm":false,"docs-eftbewm":false,"docs-efosewm":false,"docs-egasewm":false,"docs-eipdewm":false,"docs-elicewm":false,"docs-elmwbewm":false,"docs-elfcbewm":false,"docs-empwm":true,"docs-emdewm":true,"docs-emadwm":true,"docs-ensdewm":true,"docs-eodcewm":false,"docs-epsdewm":true,"docs-epftewm":false,"docs-eppbewm":false,"docs-epticewm":false,"docs-epacewm":false,"docs-epbtewm":false,"docs-eppvdewm":false,"docs-eppmewm":false,"docs-epecewm":false,"docs-eptsewm":false,"docs-eqsewm":false,"docs-erssewm":false,"docs-ertdewm":true,"docs-erhswm":true,"docs-esacewm":false,"docs-essr":true,"docs-essewm":false,"docs-esswm":false,"docs-esspm":false,"docs-esndewm":true,"docs-esdwm":false,"docs-esosewm":false,"docs-esssewm":false,"docs-esctwm":false,"docs-ettpdewm":true,"docs-ettrsewm":false,"docs-etsewm":false,"docs-etibewm":false,"docs-etesewm":false,"docs-etcsewm":false,"docs-ethsewm":false,"docs-eupubw":true,"docs-evgcewm":false,"docs-evosewm":false,"docs-evpsewm":false,"docs-evssewm":false,"docs-ewbm":true,"docs-eicwdubl":true,"docs-hmg":true,"uls":"{\"langs\":[\"en\"],\"itcs\":[],\"selected\":\"\",\"activated\":false}","docs-idu":false,"customer_type":"education","scotty_upload_url":"/upload/forms/resumable","docs-edcfmb":false,"docs-erlbwfa":false,"docs-net-udmi":500000,"docs-net-udpt":40000,"docs-net-udur":"/upload/blob/forms","docs-net-usud":false,"docs-enable_feedback_svg":false,"docs-fpid":713678,"docs-fbid":"ExternalUserData","docs-obsImUrl":"https://ssl.gstatic.com/docs/common/netcheck.gif","docs-text-ewf":true,"docs-wfsl":["ca","da","de","en","es","fi","fr","it","nl","no","pt","sv"],"docs-efrsde":true,"docs-efpsf":true,"docs-edfn":true,"docs-efpsp":true,"docs-dli":false,"docs-liap":"/naLogImpressions","ilcm":{"eui":"ADFN-csDa6TfWWfOT9PSZ95KhDVbembGymRKKX1ygj38Ja1xb_o2Apt1SLwHLLSp5o9yWA0vOmaY","je":1,"sstu":1785981137616649,"si":"CIr-oZryipYDFdNLbwQd9O0tnQ","gsc":null,"ei":[5700103,5701877,5703839,5704621,5705891,5706270,5707461,5707565,5711226,5713195,5713554,5715055,5726679,5726695,5727241,5727257,5734616,5734632,5737784,5737800,5740798,5740814,5754982,5754998,5764330,5764346,5764470,5764486,5774256,5774272,5790673,5790689,48966134,48966142,49398701,49398709,49471983,49471991,49498853,49498861,49623461,49623469,49644035,49644043,49769457,49769465,49822981,49822989,49823204,49823212,49833442,49833450,49842815,49842823,49924606,49924614,49926233,49926241,49943179,49943187,49979678,49979686,50223621,50223629,50266122,50266130,50273508,50273516,50297176,50297184,50439260,50439268,50513194,50513202,50561323,50561331,50562844,50562852,50587022,50587030,70971216,70971224,71079898,71079906,71085321,71085329,71121048,71121056,71376166,71376174,71387272,71387280,71387789,71387797,71466027,71466035,71515789,71515797,71528617,71528625,71530063,71530071,71544874,71544882,71546345,71546353,71652641,71657900,71657908,71659973,71659981,71679440,71679448,71689960,71689968,71710000,71710008,71727137,71727153,71825463,71825471,71854840,71854848,71897867,71897875,71899300,71960380,71960388,94327631,94327639,94353268,94353276,94368276,94368292,94386811,94386819,94434397,94434405,94624825,94624833,94629817,94629825,94661682,94661690,94692458,94692466,94785149,94785157,94813423,94813431,94818995,94819000,94819399,94819404,94891454,94891470,94904249,94904257,94919112,94919120,94940214,95087106,95087114,95112693,95112701,95129666,95182369,95182374,95213932,95213940,95314762,95314770,99251903,99251911,99368832,99368840,99400302,99400310,99402431,99402439,99440873,99440881,99457727,99457735,101448281,101448286,101492791,101492799,101519240,101519248,101561269,101561277,101561712,101561720,101562326,101562334,101586440,101586456,101631251,101631259,101686977,101686985,101887514,101887522,101889103,101889111,101891730,101891746,101917105,101917113,101922619,101922627,101922800,101922808,101933651,101933659,102030662,102030670,102059481,102059489,102070616,102070624,102070810,102070818,102146667,102146675,102161547,102161555,102198422,102198430,102236066,102236074,102244629,102244637,102258765,102258781,102280788,102280796,102343480,102343488,102402799,102402807,102469700,102469708,102517204,102517209,102548641,102548649,102618768,102618776,102673415,102685423,102685428,102685864,102685869,102691193,102691198,102691278,102691283,102718435,102727428,102727433,102761461,102761466,102762395,102762403,102784808,102784816,102787543,102807750,102807758,102864243,102864251,102867955,102867963,102883718,102883726,102902868,102902876,102903640,102903648,102909763,102909768,102911103,102911108,102925919,102925927,102926683,102926691,102932487,102932495,102944241,102944246,102944372,102944377,102944464,102944469,102944516,102944771,102944776,102944876,102944881,102956605,102956613,102972689,102972697,102986987,102986995,102988246,102988251,102988415,102988420,102988669,102988674,102988890,102988895,103011439,103011447,103066322,103066338,103074675,103074691,103124896,103124912,103144628,103144636,103162984,103162992,103176050,103176058,103281962,103281967,103285786,103285794,103286464,103286472,103288326,103288334,103289155,103289160,103289195,103289200,103296094,103296102,103326327,103326335,103339876,103339884,103343910,103343918,104522784,104522800,104530124,104538364,104574019,104574027,104575345,104575350,104575530,104575535,104575613,104575618,104575881,104575886,104615635,104615643,104627936,104627942,104699464,104699472,104713957,104713973,104761671,104761679,104794563,104794571,104907871,104907879,104976657,104976665,104983229,104983237,105070800,105070816,105082017,105082025,105083668,105083676,105085109,105085117,105087808,105087816,105112557,105112562,105125437,105125445,105140345,105140353,105180974,105180982,105255638,105283767,105283775,105292936,105292944,105345084,105345089,105346185,105346193,105360438,105360446,105372003,105372011,105373984,105373992,105393691,105393699,105439351,105439359,115511347,115511352,115525394,115525402,115601029,115601037,115626358,115626366,115626539,115626547,115669318,115669326,115722298,115722314,115737286,115737294,115748334,115748340,115774379,115774385,115779881,115779889,115780378,115780386,115797625,115797630,115822385,115822393,115849188,115849193,115854888,115854896,115893420,115893428,115899197,115909881,115909889,115916250,115916255,115986507,115986513,116059265,116059273,116062690,116062698,116068778,116068786,116076925,116076931,116090650,116090666,116091118,116176769,116176777,116213889,116221494,116221502,116250645,116250653,116276381,116276389,116353680,116372497,116372505,116377870,116377875,116416054,116416062,116418047,116418055,116479751,116480001,116502867,116508642,116508647,116514183,116514189,116524154,116538596,116538604,116567607,116567612,116609531,116609539,116678925,116678931,116697553,116697559,116699389,116699397,116731449,116731455,116731463,116731469,116731477,116731483,116731491,116731497,116731505,116731511,116731519,116731525,116757024,116771270,116771276,116780719,116780725,116783457,116783462,116783762,116783767,116833180,116833185,116840746,116840751,116847573,116847578,116866196,116866201,116880764,116880769,116882876,116882883,116913208,116918027,116934386,116934391,116980547,116980555,116988304,116988312,116999246,116999254,117027676,117033060,117033066,117033745,117037188,117037196,117039162,117039170,117075206,117075212,117091085,117124349,117124356,117143742,117143747,117148946,117148952,117212081,117212087,117224119,117224127,117248280,117251847,117269017,117269025,117283963,117283968,117286690,117286698,117290250,117290258,117297869,117297874,117309354,117309362,117310230,117310238,117316514,117316522,117332319,117334158,117357715,117357721,117367088,117367094,117381179,117381187,117436640,117436648,117457938,117457946,117474409,117474414,117478339,117478344,117480147,117480152,117504303,117504311,117547701,117547709,117586569,117586574,117605990,117605995,117623323,117623329,117643180,117643188,117643608,117643616,117673585,117723591,117723597,117728293,117728301,117740479,117740485,117742758,117742766,117879413,117879418,117895960,117895968,117930842,117930847,117969893,117969898,117983432,117983437,118029473,118029479,118043880,118043885,118048893,118048900,118048944,118048950,118057575,118057581,118086120,118086126,118094570,118094575,118119539,118119545,118127484,118127489,118144499,118144504,118155211,118155217,118171097,118174626,118174631,118181389,118181395,118199432,118199438,118210158,118210163,118213586,118213591,118219809,118219815,118227602,118227608,118237015,118237023,118240038,118240044,118242443,118242448,118255415,118255420,118256780,118256787,118269303,118269308,118272113,118272118,118281184,118281192,118292262,118292268,118292276,118292282,118311122,118311127,118367501,118367507,118368017,118368025,118368756,118368764,118382150,118382157,118410833,118410856,118417304,118417312,118419982,118419988,118427971,118427977,118444432,118444438,118485663,118485669,118485677,118485683,118497529,118497535,118500904,118500909,118500918,118500923,118515459,118515465,118517998,118518004,118521972,118521977,118531234,118541625,118541633,118544270,118544277,118556017,118556025,118566888,118566900,118574431,118574437,118576741,118579779,118579784,118596018,118596023,118599561,118599569,118600863,118602071,118602079,118623871,118623879,118656213,118656218,118676321,118676329,118683648,118683653,118716911,118716919,118728532,118728537,118735214,118735220,118753224,118753232,118758232,118758238,118781276,118781281,118786501,118786509,118792284,118792292,118795502,118795508,118803374,118803380,118824720,118824725,118870266,118871022,118891895,118891900,118896670,118896675,118910283,118910289,118938363,118938369,118959046,118959054,118960888,118960896,118965149,118965154,118984042,118984050,119001820,119001825,119012212,119012218,119022252,119022260,119058017,119058022,119062090,119062098,119071842,119071848,119076644,119076649,119077255,119077263,119109674,119109682,119168749,119170344,119170349,119178779,119185423,119185443,119185683,119185691,119186386,119186391,119189027,119189032,119190842,119190847,119206371,119206377,119207504,119207509,119235564,119235569,119237704,119237709,119239792,119244192,119261840,119261848,119287095,119287101,119290941,119290946,119292945,119292950,119293882,119293887,119296949,119296954,119335774,119335779,119350203,119350208,119372604,119372610,119374110,119374116,119389601,119389606,119400586,119400592,119407316,119407322,119412195,119419025,119419030,119419128,119419133,119431313,119446111,119446117,119454133,119454138,119454364,119454369,119455664,119455672,119464287,119464292,119474774,119474782,119497026,119497031,119502682,119502687,119538769,119538776,119544248,119544253,119544260,119544265,119548091,119548098,119566747,119566753,119575990,119576796,119576803,119587201,119587209,119588321,119588326,119597421,119597426,119597434,119597439,119599143,119602231,119605350,119605358,119611766,119616198,119621317,119621324,119621918,119641664,119641672,119680681,119680688,119700684,119700692,119703104,119703112,119722946,119722951,119727967,119727972,119761002,119761007,119764078,119764086,119769817,119769823,119772710,119772715,119788302,119788307,119794312,119794317,119805421,119805427,119805435,119805440,119809375,119809383,119809394,119809402,119809413,119809421,119809651,119809656,119820261,119826320,119826325,119840989,119842248,119842254,119844358,119844363,119844371,119844376,119856922,119856927,119872197,119872205,119891468,119891473,119919341,119919349,119930504,119930509,119932762,119932767,119937378,119937384,119939750,119939758,120008596,120008601,120008654,120008659,120025498,120025503,120049021,120049029,120074338,120074344,120091095,120091101,120098782,120098787,120103816,120103822,120104059,120104065,120118426,120118434,120122228,120122233,120122256,120122261,120128884,120128889,120172375,120172380,120176385,120176393,120178272,120178277,120190042,120190047,120200993,120200999,120207025,120207031,120221882,120221887,120230746,120230752,120239562,120239570,120251798,120251803],"crc":0,"cvi":[]},"docs-ccdil":true,"docs-eil":true,"docs-ecuach":false,"docs-cclt":2035,"docs-ecci":true,"docs-esi":false,"docs-cei":{"i":[95129666,119261848,99457735,94624833,119190847,119109682,116833185,120176393,103162992,102198430,119587209,119597439,105180982,120091101,118521977,105082025,104794571,119538776,101448286,102761466,102911108,117723597,117143747,105360446,119588326,102944881,105393699,49623469,119566753,118419988,118758238,119727972,101561277,5764346,118043885,103288334,101887522,119062098,115737294,116731497,94785157,118255420,105373992,117290258,120221887,119464292,95182374,50273516,119502687,101891746,102691283,103074691,115986513,116538604,117039170,104713973,102944246,5713554,115722314,119237709,105372011,117740485,102070818,104575618,116988312,116068786,118965154,119287101,116699397,118753232,101922808,118656218,120049029,102030670,101889111,103176058,118155217,117643616,103326335,118292268,117283968,102548649,119058022,115669326,71897875,118544277,50439268,117643188,118574437,103339884,102517209,119809656,118960896,118048950,119431313,5707565,119454369,102944469,102883726,50561331,116780725,102685869,115780386,117297874,119544265,105085117,118623879,71657908,115748340,116731455,71530071,99251911,94629825,118269308,118910289,118576741,104907879,116882883,118311127,5711226,118227608,118602079,101631259,119764086,102944776,119826325,118382157,116250653,119842254,102902876,5703839,50297184,116731525,119919349,50266130,119703112,119616198,71652641,102988674,116076931,120200999,116847578,102956613,118199438,119809383,119290946,119419030,119809402,117605995,117504311,118181395,103289200,119335779,102402807,101562334,119446117,119235569,104976665,116353680,105292944,49943187,118795508,117742766,119844376,50223629,116377875,115511352,120207031,5790689,104574027,49498861,115525402,117879418,116771276,118792292,5764486,105087816,119186391,117728301,94891470,117930847,115779889,119932767,118444438,119772715,118281192,120008659,94368292,49926241,120122233,102146675,115899197,118240044,115822393,119455672,119012218,102988895,118272118,119641672,118119545,119185691,118237023,118427977,119680688,49822989,116866201,117033066,94819000,5706270,115626547,71085329,117286698,119621918,119872205,119939758,119389606,118127489,118824725,94353276,120118434,120008601,105112562,102762403,94386819,49644043,5700103,117224127,71960388,118213591,117075212,119844363,118485683,117309362,116567612,118891900,103124912,105140353,119189032,116980555,119805427,117457946,118556025,71528625,116514189,117251847,5754998,119805440,102903648,118417312,118579784,118676329,119497031,102161555,119605358,49924614,50513202,118144504,116609539,118938369,117316522,119761007,118171097,5726695,117547709,102909768,120190047,119400592,116416062,115774385,118728537,118531234,116059273,49979686,94661690,101586456,71387797,117436648,118896675,116731511,120074344,49471991,116783767,99402439,103281967,116731469,101561720,104575350,115893428,115849193,119597426,99440881,105083676,115909889,102727433,116918027,117269025,102059489,116276389,102926691,118735220,101686985,104615643,119407322,104761679,118500923,118368025,119576803,120178277,117033745,117623329,118086126,49823212,101922627,5740814,117983437,103285794,120103822,116783462,104627942,116508647,103286472,70971224,116502867,49398709,117474414,119722951,119296954,71854848,117148952,102469708,119891473,105283775,116840751,105070816,103296102,117367094,102986995,95087114,48966142,105125445,94327639,101917113,103289160,118497535,71121056,102784816,104530124,103011447,5701877,95213940,102867963,103144636,118871022,116934391,71679448,102932495,104699472,99368840,5704621,120172380,71466035,119769823,120239570,101933659,71544882,50562852,115916255,71376174,119178779,116678931,5705891,118984050,119700692,118256787,117037196,119293887,116697559,102925927,104522800,120230752,119621324,118803380,50587030,105346193,118716919,116372505,117124356,102988251,115797630,71689968,71727153,49769465,117357721,117381187,119788307,103343918,99400310,117334158,119575990,102787543,117969898,119474782,119372610,102944377,49842823,118500909,120025503,94434405,119076649,115626366,102864251,119239792,119809421,104575535,120098787,119937384,94813431,118599569,116480001,105345089,102988420,118781281,118596023,117586574,118786509,101519248,119602231,118485669,119419133,94919120,118959054,118292282,118094575,117212087,115854896,104538364,118515465,94692466,119548098,118410856,5737800,115601037,118057581,116062698,119022260,118210163,101492799,118367507,102070624,118048900,118683653,71515797,102280796,119611766,102807758,102236074,5713195,102258781,5707461,116090666,117478344,116418055,71079906,71825471,116731483,119374116,103066338,71659981,116176777,120128889,118029479,116999254,49833450,105439359,117310238,102972697,5774272,118174631,117480152,71710008,117895968,119856927,119454138,116880769,119350208,104575886,94904257,119170349,119001825,119071848,5734632,119292950,118566900,120104065,71387280,118518004,118368764,119930509,104983237,119077263,5715055,119794317,119840989,120122261,102691198,118242448,102244637,71546353,119206377,116221502,95314770,119544253,118566888,5727257,119185443,120251803,102343488,118219815,95112701,102618776,102685428,94819404,119207509,119261840,99457727,94624825,119190842,119109674,116833180,120176385,103162984,102198422,119587201,119597434,105180974,120091095,118521972,105082017,104794563,119538769,101448281,102761461,102911103,117723591,117143742,105360438,119588321,102944876,105393691,49623461,119566747,118419982,118758232,119727967,101561269,5764330,118043880,103288326,101887514,119062090,115737286,116731491,94785149,118255415,105373984,117290250,120221882,119464287,95182369,50273508,119502682,101891730,102691278,103074675,115986507,116538596,117039162,104713957,102944241,115722298,119237704,105372003,117740479,102070810,104575613,116988304,116068778,118965149,119287095,116699389,118753224,101922800,118656213,120049021,102030662,101889103,103176050,118155211,117643608,103326327,118292262,117283963,102548641,119058017,115669318,71897867,118544270,50439260,117643180,118574431,103339876,102517204,119809651,118960888,118048944,119412195,119454364,102944464,102883718,50561323,116780719,102685864,115780378,117297869,119544260,105085109,118623871,71657900,115748334,116731449,71530063,99251903,94629817,118269303,118910283,117091085,104907871,116882876,118311122,118227602,118602071,101631251,119764078,102944771,119826320,118382150,116250645,119842248,102902868,50297176,116731519,119919341,50266122,119703104,116213889,102988669,116076925,120200993,116847573,102956605,118199432,119809375,119290941,119419025,119809394,117605990,117504303,118181389,103289195,119335774,102402799,101562326,119446111,119235564,104976657,102944516,105292936,49943179,118795502,117742758,119844371,50223621,116377870,115511347,120207025,5790673,104574019,49498853,115525394,117879413,116771270,118792284,5764470,105087808,119186386,117728293,94891454,117930842,115779881,119932762,118444432,119772710,118281184,120008654,94368276,49926233,120122228,102146667,105255638,118240038,115822385,119455664,119012212,102988890,118272113,119641664,118119539,119185683,118237015,118427971,119680681,49822981,116866196,117033060,94818995,115626539,71085321,117286690,119599143,119872197,119939750,119389601,118127484,118824720,94353268,120118426,120008596,105112557,102762395,94386811,49644035,117224119,71960380,118213586,117075206,119844358,118485677,117309354,116567607,118891895,103124896,105140345,119189027,116980547,119805421,117457938,118556017,71528617,116514183,117248280,5754982,119805435,102903640,118417304,118579779,118676321,119497026,102161547,119605350,49924606,50513194,118144499,116609531,118938363,117316514,119761002,94940214,5726679,117547701,102909763,120190042,119400586,116416054,115774379,118728532,116913208,116059265,49979678,94661682,101586440,71387789,117436640,118896670,116731505,120074338,49471983,116783762,99402431,103281962,116731463,101561712,104575345,115893420,115849188,119597421,99440873,105083668,115909881,102727428,116524154,117269017,102059481,116276381,102926683,118735214,101686977,104615635,119407316,104761671,118500918,118368017,119576796,120178272,117027676,117623323,118086120,49823204,101922619,5740798,117983432,103285786,120103816,116783457,104627936,116508642,103286464,70971216,116091118,49398701,117474409,119722946,119296949,71854840,117148946,102469700,119891468,105283767,116840746,105070800,103296094,117367088,102986987,95087106,48966134,105125437,94327631,101917105,103289155,118497529,71121048,102784808,102718435,103011439,95213932,102867955,103144628,118870266,116934386,71679440,102932487,104699464,99368832,120172375,71466027,119769817,120239562,101933651,71544874,50562844,115916250,71376166,119168749,116678925,118984042,119700684,118256780,117037188,119293882,116697553,102925919,104522784,120230746,119621317,118803374,50587022,105346185,118716911,116372497,117124349,102988246,115797625,71689960,71727137,49769457,117357715,117381179,119788302,103343910,99400302,117332319,119244192,102673415,117969893,119474774,119372604,102944372,49842815,118500904,120025498,94434397,119076644,115626358,102864243,118600863,119809413,104575530,120098782,119937378,94813423,118599561,116479751,105345084,102988415,118781276,118596018,117586569,118786501,101519240,117673585,118485663,119419128,94919112,118959046,118292276,118094570,117212081,115854888,71899300,118515459,94692458,119548091,118410833,5737784,115601029,118057575,116062690,119022252,118210158,101492791,118367501,102070616,118048893,118683648,71515789,102280788,116757024,102807750,102236066,102258765,116090650,117478339,116418047,71079898,71825463,116731477,119374110,103066322,71659973,116176769,120128884,118029473,116999246,49833442,105439351,117310230,102972689,5774256,118174626,117480147,71710000,117895960,119856922,119454133,116880764,119350203,104575881,94904249,119170344,119001820,119071842,5734616,119292945,118541625,120104059,71387272,118517998,118368756,119930504,104983229,119077255,119794312,119820261,120122256,102691193,118242443,102244629,71546345,119206371,116221494,95314762,119544248,118541633,5727241,119185423,120251798,102343480,118219809,95112693,102618768,102685423,94819399,119207504],"cf":{"enable_homescreen_priority_docs":[null,0],"enable_homescreen_priority_docs_promo":[null,0],"enable_homescreen_action_items_structured_query":[null,0]}},"docs-est":"CAMSFBUX9NL9N67auQayvgTkiQWnBh0H","docs-exfv":false,"docs-li":"713678","docs-trgthnt":"4MBkBg26q0mHq3jmV6o0QeKPRMpY","docs-etmhn":false,"docs-thnt":"","docs-hdet":["nMX17M8pQ0kLUkpsP190WPbQDRJQ","17hED8kG50kLUkpsP190TThQn3DA","BDNZR4PXx0kLUkpsP190SJtNPkYt","Etj5wJCQk0kLUkpsP190NwiL8UMa","xCLbbDUPA0kLUkpsP190XkGJiPUm","2NUkoZehW0kLUkpsP190UUNLiXW9","yuvYtd5590kLUkpsP190Qya5K4UR","ZH4rzt2uk0kLUkpsP190UDkF5Bkq","uQUQhn57A0kLUkpsP190WHoihP41","93w8zoRF70kLUkpsP190TxXbtSeV","fAPatjr1X0kLUkpsP190SaRjNRjw","T4vgqqjK70kLUkpsP190ScPehgAW","JyFR2tYWZ0kLUkpsP190Rn3HzkxT","ufXj7vmeJ0kLUkpsP190QURhvJn2","KFks7UeZ30kLUkpsP190UUMR6cvh","LcTa6EjeC0kLUkpsP190RKgvW5qi","s3UFcjGjt0kLUkpsP190Z45ftWRr","o99ewBQXy0kLUkpsP190Nq2qr6tf","PHVyy5uSS0kLUkpsP190SUsYo8gQ","yZn21akid0iSFTCbiEB0WPiGEST3","h2TtqzmQF0kLUkpsP190YPJiQt7p","MZi9vb5UC0kLUkpsP190ReUhvVjy","dSR6SPjB80kLUkpsP190Y3xHa9qA","Bz6B7VmLu0kLUkpsP190W3FeobP7","AiLoubzsd0kLUkpsP190XtYNPgYT","2J3DVQoVh0kLUkpsP190R5wShSrC","MLmbZasLS0kLUkpsP190YHf6Zjsf","S1T4ezMsZ0kLUkpsP190U6GfQUxi","LwAAPYPwi0kLUkpsP190TR4aaiFR","zZpS7TtwA0kLUkpsP190SJfhmHn8","LqadmuFLc0kLUkpsP190VqMgRe9G","PyRpJWvnF0kLUkpsP190X6czxBQU","oiu5UhKXt0kLUkpsP190XWFatA4U","m3m67mpQU0kLUkpsP190RpzeM6tt","WKyXQmUiJ0kLUkpsP190WtAghmdt","cb1fdvu6p0kLUkpsP190U5AywQpZ","43PL8e9wN0kLUkpsP190PfUhabvT","N5u4VeWhx0iSFTCbiEB0VUTNdX6g","XM16tjwrD0iSFTCbiEB0NfzvTeuU","ybYTJk1eD0iSFTCbiEB0QV4rkzSF","TgXar1TSG0iSFTCbiEB0SsXMaKuP","JYfGDkExa0iSFTCbiEB0TTQnEDtH","2i9JBUZ3w0iSFTCbiEB0RytbUoNq","pgvTVXNKa0iSFTCbiEB0ShqmBTMR","NsVnd81bW0iSFTCbiEB0RhcXEK9M","rTQirATnb0iSFTCbiEB0W5cPcA7D","wNyww2Syr0iSFTCbiEB0Pzsbemba","DVdpfbqGj0iSFTCbiEB0RP4dMdFg","WKN3dsuG20iSFTCbiEB0NtEYhMK7","S5iPRteXX0iSFTCbiEB0YkMazE6h","6hmou1AcB0iSFTCbiEB0R9rZWXdz","wvo4NcLUj0iSFTCbiEB0Tt7mcVxE","HWuSeN2AB0iSFTCbiEB0PoBwHT2F","rMLvYG5Cd0iSFTCbiEB0VMB6o5sk","EnxXFzAMR0iSFTCbiEB0NxWnFJEU","4SFrbzo420iSFTCbiEB0W7wu3rzt","Nr7mDWodK0iSFTCbiEB0Ruynrudk","pSnfxxWWp0iSFTCbiEB0RaiP6PBc","rTcCMw3BM0mHq3jmV6o0RHeAExRK","HUYzfGVRa0mHq3jmV6o0Uxe2caXK","1XYMmM1Cu0mHq3jmV6o0Z3pEi8xm","xHhMJiXiV0mHq3jmV6o0WB8WinyM","xwSFpxEiU0mHq3jmV6o0PcnvcKmd","4MBkBg26q0mHq3jmV6o0QeKPRMpY","y5g8iW2T80mHq3jmV6o0Nr8SAj4C","W9YRKy3Lb0iSFTCbiEB0Xfs1EfPr","Ed3nhrN8D0iSFTCbiEB0RN4bJ53y","zxDKY7PC10iSFTCbiEB0UDYPJwDZ","bhEyDmbwi0mHq3jmV6o0TngCF1v2","6rKYZ6uHA0mHq3jmV6o0TeDZjgB8","71Deousgx0mHq3jmV6o0WXBQiyzi","sVEZbUAa70mHq3jmV6o0TNq1M7FF","8ZPFZT5nG0mHq3jmV6o0PJ5yoVh4","LDuvzP2Bd0mHq3jmV6o0TwNPVpW8","P55v8p4Lk0mHq3jmV6o0VjggjHMV","QqnZoz9ko0mHq3jmV6o0QskzBcHn","Nq8mdjdGg0mHq3jmV6o0WShxQA39","iQNA6mEJy0mHq3jmV6o0Q2iGT9fW","sNcbk2hJ80mHq3jmV6o0VbqaovQb","6nr31z9Wv0mERqSGkGf0VhuvAXWC","RLHeYNm410mERqSGkGf0Y817EUFK","vmx68XtfJ0mERqSGkGf0RCUBfsQr","687J7yD1q0mERqSGkGf0RVmMYHo1","qwhWQy8Zi0mERqSGkGf0W2tdypUF","wF8Sk241e0mERqSGkGf0YNtN6gpV","ijUhdx2QN0mERqSGkGf0TSD26iBJ","3iBLaMnuG0mERqSGkGf0VdY8XuLS","cFR77YEGo0iSFTCbiEB0PcMDWjX2","evUYuNCS80mERqSGkGf0Psi8j3Dw","soWncRV7C0mERqSGkGf0PZheXrWA","TvjoiCaar0mERqSGkGf0S9qS5adj","txL54xWLC0mERqSGkGf0XoEGTvCu","MP3EsW1un0mERqSGkGf0QDkfTxat","N1q4Y3fqz0mERqSGkGf0W1oPWWoc","pnKWhXiJi0mERqSGkGf0RDJejrBm","uLoGBsxEp0mERqSGkGf0Umz4HBC5","zu73Bdvrn0mERqSGkGf0P7FS5ZnG","KwaNot15n0mERqSGkGf0UnBhGVoK","ffZmMGtYT0suK1NZr2K0QUxSzEMN","NagbcZWyB0suK1NZr2K0SJmfmJ3n","KMcLKvubv0suK1NZr2K0PLMUJ7zr","a13ejFS5i0suK1NZr2K0WzewY5tP","pZ1hXv7ve0suK1NZr2K0U5qoNhyU","pwLDucJZU0ezFcgqx310NgtmYpbV","TCKDVQ6J0Bn3gbW4AcZC0PQKypCa","Z7vabQzZ0Bn3gbW4AcZC0TfvmSab","UUNcLtsso0mERqSGkGf0Uwg2tMZa","fznmScpy0Bn3gbW4AcZC0Vie7eK1","wYCZkqoz10fBWirfAym0S1sADKbJ"],"docs-hunds":false,"docs-hae":"PROD","docs-ehn":true,"docs-eagat":false,"docs-api-keys":{"scone_api_key":"AIzaSyAP66yw8QnPe4CgbQmLJ1potsrppninXxs","workspace_ui_api_key":"AIzaSyAGu65yOsDqNkYFlUT96M1i6BsyH4Nl6-s","espresso_api_key":"AIzaSyAYQn7Fb7-MOxi3BLfWHblG97kylSec-ak","cloud_search_api_key":"AIzaSyDsoqkkkgjVPCg2ep86sdbNNMrkGsCMJo0","link_previews_safe_search_api_key":"AIzaSyB8IGC2vlg9cTitrdc4HVUcbkr4SC1Z29s"},"docs-effeoima":true,"docs-etut":true,"docs-emec":true,"docs-ertis":false,"docs-estistl":false,"docs-etsonc":false,"docs-euvtistl":false,"docs-effnp":false,"docs-effnpf":false,"docs-dcheg":false,"docs-pdhp":true,"buildLabel":"apps-forms.freebird_20260728.06_p0","docs-show_debug_info":false,"docs-edmlf":false,"docs-eemc":false,"docs-emleow":true,"docs-emlewpc":true,"docs-rmls":"DEFAULT_NO_RETRY","ondlburl":"//docs.google.com","docs-ecupbsc":true,"drive_url":"https://drive.google.com/u/0?usp\u003dforms_web","app_url":"https://docs.google.com/forms/u/0/?authuser\u003d0\u0026usp\u003dforms_web","drive_base_url":"https://drive.google.com","docs-umbitfdi":false,"docs-gsmd":"https://workspace.google.com","docs-icdmt":[],"docs-mip":25000000,"docs-mif":1000,"docs-msid":32767,"docs-ecshi":false,"docs-ecswi":false,"docs-emid":false,"docs-ewchd":false,"docs-mib":52428800,"docs-mid":2048,"docs-rid":1024,"docs-dgit":false,"docs-evit":false,"docs-ejsp":false,"docs-jspmpdm":30000.0,"docs-jspsim":8.0,"docs-jsptp":0.01,"docs-elbllqpm":true,"docs-phe":"https://contacts.google.com","docs-eafgl":false,"docos-dges":false,"docs-eethc":false,"docs-enees":false,"docs-eph":true,"docs-ispdr":true,"docs-istdr":false,"docs-escmv":false,"docs-sup":"/forms/u/0","docs-seu":"https://docs.google.com/forms/d/e/1FAIpQLSePSiwHtTPQmqoAksYWbcy_01M8Ub7hevvwC-XROvzq_A0YsQ/edit","docs-ucd":"","docs-sccfo":"PROD","docs-uptc":["ofip","rr","lsrp","noreplica","tam","ntd","ths","app_install_xsrf_token","ouid","authEmail","authuser","ca","sh","fromCopy","ct","cs","cct","cwc","sle","dl","hi","hi_ext","usp","urp","utm_source","utm_medium","utm_campaign","utm_term","utm_content","docs_gsdv","gs_dl","srd"],"docs-doddn":"","docs-uddn":"Sirindhorn International Institute of Technology, Thammasat University","docs-ugn":"Supakorn","docs-epg":false,"docs-epq":true,"docs-upap":"/prefs","docs-shmtbsl":-1,"docs-euit":false,"docs-tst":"","docs-eia":true,"docs-ilbefsd":false,"docs-lbefm":0,"docs-elsic":false,"docs-thtea":false,"docs-tdc":"[{\"id\":\"0:Basics\",\"name\":\"Basics\",\"deletedIds\":[]},{\"id\":\"0:Brochures\",\"name\":\"Brochures \\u0026 newsletters\",\"deletedIds\":[]},{\"id\":\"0:Calendars\",\"name\":\"Calendars \\u0026 schedules\",\"deletedIds\":[]},{\"id\":\"0:Business\",\"name\":\"Contracts, onboarding, and other forms\",\"deletedIds\":[]},{\"id\":\"0:Finance\",\"name\":\"Finance \\u0026 accounting\",\"deletedIds\":[]},{\"id\":\"0:Letters\",\"name\":\"Letters\",\"deletedIds\":[]},{\"id\":\"0:Reports\",\"name\":\"Reports \\u0026 proposals\",\"deletedIds\":[]},{\"id\":\"0:Planners\",\"name\":\"Trackers\",\"deletedIds\":[]},{\"id\":\"Unparented\",\"name\":\"Uncategorized\",\"deletedIds\":[\"0:NoTemplateCategories\"]}]","docs-ttt":0,"docs-tcdtc":"[]","docs-ividtg":false,"docs-icfdt":false,"docs-hetsdiaow":true,"docs-edt":true,"docs-tafl":true,"docs-puvtftv":true,"docs-erdiiv":false,"docs-eemt":["image"],"docs-eqspdc":true,"docs-roosb":false,"docs-esehbc":true,"docs-sqcuu":true,"docs-uaid":true,"docs-uaqs":0,"docs-eclpa":false,"docs-edp2":false,"docs-iidpm":false,"docs-mefu":true,"docs-iicp":false,"docs-edvm":false,"docs-elpg":false,"docs-elpgpm":false,"docs-acap":["docs.security.access_capabilities",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0],"docs-ci":"","docs-eccfs":false,"docs-eep":false,"docs-ndt":"Untitled form","docs-plwtu":"//ssl.gstatic.com/docs/common/product/forms_app_icon1.png","docs-prn":"Google Forms","docs-sprn":"","docs-een":false,"docs-as":"","docs-mdck":"AIzaSyD8OLHtLvDxnjZsBoVq4-_cuwUbKEMa70s","docs-eccbs":false,"docs-mmpt":9000,"docs-erd":false,"docs-uootuns":false,"docs-amawso":false,"docs-ofmpp":false,"docs-anlpfdo":false,"docs-ems":"SHARE_SUBMENU","docs-glu":"","docs-wsu":"","docs-wsup":"","docs-fecgd":false,"docs-pid":"114810002058710688470","docs-ricocpb":false,"docs-dec":false,"docs-ecgd":false,"docs-dsps":true,"docs-ececs":false,"docs-ezdi":false,"docs-ezduole":false,"server_time_ms":1785981137635,"gaia_session_id":"0","docs-usp":"forms_web","docs-isb":true,"docs-agdc":false,"docs-anddc":false,"docs-adndldc":false,"docs-clibs":1,"docs-cirts":20000,"docs-cide":true,"docs-cn":"Sirindhorn International Institute of Technology, Thammasat University","docs-dprfo":false,"docs-duesf":false,"docs-dom":false,"docs-eacr":false,"docs-eacw":false,"docs-ecer":false,"docs-ecir":true,"docs-ecssl":false,"docs-ecssi":false,"docs-ecped":true,"docs-copy-ecci":false,"docs-edpq":false,"docs-edamc":false,"docs-edomic":false,"docs-edbsms":false,"docs-eddm":false,"docos-edii":false,"docs-edspi":false,"docs-edvpim":false,"docs-edvpim2":false,"docs-fwd":false,"docs-eibs":true,"docs-elds":false,"docs-emp":false,"docs-emcf":true,"docs-emmu":false,"docs-enpks":false,"docs-eoems":false,"docs-epmi":false,"docs-epat":false,"docs-ermcf":false,"docs-erpep":true,"docs-ersd":false,"docs-esml":true,"docs-ete":false,"docs-ewlip":true,"docs-echiut":"default","docs-lfuls":false,"docs-oesf":false,"docs-oursf":false,"docs-plimif":20.0,"docs-srmdue":0.0,"docs-srmoe":0.01,"docs-srmour":0.05,"docs-srmxue":0.01,"docs-ssi":false,"docs-uoci":"023lry54","docs-wesf":true,"docs-xduesf":false,"docs-ddm":false,"docs-emmda":false,"docs-edncm":false,"docs-edailm":false,"docs-eafst":false,"docs-ectrt":false,"docs-elpta":false,"docs-eltafi":false,"docs-eltafip2":false,"docs-epdcl":false,"docs-eptfafi":false,"docs-eptfi":false,"docs-eptbc":false,"docs-eptfcl":false,"docs-ersrn":true,"docs-rolibilc":false,"docs-esrl":true,"docs-esqppo":true,"docs-etpi":true,"docs-ipmmp":true,"docs-emmaffr":false,"docs-emmafi":false,"docs-enpi2":true,"docs-gth":"Go to Forms home screen","docs-ndsom":[],"docs-dm":"application/vnd.google-apps.freebird","docs-sdslm":[],"docs-sdsom":[],"opmbs":52428800,"opmpd":5000,"docs-pe":1,"ophi":"trix_forms","opst":"","opuci":"","docs-ehipo":false,"docs-drk":[],"docs-erkpp":false,"docs-erkfsu":true,"maestro_domain":"https://script.google.com","docs-isctp":false,"docs-emae":false,"mae-cwssw":false,"mae-aoeba":true,"mae-esme":false,"mae-seitd":true,"docs-emgsmw":true,"docs-mae-xt":"Ad9Ebw7t0J26JFPH7umOmzZpnsZU:1785981137635","docs-cpv":0,"docs-urouih":false,"docs-hue":"student@example.com","docs-ect":true,"docs-alu":"https://myaccount.google.com/language","docs-cpks":["[\"1add24076589b4a7\",\"AAVFbsGvPsErlriifHKWPSnFvmJgrcd4PBqJDbxeizjmw90SIBN/KMBl5lwq8A76ucj59DGZ1cYu\"]","[\"c861e7a03a6261db\",\"AK2fzyAmWzQ52PkhlMW7YOhnhTMJPTtgkYtx+hG6dBt6ncgHmy3Uwqc6Wg2pkYeXBO1JdsMwEkNh\"]"],"docs-dfhsi":true,"docs-dvhsi":true,"docs-hasid":"Forms","docs-hdod":"docs.google.com","docs-eehs":false,"docs-ehinbd":true,"docs-dphi":false,"docs-hdck":"AIzaSyCs1AYpdoC8cECMZEWg89u054wu3GiI0lI","docs-hucs":true,"docs-hufcm":false,"docs-cbrs":50,"docs-cpari":"https://people-pa.clients6.google.com/","docs-cfru":"https://lh3.google.com","docs-ctak":"AIzaSyAWGrfCCr7albM3lmCc937gx4uIphbpeKQ","docs-cgav":0,"docs-cci":2,"docs-gap":"/drive/v2internal","docs-eaotx":true,"docs-ecrerfmo":false,"jobset":"prod","docs-cdie":false,"docs-copy-hp":true,"docs-ercter":false,"docs-icfc":false,"docs-nad":"sites.google.com","docs-ccwt":80,"docs-ut":1,"docs-sol":true,"docs-dvs":1,"docs-dac":1,"docs-ilbrc":false,"docs-dlpe":false,"docs-erre":false,"docs-cvmo":-1,"docs-ac":"[\"docs_analytics_capabilities\"]","docs-eqam":false,"docs-euaool":false,"docs-esap":true,"docs-efib":false,"docs-se":false,"docs-eaaw":false,"docs-eecs":false,"docs-efsm":false,"docs-ehlbap":true,"docs-emtr":false,"docs-eocc":false,"docs-uwzh":false,"docs-dafjera":false,"docs-daflia":false,"docs-dafgfma":false,"docs-era":true,"docs-aist":"","docs-fhnfst":"sVEZbUAa70mHq3jmV6o0TNq1M7FF","docs-fhnlst":"","docs-fhnprt":"bhEyDmbwi0mHq3jmV6o0TngCF1v2","docs-fhnqt":"8ZPFZT5nG0mHq3jmV6o0PJ5yoVh4","docs-fhnqgst":"sNcbk2hJ80mHq3jmV6o0VbqaovQb","docs-fhnrqtt":"P55v8p4Lk0mHq3jmV6o0VjggjHMV","docs-fhnst":"Nq8mdjdGg0mHq3jmV6o0WShxQA39","docs-fhntrts":"QqnZoz9ko0mHq3jmV6o0QskzBcHn","docs-egn":"-1","docs-eulsdo":false,"docs-eopd":"espresso-pa.googleapis.com","docs-gaopd":"appsgenaiserver-pa.clients6.google.com","docs-idephr":false,"docs-eoool":false,"docs-idep":true,"docs-ilc":false,"docs-ilecoi":false,"docs-ilecoo":false,"docs-ioefuesf":false,"docs-ics":false,"docs-dcarft":false,"docs-egafedo":false,"docs-egafkd":false,"docs-dsfid":false,"docs-ebubgi":false,"docs-ebiagaqae":false,"docs-ecscv2":true,"docs-ed2vpm":false,"docs-ed2viv0":false,"docs-ed2viv1":false,"docs-edtg":false,"docs-eeai":false,"docs-eslc":false,"docs-egnup":false,"docs-egpf":false,"docs-egaat":false,"docs-egqe":true,"docs-eisel":true,"docs-esptc":false,"docs-eupfsi":false,"docs-erfn":false,"docs-esa":false,"docs-es":false,"docs-esgap":false,"docs-esn":false,"docs-evdmt":false,"docs-evdr":false,"docs-evst":false,"docs-mdfcp":"","docs-mdcfsi":"","docs-mdcfst":"","docs-mnafsg":5,"docs-shti":"","docs-rpod":"appsgrowthpromo-pa.clients6.google.com","docs-dht":"","docs-dgec":false,"docs-edcb":false,"docs-deo":false,"docs-depvv2":true,"docs-efrm":true,"docs-epbih":false,"docs-eradihf":true,"docs-dslb":false,"docs-hpgsdepsv":false,"docs-sgsd":false,"docs-egsdsr":false,"docs-ecpda":true,"docs-egsdepsv":false,"docs-egsdic":false,"docs-egsdihfp":false,"docs-gsdv":0,"docs-gsdvofdh":false,"docs-dt":"freebird","zpgp":"blanhdxlknafbtjkmcffomuxhbaijwxyhdlrxtwbeteydmkrxeildyaufkerjwwgewrakfwehylmuzkxbedkmvu","ughumwr_zduoqhc_prtlxqzlkg":0.3,"cbqzg_rkas_iqhptqhtit":0.5,"cbqzg_pmcs_zajo_prtlxqzlkg":0.3,"hasa_pgzvss_cfv_fsxkpqnfmgu_nfykwk_mpf":"https://docs.google.com/picker?protocol\u003dgadgets\u0026parent\u003dhttps://docs.google.com/relay.html\u0026hostId\u003dspreadsheet-form-linker\u0026title\u003dChoose+a+spreadsheet+where+we\u0027ll+copy+responses+to+your+form\u0026hl\u003den\u0026authuser\u003d0\u0026newDriveView\u003dtrue\u0026origin\u003dhttps://docs.google.com\u0026nav\u003d((%22spreadsheets%22,null,%7B%22mimeTypes%22:%22application/vnd.google-apps.spreadsheet,application/vnd.google-apps.ritz%22%7D))","yqc_nslf_rjgniq_hur":"https://docs.google.com/picker?protocol\u003dgadgets\u0026parent\u003dhttps://docs.google.com/relay.html\u0026hostId\u003dtrix_forms-fonts\u0026title\u003dFonts\u0026hl\u003den\u0026authuser\u003d0\u0026newDriveView\u003dtrue\u0026origin\u003dhttps://docs.google.com\u0026navHidden\u003dtrue\u0026multiselectEnabled\u003dtrue\u0026selectButtonLabel\u003dOK\u0026nav\u003d((%22fonts%22))","fdjjm_sbrfbjg_cebugmt_ggvm":"https://support.google.com/a/answer/1726914","ke_gpepqo_exkpo_srxs":false,"hasaa-gddy":"6LcJMyUUAAAAABOakew3hdiQ0dU8a21s-POW69KQ","hasaa-cen":false,"hasaa-crfttjhykne":false,"hasaa-bee":"Untitled survey","hasaa-czfa":true,"hasaa-cebrn":false,"hasaa-mebsd":false,"hasaa-qmi":"gndmhdcefbhlchkhipcnnbkcmicncehk","hasaa-cjg":false,"hasaa-cda":false,"hasaa-crgd":false,"hasaa-crs":false,"hasaa-crnij":false,"hasaa-cfb":false,"hasaa-cylq":false,"hasaa-cmpa":true,"hasaa-cdbhd":false,"hasaa-eqf":"https://accounts.google.com/","hasaa-cyq":true,"hasaa-cpqfoywr":true,"hasaa-stoh":false,"hasaa-cbc":true,"hasaa-ccdj2":false,"hasaa-ccdj3":false,"hasaa-cqatgwu":true,"hasaa-ccqig":false,"hasaa-cbbg":false,"hasaa-crd":false,"hasaa-crntt":false,"hasaa-ctxq":false,"hasaa-qrhbf":false,"hasaa-cfcg":false,"hasaa-boqhxm":true,"hasaa-coefjy":false,"hasaa-pow":10000,"hasaa-pxzzt":50000,"hasaa-pewku":40000,"hasaa-qewku":80000,"hasaa-ohwku":8000,"hasaa-pxzgt":100000,"hasaa-pxzgdj":10000,"hasaa-c3aq":true,"hasaa-czgf":true,"hasaa-cs4g":false,"hasaa-c3aa":false,"hasaa-ccga":false,"hasaa-cscvpk":false,"hasaa-cacddkf":false,"hasaa-cngse":false,"hasaa-codijvtz":true,"hasaa-cforcr":false,"docs-ecubs":true,"hasaa-crczpru":true,"hasaa-cencg":true,"hasaa-cmt":false,"hasaa-cee":true,"hasaa-cun":false,"hasaa-ccr":false,"hasaa-ccrpu":false,"hasaa-cqdqs":false,"hasaa-cbcrbin":true,"hasaa-nddw":false,"hasaa-cttcn":true,"hasaa-c3a-suv":true,"hasaa-cotz":true,"hasaa-cuwmf":true,"hasaa-crncp":false,"hasaa-cdcqti":true,"googlesystem_blogspot_banlevel":"http://goo.gl/vqaya","docs-bcbt":"Forms home","docs-bc-css":"forms","docs-spdy":false,"xdbcfAllowHostNamePrefix":true,"xdbcfAllowXpc":true,"docs-dbctc":false,"docs-ebctcio":true,"docs-iror":false,"docs-pse":"PROD","docs-nrfd":false,"docs-nrfdfr":false,"docs-sdb":false,"docs-lucpf":true,"docs-hbiwud":false,"docs-iwu":{"initialWorkspaceUdp":true},"docs-efypr":true,"docs-eyprp":true,"docs-cp-tp":6,"docs-cr-tp":5,"docs-fe-re":2,"docs-l1lc":5,"docs-l1lm":"BKK","docs-l2lc":2,"docs-l2lm":"CBF","docs-l2t":0,"docs-lsd":1,"docs-tfh":"","docs-crp":"/forms/u/0/d/e/1FAIpQLSePSiwHtTPQmqoAksYWbcy_01M8Ub7hevvwC-XROvzq_A0YsQ/closedform","docs-ifr":false,"docs-tintd":false,"docs-tdcp":0,"docs-tdvc":true,"docs-dhnap":"docs.google.com","docs-ds":"https","docs-ipuv":true,"docs-po":"https://docs.google.com","docs-to":"https://docs.google.com","opdu":true,"opru":"https://docs.google.com/relay.html","opsmu":"https://docs.google.com/picker","opbu":"https://docs.google.com/picker","enable_maestro":true,"docs-mhea":false,"docs-caru":"https://clients6.google.com","docs-cbau":"https://drive.google.com","docs-cdru":"https://drivefrontend-pa.clients6.google.com","docs-cwc":"","enable_omnibox":true,"docs-dcr":false,"docs-eytpgcv":1};</script><meta property="og:title" content="FastForm F1"><meta property="og:type" content="article"><meta property="og:site_name" content="Google Docs"><meta property="og:url" content="https://docs.google.com/forms/d/e/1FAIpQLSePSiwHtTPQmqoAksYWbcy_01M8Ub7hevvwC-XROvzq_A0YsQ/viewform?usp=embed_facebook"><meta property="og:image" content="https://lh6.googleusercontent.com/05LJ3Pqeb3oMNZByfPNCXileix-ikdBzyodFQV-lvh3iFkRf6zOtsDlhhAg9lc-J7AaPfqWJPNm2X2o=w1200-h630-p"><meta property="og:image:width" content="200"><meta property="og:image:height" content="200"><meta property="og:ttl" content="604800"></head><body dir="ltr" itemscope itemtype="http://schema.org/CreativeWork/FormObject" class="D8bnZd " data-is-prepopulate-mode="false" jscontroller="OkF2xb" jsaction="rcuQ6b:npT2md; click:KjsqPd;oSngvd:KWFGld;n6dfDc:GrC6Ef;oDrQPd:l9NwTb;dkdJAd:CMTGD;"><meta itemprop="name" content="FastForm F1"><meta itemprop="faviconUrl" content="https://ssl.gstatic.com/docs/spreadsheets/forms/forms_icon_2026_v2.ico"><meta itemprop="url" content="https://docs.google.com/forms/d/e/1FAIpQLSePSiwHtTPQmqoAksYWbcy_01M8Ub7hevvwC-XROvzq_A0YsQ/viewform?usp=embed_googleplus"><meta itemprop="embedURL" content="https://docs.google.com/forms/d/e/1FAIpQLSePSiwHtTPQmqoAksYWbcy_01M8Ub7hevvwC-XROvzq_A0YsQ/viewform?embedded=true&amp;usp=embed_googleplus"><meta itemprop="thumbnailUrl" content="https://ssl.gstatic.com/docs/forms/social/social-forms-big-2.png"><meta itemprop="image" content="https://ssl.gstatic.com/docs/forms/social/social-forms-big-2.png"><meta itemprop="imageUrl" content="https://ssl.gstatic.com/docs/forms/social/social-forms-big-2.png"><div class="Uc2NEf"><div class="vnFTpb teQAzf ErmvL KHCwJ"></div><div class="teQAzf"><div class="RH5hzf RLS9Fe"><div class="idZHHb"><div class="UOnQub RVEQke"></div><div class="pdLVYe LgNcQe" role="heading" aria-level="1">FastForm F1</div><div class="UatU5d">The form FastForm F1 is no longer accepting responses.<br>Try contacting the owner of the form if you think this is a mistake.</div><div class="c2gzEf"></div></div></div><div><div class="v1CNvb sId0Ce">This form was created outside of your domain. - <a jsname="FqYDPb" jscontroller="KFVhZe" jsaction="click:jwOTSd;" role="button" tabindex="0" data-user-email-address="student@example.com" data-user-display-name="Supakorn Prayongyam">Contact form owner</a> - <a href="https://policies.google.com/terms" target="_blank">Terms of Service</a> - <a href="https://policies.google.com/privacy" target="_blank">Privacy Policy</a><p>Does this form look suspicious? <a href="https://docs.google.com/forms/u/0/d/e/1FAIpQLSePSiwHtTPQmqoAksYWbcy_01M8Ub7hevvwC-XROvzq_A0YsQ/abuse" target="_blank">Report</a></p></div><div class="I3zNcc yF4pU"><a dir="auto" href="//www.google.com/forms/about/?utm_source=product&utm_medium=forms_logo&utm_campaign=forms"><img src="https://www.gstatic.com/images/branding/googlelogo/svg/googlelogo_dark_clr_74x24px.svg" alt="Google" height="24px" width="74px"/>&nbsp;<span class="sUXvCd">Forms</span></a></div></div></div></div><div jscontroller="rK97wb" jsaction="rcuQ6b:HYsj2"></div><script id="base-js" src="https://www.gstatic.com/_/freebird/_/js/k=freebird.v.en.9o6maJPFea0.O/am=ECACHA/d=1/rs=AMjVe6gXI1CS2lLWWGNZhysoi0acccGcWw/m=viewer_base" nonce="BXaZIM21kmEz1TTsK9PRlQ"></script></body></html> No newline at end of file
Comment on lines +3 to +5
**Date:** 2026-08-05
**Status:** Approved design, not yet implemented

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants